:root {
  --site-zoom: 0.9;
  --ink: #111827;
  --muted: #5f6c7b;
  --line: #d8caa8;
  --surface: #ffffff;
  --soft: #f7f3ea;
  --brand: #0b766d;
  --brand-dark: #074f4b;
  --brand-soft: #e8f7f4;
  --accent: #d4a83f;
  --accent-dark: #9b6a12;
  --gold-soft: #fff6d9;
  --charcoal: #101416;
  --navy: #101828;
  --navy-soft: #1d2939;
  --navy-tint: #26364d;
  --shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.1);
  --container: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  zoom: var(--site-zoom);
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, #fbf8f1 0%, #eef7f6 38%, #f7f3ea 100%);
  line-height: 1.5;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: auto;}
  background:
    radial-gradient(circle at 14% 12%, rgba(212, 168, 63, 0.2), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(11, 118, 109, 0.18), transparent 30%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 48%, transparent 54%);
  background-size: auto, auto, 220% 220%;
  animation: ambientSweep 14s var(--ease-out) infinite alternate;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 45px;
  padding: 10px max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 202, 168, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  animation: slideDown 640ms var(--ease-spring) both;
}

.brand,
.main-nav,
.hero-actions,
.contact-band {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  font-size: 1.16rem;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--brand-dark);
  border-radius: 8px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 100px;
  height:100px;
  object-fit: contain;
  border: 1px solid rgba(212, 168, 63, 0.45);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 28px rgba(155, 106, 18, 0.16);
  transition: transform 440ms ease, box-shadow 660ms ease;
}

.brand:hover .brand-logo {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 0 18px 32px rgba(155, 106, 18, 0.22);
}

.main-nav {
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav a {
  padding: 9px 10px;
  border-radius: 8px;
  position: relative;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.main-nav a:hover {
  color: var(--ink);
  background: var(--gold-soft);
}

.main-nav a[aria-current="page"] {
  color: var(--charcoal);
  font-weight: 800;
  background: linear-gradient(180deg, #fff8df 0%, #f4df9a 100%);
  box-shadow: inset 0 0 0 1px rgba(155, 106, 18, 0.18);
}

.header-action,
.primary-button,
.secondary-button,
.shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.header-action,
.primary-button {
  color: white;
  background: linear-gradient(180deg, #111827 0%, #050708 100%);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
}

.header-action:hover,
.primary-button:hover {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 16px 30px rgba(11, 118, 109, 0.28);
  transform: translateY(-1px);
}

.hero .secondary-button {
  color: var(--navy);
}

.secondary-button {
  border-color: rgba(212, 168, 63, 0.42);
  background: linear-gradient(180deg, #ffffff 0%, #fff8e7 100%);
}

.shop-button {
  color: #16120a;
  background: linear-gradient(180deg, #f7d779 0%, var(--accent) 100%);
  box-shadow: 0 12px 24px rgba(155, 106, 18, 0.18);
}

.shop-button:hover {
  background: #d98d07;
  box-shadow: 0 12px 24px rgba(242, 165, 22, 0.26);
  transform: translateY(-1px);
}

.secondary-button:hover {
  border-color: rgba(155, 106, 18, 0.35);
  box-shadow: 0 12px 24px rgba(155, 106, 18, 0.12);
  transform: translateY(-1px);
}

.secondary-button.on-dark {
  color: white;
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 88px max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2)) 58px;
  min-height: calc(100vh - 92px);
  background:
    linear-gradient(135deg, rgba(16, 20, 22, 0.96) 0%, rgba(7, 79, 75, 0.9) 54%, rgba(57, 39, 12, 0.9) 100%),
    url("assets/source/image-1.jpg") center / cover;
  color: white;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.55;
}

.hero::before {
  width: clamp(220px, 30vw, 420px);
  height: clamp(220px, 30vw, 420px);
  right: -120px;
  top: 10%;
  background: radial-gradient(circle, rgba(244, 223, 154, 0.34), transparent 68%);
  animation: floatGlow 9s ease-in-out infinite;
}

.hero::after {
  width: clamp(200px, 26vw, 360px);
  height: clamp(200px, 26vw, 360px);
  left: -110px;
  bottom: 6%;
  background: radial-gradient(circle, rgba(11, 118, 109, 0.4), transparent 70%);
  animation: floatGlow 11s ease-in-out infinite reverse;
}

.source-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(244, 223, 154, 0.45);
  border-radius: 8px;
  background: rgba(255, 248, 223, 0.14);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.16);
  backdrop-filter: blur(10px);
  font-weight: 800;
  animation: revealUp 700ms var(--ease-spring) 100ms both;
}

.source-hero-badge img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
}

.app-install {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid var(--line);
  background: #e8f8f5;
}

.app-install[hidden] {
  display: none;
}

.app-install strong,
.app-install span {
  display: block;
}

.app-install strong {
  color: var(--brand-dark);
}

.app-install span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-copy {
  max-width: 670px;
}

.hero-copy h1 {
  animation: revealUp 780ms var(--ease-spring) 180ms both;
}

.hero-copy > p {
  animation: revealUp 760ms var(--ease-spring) 260ms both;
}

.hero .eyebrow,
.hero-copy > p:not(.eyebrow) {
  color: #d9f7f3;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 8px;
  font-size: 1.2rem;
}

.hero-copy > p:not(.eyebrow),
.products-copy p,
.support-copy p,
.contact-band p,
.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: revealUp 760ms var(--ease-spring) 340ms both;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(244, 223, 154, 0.38);
  background: rgba(255, 248, 223, 0.12);
  padding: 10px;
  backdrop-filter: blur(10px);
  animation: revealScale 900ms var(--ease-spring) 260ms both, imageFloat 7s ease-in-out 1s infinite;
}

.hero-media img {
  width: 100%;
  height: min(68vh, 620px);
  min-height: 380px;
  object-fit: cover;
  border-radius: 6px;
  transform: scale(1.015);
  transition: transform 500ms var(--ease-out), filter 500ms var(--ease-out);
}

.hero-media:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.management-section,
.csr-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: clamp(62px, 8vw, 104px) max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
}

.management-section {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.management-copy p,
.csr-band p {
  color: var(--muted);
  font-size: 1.08rem;
}

.management-card {
  display: grid;
  gap: 8px;
  padding: 30px;
  border: 1px solid rgba(212, 168, 63, 0.35);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fff6d9 100%);
  box-shadow: var(--shadow-soft);
}

.management-card strong {
  color: var(--accent-dark);
  font-size: 1.4rem;
}

.management-card span {
  color: var(--muted);
}

.csr-band {
  color: white;
  background: linear-gradient(135deg, var(--charcoal) 0%, #173c39 58%, #4a3414 100%);
}

.csr-band .eyebrow {
  color: var(--accent);
}

.csr-band p {
  color: #d8dee9;
}

.csr-band img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid rgba(244, 223, 154, 0.32);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(244, 223, 154, 0.18);
  animation: revealUp 760ms var(--ease-spring) 430ms both;
}

.hero-kpis div {
  padding: 15px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-kpis strong,
.hero-kpis span {
  display: block;
}

.hero-kpis strong {
  font-size: 1.25rem;
}

.hero-kpis span {
  margin-top: 2px;
  color: #d9f7f3;
  font-size: 0.86rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
  border: 1px solid rgba(212, 168, 63, 0.38);
  background: rgba(212, 168, 63, 0.34);
  box-shadow: var(--shadow-soft);
}

.quick-index {
  padding: clamp(48px, 6vw, 82px) max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.quick-index-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.quick-index-heading h2 {
  max-width: 660px;
}

.quick-index-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.quick-index-card {
  display: grid;
  align-content: space-between;
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(216, 202, 168, 0.8);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9e9 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.quick-index-card:hover {
  border-color: rgba(212, 168, 63, 0.58);
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.quick-index-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--accent-dark);
  border: 1px solid rgba(212, 168, 63, 0.38);
  border-radius: 8px;
  background: var(--gold-soft);
  font-weight: 900;
}

.quick-index-card strong,
.quick-index-card small {
  display: block;
}

.quick-index-card strong {
  margin-top: 28px;
  font-size: 1.08rem;
  font-weight: 900;
}

.quick-index-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.primary-index-card {
  color: white;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--brand-dark) 62%, #5c4218 100%);
  border-color: rgba(244, 223, 154, 0.28);
}

.primary-index-card:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0f766e 62%, #6f501d 100%);
}

.primary-index-card span {
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.35);
  background: white;
}

.primary-index-card small {
  color: #d4fbf4;
}

.trust-strip div {
  min-height: 104px;
  padding: 24px;
  background: white;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  margin-top: 4px;
}

.section,
.products-band,
.contact-band {
  padding: clamp(62px, 8vw, 104px) max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.page-hero {
  padding: 76px max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
  background: linear-gradient(135deg, #ffffff 0%, #fff7df 48%, #e9f7f4 100%);
  border-bottom: 1px solid rgba(216, 202, 168, 0.7);
}

.page-hero h1 {
  max-width: 940px;
  font-size: 4.5rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
}

.plugins-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 86px max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
  color: white;
  background:
    linear-gradient(135deg, rgba(16, 20, 22, 0.96) 0%, rgba(7, 79, 75, 0.9) 54%, rgba(74, 52, 20, 0.92) 100%),
    url("assets/source/server.jpg") center / cover;
}

.plugins-hero h1 {
  max-width: 900px;
  font-size: clamp(3.1rem, 7vw, 5.4rem);
}

.plugins-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #d9f7f3;
  font-size: 1.15rem;
}

.plugins-hero .eyebrow {
  color: var(--accent);
}

.plugins-hero-panel {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(244, 223, 154, 0.32);
  border-radius: 8px;
  background: rgba(255, 248, 223, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.plugins-hero-panel strong {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.plugins-hero-panel span {
  padding: 10px 12px;
  border: 1px solid rgba(244, 223, 154, 0.26);
  border-radius: 8px;
  background: rgba(255, 248, 223, 0.1);
  font-weight: 800;
}

.plugin-showcase {
  padding: clamp(62px, 8vw, 104px) max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
  background: #fffdf8;
}

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

.plugin-feature-card {
  display: grid;
  align-content: start;
  min-height: 278px;
  padding: 26px;
  border: 1px solid rgba(216, 202, 168, 0.75);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.plugin-feature-card:hover {
  border-color: rgba(212, 168, 63, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.plugin-feature-card span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  color: var(--accent-dark);
  border: 1px solid rgba(212, 168, 63, 0.38);
  border-radius: 8px;
  background: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plugin-feature-card h3 {
  margin-top: 18px;
  font-size: 1.35rem;
}

.plugin-feature-card p {
  color: var(--muted);
}

.plugin-feature-card .primary-button,
.plugin-feature-card .text-link {
  margin-top: auto;
}

.plugin-process-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 34px;
  align-items: center;
  padding: clamp(62px, 8vw, 104px) max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
  color: white;
  background: linear-gradient(135deg, var(--charcoal) 0%, #173c39 58%, #4a3414 100%);
}

.plugin-process-band .eyebrow {
  color: var(--accent);
}

.plugin-process-band p {
  color: #c9d3e3;
  font-size: 1.08rem;
}

.plugin-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plugin-process-list li {
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(244, 223, 154, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 223, 0.09);
}

.plugin-process-list strong,
.plugin-process-list span {
  display: block;
}

.plugin-process-list strong {
  font-size: 1.15rem;
}

.plugin-process-list span {
  margin-top: 7px;
  color: #d8dee9;
}

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

.service-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(216, 202, 168, 0.75);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover,
.catalog-card:hover,
.plugin-card:hover,
.source-gallery-grid article:hover,
.job-card:hover {
  border-color: rgba(212, 168, 63, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--accent-dark);
  border: 1px solid rgba(212, 168, 63, 0.38);
  background: var(--gold-soft);
  border-radius: 8px;
  font-weight: 800;
}

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

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

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand-dark);
  font-weight: 800;
}

.text-link-light {
  color: white;
}

.catalog-card,
.plugin-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(216, 202, 168, 0.75);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.catalog-card h3,
.plugin-card h3 {
  margin-top: 0;
}

.catalog-card p,
.plugin-card p {
  color: var(--muted);
}

.catalog-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-dark);
  font-weight: 800;
}

.product-summary-section {
  background: #fffdf8;
}

.product-catalog-section {
  background: var(--surface);
}

.product-groups-section {
  background: linear-gradient(180deg, #fffdf8 0%, #eef7f6 100%);
}

.product-category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.product-category-strip span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px;
  color: var(--brand-dark);
  border: 1px solid rgba(11, 118, 109, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #e8f7f4 100%);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  text-align: center;
}

.product-image-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  padding: 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.product-card h3,
.product-card p,
.product-card a {
  margin-left: 22px;
  margin-right: 22px;
}

.product-card h3 {
  margin-top: 20px;
}

.product-card a {
  margin-bottom: 24px;
}

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

.product-group-card {
  display: grid;
  align-content: start;
  min-height: 292px;
  padding: 22px;
  border: 1px solid rgba(216, 202, 168, 0.75);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), border-color 240ms var(--ease-out), filter 240ms var(--ease-out);
}

.product-group-card:hover {
  border-color: rgba(212, 168, 63, 0.48);
  box-shadow: var(--shadow);
  filter: saturate(1.04);
  transform: translateY(-2px);
}

.product-group-card h3 {
  margin: 0 0 14px;
  font-size: 1.12rem;
}

.product-group-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-group-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand-dark);
  font-weight: 900;
}

.clients-section {
  background: var(--surface);
}

.source-gallery-section {
  background: #fffdf8;
}

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

.source-gallery-grid article {
  overflow: hidden;
  border: 1px solid rgba(216, 202, 168, 0.75);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.source-gallery-grid img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  background: var(--soft);
}

.source-gallery-grid article:nth-child(2) img,
.source-gallery-grid article:nth-child(3) img,
.source-gallery-grid article:nth-child(4) img {
  object-fit: contain;
  padding: 18px;
}

.source-gallery-grid h3,
.source-gallery-grid p {
  padding-left: 18px;
  padding-right: 18px;
}

.source-gallery-grid p {
  color: var(--muted);
  padding-bottom: 18px;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.client-logo-grid figure {
  display: grid;
  place-items: center;
  min-height: 156px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(216, 202, 168, 0.75);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.client-logo-grid figure:hover {
  border-color: rgba(212, 168, 63, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.client-logo-grid img {
  width: 100%;
  height: 118px;
  object-fit: contain;
}

.full-client-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.full-client-grid figure {
  min-height: 230px;
}

.full-client-grid img {
  height: 190px;
}

.plugin-card span {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--accent-dark);
  background: var(--gold-soft);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.active-plugin {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: var(--shadow);
}

.products-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, #183b38 55%, #4a3414 100%);
  color: white;
}

.products-band .eyebrow {
  color: var(--accent);
}

.products-copy p {
  color: #c9d3e3;
}

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

.product-list span {
  padding: 18px;
  border: 1px solid rgba(244, 223, 154, 0.28);
  border-radius: 8px;
  background: rgba(255, 248, 223, 0.1);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.products-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.support-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(216, 202, 168, 0.75);
  box-shadow: var(--shadow);
  background: white;
}

.support-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(216, 202, 168, 0.9);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(212, 168, 63, 0.2);
  border-color: var(--accent);
}

.team-hero {
  background: linear-gradient(180deg, #ffffff 0%, #fff6d9 100%);
}

.team-app {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.team-panel {
  padding: 28px;
  border: 1px solid rgba(216, 202, 168, 0.75);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  box-shadow: var(--shadow-soft);
}

.compact-heading {
  margin-bottom: 18px;
}

.compact-heading h2 {
  font-size: 2rem;
}

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

.full-field {
  grid-column: 1 / -1;
}

.team-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.location-status {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(212, 168, 63, 0.38);
  border-radius: 8px;
  background: var(--gold-soft);
}

.location-status strong,
.location-status span {
  display: block;
}

.location-status span,
.team-note,
.empty-state {
  color: var(--muted);
}

.team-note {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.job-history-section {
  padding-top: 0;
}

.history-actions {
  margin: -8px 0 18px;
}

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

.job-card {
  padding: 20px;
  border: 1px solid rgba(216, 202, 168, 0.75);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.job-card > div:first-child,
.job-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.job-card span,
.job-card p,
.job-meta {
  color: var(--muted);
}

.job-card h3 {
  margin-top: 12px;
}

.job-meta a {
  color: var(--brand-dark);
  font-weight: 800;
}

.contact-band {
  justify-content: space-between;
  gap: 22px;
  color: white;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--brand-dark) 58%, #5c4218 100%);
}

.contact-details,
.support-copy {
  padding: 30px;
  border: 1px solid rgba(216, 202, 168, 0.75);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  box-shadow: var(--shadow-soft);
}

.contact-details p {
  color: var(--muted);
}

.contact-details a {
  color: var(--brand-dark);
  font-weight: 700;
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.facebook-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: #fffdf8;
}

.facebook-embed {
  overflow: hidden;
  width: 100%;
  min-height: 420px;
  border: 1px solid rgba(216, 202, 168, 0.75);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.facebook-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.contact-band .eyebrow,
.contact-band p {
  color: #d4fbf4;
}

.support-button {
  margin-top: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 118px;
  height: 154px;
  color: transparent;
  background: url("assets/source/AGENT.png") center / contain no-repeat;
  border-radius: 8px;
  filter: drop-shadow(0 16px 28px rgba(15, 23, 42, 0.28));
  transition: transform 160ms ease, filter 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.34));
}

.whatsapp-float svg {
  display: none;
}

.social-bottom {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 31;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(216, 202, 168, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
}

.social-panel {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(12px);
  visibility: hidden;
  pointer-events: none;
  transition: max-width 260ms ease, opacity 180ms ease, transform 220ms ease, visibility 0ms linear 260ms;
}

.social-bottom.social-open .social-panel {
  max-width: 220px;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: max-width 300ms ease, opacity 180ms ease, transform 220ms ease, visibility 0ms;
}

.social-bottom a,
.social-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-toggle {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 10px 22px rgba(7, 79, 75, 0.28);
}

.social-bottom a:hover,
.social-toggle:hover {
  transform: translateY(-2px);
}

.social-bottom svg,
.social-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-facebook {
  background: #1877f2;
  box-shadow: 0 10px 22px rgba(24, 119, 242, 0.28);
}

.social-whatsapp {
  background: #25d366;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
}

.social-instagram {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 78%, #4f5bd5 100%);
  box-shadow: 0 10px 22px rgba(214, 41, 118, 0.28);
}

.social-call {
  background: #111827;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.24);
}

.whatsapp-bot {
  position: fixed;
  inset: auto 22px 96px auto;
  z-index: 40;
  display: none;
  width: min(300px, calc(100vw - 24px));
}

.whatsapp-bot-open .whatsapp-bot {
  display: block;
}

.whatsapp-bot-panel {
  overflow: hidden;
  border: 1px solid rgba(216, 202, 168, 0.86);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.whatsapp-bot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: white;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--brand-dark) 70%, #5c4218 100%);
}

.whatsapp-bot-header span,
.whatsapp-bot-header strong {
  display: block;
}

.whatsapp-bot-header span {
  color: #d4fbf4;
  font-size: 0.8rem;
  font-weight: 800;
}

.whatsapp-bot-header strong {
  font-size: 1rem;
}

.whatsapp-bot-header strong::after {
  content: "Call Agent";
  display: inline-flex;
  margin-left: 8px;
  padding: 3px 7px;
  color: var(--navy);
  border-radius: 999px;
  background: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  vertical-align: middle;
}

.whatsapp-bot-close {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.whatsapp-bot-body {
  display: grid;
  gap: 7px;
  padding: 10px;
}

.bot-message {
  padding: 8px 10px;
  color: var(--ink);
  border: 1px solid rgba(212, 168, 63, 0.32);
  border-radius: 8px;
  background: var(--gold-soft);
  font-weight: 700;
}

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

.bot-option {
  min-height: 34px;
  padding: 7px;
  color: var(--brand-dark);
  border: 1px solid rgba(11, 118, 109, 0.24);
  border-radius: 8px;
  background: var(--brand-soft);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.bot-option.active,
.bot-option:hover {
  color: white;
  background: var(--brand-dark);
}

.bot-form {
  display: grid;
  gap: 7px;
}

.bot-form label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-weight: 700;
}

.bot-form input,
.bot-form textarea,
.bot-form select {
  width: 100%;
  border: 1px solid rgba(216, 202, 168, 0.9);
  border-radius: 8px;
  padding: 8px 9px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.bot-form input:focus,
.bot-form textarea:focus,
.bot-form select:focus {
  outline: 3px solid rgba(212, 168, 63, 0.2);
  border-color: var(--accent);
}

.bot-submit {
  width: 100%;
}

.bot-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  align-items: stretch;
}

.bot-call-now {
  min-height: 36px;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 44px max(clamp(18px, 5vw, 64px), calc((100vw - var(--container)) / 2));
  color: #d8dee9;
  background: linear-gradient(135deg, #0c1012 0%, #122d2b 52%, #1a1207 100%);
}

.site-footer p {
  color: #aeb8c7;
  margin: 12px 0 0;
}

.site-footer h3 {
  margin-top: 0;
  color: white;
  font-size: 1rem;
}

.site-footer a {
  color: inherit;
}

.footer-brand {
  color: white;
}

.footer-link {
  display: inline-flex;
  margin-top: 10px;
  color: white;
  font-weight: 800;
}

.primary-button,
.secondary-button,
.shop-button,
.header-action,
.quick-index-card,
.service-card,
.catalog-card,
.plugin-card,
.product-card,
.management-card,
.contact-details,
.team-panel,
.job-card,
.client-logo-grid figure,
.full-client-grid figure {
  will-change: transform;
}

.quick-index-card,
.service-card,
.catalog-card,
.plugin-card,
.product-card,
.management-card,
.contact-details,
.team-panel,
.job-card,
.client-logo-grid figure,
.full-client-grid figure {
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    filter 240ms var(--ease-out);
}

.quick-index-card:hover,
.service-card:hover,
.catalog-card:hover,
.plugin-card:hover,
.product-card:hover,
.management-card:hover,
.contact-details:hover,
.team-panel:hover,
.job-card:hover,
.client-logo-grid figure:hover,
.full-client-grid figure:hover {
  filter: saturate(1.04);
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 700ms var(--ease-spring),
    transform 700ms var(--ease-spring);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .reveal-item.reveal-pop {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.motion-ready .reveal-item.reveal-pop.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealScale {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, 16px, 0) scale(1.08);
  }
}

@keyframes ambientSweep {
  from {
    background-position: center, center, 0% 50%;
  }
  to {
    background-position: center, center, 100% 50%;
  }
}

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

  .motion-ready .reveal-item,
  .motion-ready .reveal-item.reveal-pop {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .main-nav {
    display: grid;
    width: 100%;
    order: 4;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transform: translateY(-8px);
    transform-origin: top;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 260ms ease, opacity 180ms ease, transform 220ms ease, visibility 0ms linear 260ms;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .site-header.menu-open .main-nav {
    max-height: 440px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: max-height 300ms ease, opacity 180ms ease, transform 220ms ease, visibility 0ms;
  }

  .main-nav a {
    width: 100%;
    padding: 10px 12px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-action {
    order: 3;
  }

  .hero,
  .facebook-section,
  .plugins-hero,
  .products-band,
  .support-section,
  .team-app,
  .management-section,
  .csr-band,
  .plugin-feature-grid,
  .plugin-process-band,
  .site-footer,
  .wide-grid,
  .catalog-grid,
  .plugin-grid,
  .product-group-grid,
  .client-logo-grid,
  .source-gallery-grid,
  .full-client-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(135deg, rgba(16, 24, 40, 0.97) 0%, rgba(15, 95, 91, 0.94) 100%),
      url("assets/source/image-1.jpg") center / cover;
  }

  h1,
  .page-hero h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-media img,
  .support-image img {
    height: 360px;
    min-height: 0;
  }

  .trust-strip,
  .service-grid,
  .quick-index-grid,
  .product-image-grid,
  .product-category-strip,
  .hero-kpis,
  .job-history {
    grid-template-columns: 1fr;
  }

  .quick-index-heading {
    display: block;
  }

  .hero {
    padding-top: 56px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
  }

  .brand {
    max-width: calc(100% - 58px);
    font-size: 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .header-action {
    width: 100%;
    min-height: 36px;
    padding: 10px 12px;
  }

  .hero,
  .page-hero,
  .section,
  .quick-index,
  .products-band,
  .contact-band,
  .app-install {
    padding-left: 16px;
    padding-right: 16px;
  }

  .app-install {
    align-items: stretch;
    flex-direction: column;
  }

  .service-card,
  .catalog-card,
  .plugin-card,
  .contact-details,
  .support-copy,
  .team-panel,
  .job-card {
    padding: 20px;
  }

  .tech-form {
    grid-template-columns: 1fr;
  }

  .client-logo-grid figure {
    min-height: 150px;
  }

  .client-logo-grid img {
    height: 112px;
  }

  .full-client-grid figure {
    min-height: 210px;
  }

  .full-client-grid img {
    height: 170px;
  }

  .hero-actions,
  .contact-band,
  .contact-actions,
  .team-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .shop-button {
    width: 100%;
  }

  .product-list {
    grid-template-columns: 1fr;
  }

  .plugin-process-list {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 8px;
    bottom: 74px;
    width: 84px;
    height: 110px;
  }

  .social-bottom {
    right: 16px;
    bottom: 16px;
    gap: 7px;
    padding: 7px;
  }

  .social-bottom a,
  .social-toggle {
    width: 40px;
    height: 40px;
  }

  .social-bottom svg,
  .social-toggle svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-bot {
    inset: auto 16px 84px 16px;
    width: auto;
  }

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