@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --bg-page: #edf4ff;
  --bg-soft: #e6efff;
  --surface: #ffffff;
  --surface-2: #f6f9ff;
  --surface-glass: rgba(255, 255, 255, 0.74);
  --ink: #081630;
  --muted: #4d6185;
  --line: #d1def2;
  --line-strong: rgba(131, 171, 228, 0.54);
  --brand: #0c5fff;
  --brand-strong: #0347d8;
  --brand-2: #4aa4ff;
  --brand-cyan: #87ddff;
  --brand-soft: #dbe9ff;
  --brand-panel: #edf4ff;
  --navy: #07193a;
  --navy-deep: #04132c;
  --grad-page: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(237, 245, 255, 0.78) 32%, rgba(226, 237, 255, 0.66) 62%, rgba(248, 251, 255, 0.92) 100%);
  --grad-page-rich: linear-gradient(145deg, rgba(255, 255, 255, 0.74) 0%, rgba(231, 241, 255, 0.88) 50%, rgba(215, 230, 255, 0.8) 100%);
  --grad-card: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 42%, rgba(231, 241, 255, 0.96) 100%);
  --grad-panel: linear-gradient(150deg, rgba(248, 251, 255, 0.98) 0%, rgba(234, 243, 255, 0.96) 52%, rgba(219, 233, 255, 0.92) 100%);
  --grad-section: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(236, 244, 255, 0.54) 100%);
  --grad-cta: linear-gradient(120deg, #0b62ff 0%, #034fe4 52%, #3fa5ff 100%);
  --border-soft: rgba(151, 183, 229, 0.48);
  --section-outline: rgba(130, 168, 222, 0.26);
  --shadow-card: 0 16px 34px rgba(15, 57, 131, 0.1);
  --shadow-deep: 0 22px 44px rgba(11, 47, 118, 0.15);
  --shadow-section: 0 22px 46px rgba(10, 46, 118, 0.09);
  --teal: #00b49f;
  --warm: #ffaf49;
  --danger: #df4d67;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 14px 34px rgba(16, 56, 154, 0.12);
  --shadow-glow: 0 26px 54px rgba(10, 74, 214, 0.2);
  --max-width: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 50%;
  }

  50% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 100% 50%;
  }

  100% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 50%;
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes ambientShift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(3%, -4%, 0) scale(1.04);
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% -10%, rgba(74, 164, 255, 0.32), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(12, 95, 255, 0.22), transparent 26%),
    radial-gradient(circle at 78% 34%, rgba(80, 111, 255, 0.14), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(74, 164, 255, 0.14), transparent 30%),
    var(--grad-page),
    var(--bg-page);
}

body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(12px);
  opacity: 0.88;
  animation: ambientShift 30s ease-in-out infinite;
}

body::before {
  top: 80px;
  left: -14vw;
  width: min(44vw, 620px);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(108, 188, 255, 0.22) 0%, rgba(12, 95, 255, 0) 72%);
}

body::after {
  top: 22vh;
  right: -12vw;
  width: min(38vw, 540px);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(12, 95, 255, 0.16) 0%, rgba(12, 95, 255, 0) 72%);
  animation-duration: 36s;
  animation-delay: -12s;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 84px 0;
}

.section-sm {
  padding: 56px 0;
}

.section,
.section-sm,
.hero {
  position: relative;
}

body.home-page .home-panel {
  isolation: isolate;
}

body.home-page .home-panel > .container {
  position: relative;
  z-index: 1;
}

body.home-page .home-panel::before,
body.home-page .home-panel::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

body.home-page .home-panel::before {
  inset: 8px clamp(12px, 3vw, 28px);
  border-radius: 34px;
  border: 1px solid var(--section-outline);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 32%),
    var(--grad-section);
  box-shadow:
    var(--shadow-section),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

body.home-page .home-panel::after {
  top: 0;
  left: clamp(26px, 4vw, 48px);
  right: clamp(26px, 4vw, 48px);
  height: 1px;
  background: linear-gradient(90deg, rgba(130, 168, 222, 0), rgba(130, 168, 222, 0.32), rgba(130, 168, 222, 0));
}

body.home-page .home-panel--hero::before {
  inset: 0 clamp(8px, 2.5vw, 18px) 12px;
  border-color: rgba(168, 198, 238, 0.16);
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 0%, rgba(105, 193, 255, 0.18), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(12, 95, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(228, 239, 255, 0.14) 58%, rgba(228, 239, 255, 0.04) 100%);
  box-shadow: 0 26px 54px rgba(9, 46, 116, 0.1);
}

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

body.home-page .home-panel--mist::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(88, 174, 255, 0.14), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(12, 95, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(236, 244, 255, 0.56));
}

body.home-page .home-panel--glow::before {
  background:
    radial-gradient(circle at 100% 0%, rgba(115, 214, 255, 0.18), transparent 36%),
    radial-gradient(circle at 12% 100%, rgba(12, 95, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(233, 242, 255, 0.5));
}

body.home-page .home-panel--soft::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(74, 164, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(249, 252, 255, 0.88), rgba(234, 243, 255, 0.62));
}

.section-title {
  margin: 0 0 12px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #09152f;
}

.section-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.02rem;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #ffffff;
  background: linear-gradient(90deg, #0c5fff, #2f82ff 55%, #7cc3ff);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 95, 255, 0.24);
  background: rgba(12, 95, 255, 0.08);
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 700;
}

.badge-cool {
  color: #007a68;
  border-color: rgba(0, 180, 159, 0.24);
  background: rgba(0, 180, 159, 0.1);
}

.badge-warm {
  color: #a55a00;
  border-color: rgba(255, 175, 73, 0.34);
  background: rgba(255, 175, 73, 0.18);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid #cfe0f4;
  background: #f7fbff;
  color: #204278;
  font-size: 0.84rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--grad-cta);
  background-size: 140% 140%;
  box-shadow:
    0 14px 28px rgba(12, 95, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease, background-position 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow:
    0 18px 34px rgba(12, 95, 255, 0.3),
    0 0 0 4px rgba(12, 95, 255, 0.08);
  filter: saturate(1.1);
}

.btn-sm {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.82rem;
}

.btn-outline {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
  color: var(--brand-strong);
  border-color: #bed4f7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  border-color: #8db4ff;
  box-shadow:
    0 12px 22px rgba(35, 94, 208, 0.14),
    0 0 0 4px rgba(12, 95, 255, 0.06);
}

.btn-whatsapp {
  background: linear-gradient(120deg, #22c266, #0fa855);
  color: #ffffff;
  border-color: rgba(16, 151, 78, 0.35);
  box-shadow: 0 8px 16px rgba(17, 154, 79, 0.25);
}

.btn-whatsapp:hover {
  box-shadow: 0 12px 22px rgba(17, 154, 79, 0.33);
}

.btn-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(235, 244, 255, 0.78));
  color: #124083;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.promo-bar {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.34) 100%),
    linear-gradient(90deg, #eef5ff 0%, #dbeeff 50%, #bfdcff 100%);
  border-bottom: 1px solid rgba(15, 42, 86, 0.08);
  color: #103b72;
  font-size: 0.83rem;
  font-weight: 700;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
  min-height: 40px;
}

.promo-highlight {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16, 62, 95, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: clip;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 247, 255, 0.82));
  border-bottom: 1px solid rgba(133, 166, 211, 0.26);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(11, 48, 118, 0.08);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 28%, rgba(122, 187, 255, 0.08) 74%, rgba(255, 255, 255, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  width: auto;
  height: 46px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 10px;
  color: #17345f;
  font-size: 0.87rem;
  font-weight: 700;
}

.nav-item > a:hover {
  background: rgba(12, 95, 255, 0.08);
  color: var(--brand-strong);
}

.nav-item:hover .mega {
  opacity: 1;
  transform: translateY(8px);
  pointer-events: auto;
}

.mega {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid #d7e5f7;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega h4 {
  margin: 0 0 7px;
  font-size: 0.9rem;
  color: #0b1f42;
}

.mega a {
  display: block;
  padding: 5px 0;
  color: #465e82;
  font-size: 0.84rem;
}

.mega a:hover {
  color: #1f4fd8;
}

.mega .promo {
  border-radius: 16px;
  padding: 14px;
  border: 1px solid #d8e8ff;
  background: linear-gradient(150deg, #eef5ff 0%, #e4efff 56%, #f7fbff 100%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #d0e0f4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.92));
  color: var(--brand-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: #9ebfff;
  box-shadow: 0 10px 18px rgba(35, 94, 208, 0.15);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: #ff9050;
  color: #ffffff;
  font-size: 0.67rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.mobile-toggle {
  display: none;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 26, 52, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 998;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  right: 0;
  top: 0;
  width: min(380px, 92vw);
  height: 100vh;
  padding: 20px;
  border-left: 1px solid #d7e4f6;
  background:
    radial-gradient(circle at 100% 0%, rgba(117, 204, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 245, 255, 0.96) 100%);
  box-shadow: -18px 0 34px rgba(10, 24, 52, 0.18);
  transform: translateX(104%);
  transition: transform 0.25s ease;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mobile-nav-search {
  margin-bottom: 12px;
}

.mobile-nav-search input {
  width: 100%;
  min-height: 46px;
  border-radius: 16px;
  border: 1px solid #cadcf6;
  background: rgba(255, 255, 255, 0.94);
  padding: 0 14px;
}

.mobile-nav-links {
  display: grid;
}

.mobile-nav a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid #e1ebf8;
  color: #1a3560;
  font-weight: 700;
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.hero {
  padding: 38px 0 24px;
}

.hero-slider {
  display: grid;
  gap: 16px;
}

.hero-slider.is-slider .hero-slide {
  display: none;
}

.hero-slider.is-slider .hero-slide.is-active {
  display: grid;
  animation:
    gradientShift 20s ease-in-out infinite,
    heroReveal 0.8s ease both;
}

.hero-slide {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(24px, 3vw, 40px);
  min-height: clamp(460px, 49vw, 600px);
  border-radius: 34px;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 36px);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(144, 228, 255, 0.22), transparent 24%),
    radial-gradient(circle at 78% 84%, rgba(3, 28, 102, 0.52), transparent 38%),
    linear-gradient(120deg, #03255f 0%, #043aa8 24%, #0d62ff 56%, #63b4ff 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 140% 140%;
  border: 1px solid rgba(163, 198, 255, 0.2);
  box-shadow:
    0 34px 72px rgba(8, 46, 121, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  isolation: isolate;
  animation: gradientShift 20s ease-in-out infinite;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(135, 221, 255, 0.14), transparent 30%),
    linear-gradient(92deg, rgba(2, 18, 65, 0.46) 0%, rgba(2, 45, 135, 0.16) 48%, rgba(2, 51, 162, 0.04) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 8%;
  right: 8%;
  width: min(38vw, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 225, 255, 0.22) 0%, rgba(12, 95, 255, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.hero-slide > * {
  position: relative;
  z-index: 1;
}

.hero-slide.alt {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(129, 219, 255, 0.2), transparent 28%),
    radial-gradient(circle at 70% 84%, rgba(5, 51, 145, 0.42), transparent 36%),
    linear-gradient(124deg, #032b78 0%, #0550ca 30%, #1065ff 58%, #6bbcff 100%);
}

.hero-slide.alt-2 {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 30%),
    radial-gradient(circle at 78% 16%, rgba(92, 201, 255, 0.18), transparent 30%),
    radial-gradient(circle at 72% 84%, rgba(3, 28, 102, 0.46), transparent 38%),
    linear-gradient(126deg, #041f5a 0%, #08389e 28%, #0a56e3 56%, #3f9fff 100%);
}

.hero-copy h1 {
  margin: 16px 0 12px;
  max-width: 640px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(2.25rem, 4.3vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 14px 32px rgba(2, 21, 70, 0.28);
}

.hero-copy p {
  margin: 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  text-shadow: 0 10px 24px rgba(2, 21, 70, 0.22);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  padding: 12px 6px 12px 4px;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.hero-ring {
  position: relative;
  width: min(100%, 500px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  border-radius: 32px;
  padding: clamp(12px, 2vw, 18px);
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 22%, rgba(133, 210, 255, 0.36) 56%, rgba(12, 95, 255, 0.18) 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 242, 255, 0.84) 54%, rgba(206, 225, 255, 0.72) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 0 0 1px rgba(58, 110, 197, 0.16),
    0 24px 54px rgba(5, 41, 123, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: floatGlow 16s ease-in-out infinite;
}

.hero-ring::before {
  content: '';
  position: absolute;
  inset: -18% 16% 52% -16%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.46), transparent 72%);
  pointer-events: none;
}

.hero-ring::after {
  content: '';
  position: absolute;
  inset: auto 14% 3% 14%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 48, 140, 0.18) 0%, rgba(7, 48, 140, 0) 72%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-visual {
  --hero-image-position: center center;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.74), transparent 32%),
    linear-gradient(145deg, rgba(242, 247, 255, 0.98), rgba(226, 237, 255, 0.95) 58%, rgba(206, 223, 255, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 0 0 1px rgba(85, 132, 214, 0.12);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: auto 10% 6% 10%;
  height: 24%;
  background: radial-gradient(circle at 50% 100%, rgba(3, 51, 162, 0.14), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: var(--hero-image-position, center center);
  padding: clamp(18px, 5vw, 34px);
  border-radius: 24px;
  filter: drop-shadow(0 24px 34px rgba(5, 44, 124, 0.2));
  transition: transform 0.45s ease, filter 0.45s ease;
}

.hero-visual.hero-fit-cover img {
  object-fit: cover;
  padding: 0;
}

.hero-visual.hero-fit-contain img {
  object-fit: contain;
}

.hero-slide:hover .hero-visual img {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 30px 42px rgba(5, 44, 124, 0.24));
}

.hero-slide.hero-slide--image-only {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  min-height: clamp(300px, 40vw, 540px);
  background: linear-gradient(140deg, #042767 0%, #0d62ff 58%, #63b4ff 100%);
}

.hero-slide.hero-slide--image-only::before {
  background:
    linear-gradient(180deg, rgba(2, 18, 65, 0.12) 0%, rgba(2, 18, 65, 0.05) 36%, rgba(2, 18, 65, 0.16) 100%);
}

.hero-slide.hero-slide--image-only::after,
.hero-slide.hero-slide--image-only .hero-ring::before,
.hero-slide.hero-slide--image-only .hero-ring::after,
.hero-slide.hero-slide--image-only .hero-visual::after {
  display: none;
}

.hero-slide.hero-slide--image-only .hero-media {
  justify-content: stretch;
  min-height: inherit;
}

.hero-slide.hero-slide--image-only .hero-ring {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  margin: 0;
  padding: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
  animation: none;
}

.hero-slide.hero-slide--image-only .hero-visual {
  height: 100%;
  min-height: inherit;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
}

.hero-slide.hero-slide--image-only .hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  border-radius: inherit;
  object-fit: cover;
  object-position: var(--hero-image-position, center center);
  filter: none;
}

.hero-slide.hero-slide--image-only .hero-visual.hero-fit-contain img {
  object-fit: contain;
  padding: clamp(10px, 2vw, 18px);
}

.hero-slide.hero-slide--image-only:hover .hero-visual img {
  transform: none;
  filter: none;
}

.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(139, 166, 209, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.hero-dots button.is-active {
  width: 28px;
  background: linear-gradient(90deg, #0d61ff, #55abff);
  box-shadow: 0 8px 18px rgba(12, 95, 255, 0.24);
}

.logo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #dae6f6;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.logo-feature-media {
  background: #080b12;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.logo-feature-media img {
  border-radius: 18px;
  max-height: 320px;
  object-fit: contain;
}

.logo-feature-copy {
  padding: 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(206px, 1fr));
  gap: 14px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: var(--radius-md);
  border: 1px solid #d7e4f6;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(34, 75, 138, 0.08);
}

.trust-card img {
  width: 42px;
  height: 42px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.review-card {
  border: 1px solid #d8e7f7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(31, 77, 145, 0.08);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.review-card h3 {
  margin: 0;
  color: #10284f;
  font-size: 1rem;
}

.review-card p {
  margin: 0;
  color: #445f88;
  font-size: 0.9rem;
  line-height: 1.45;
}

.review-stars {
  display: inline-flex;
  gap: 3px;
  font-size: 0.92rem;
}

.review-stars span {
  color: #b8c8df;
}

.review-stars span.active {
  color: #f39b1f;
}

.review-meta {
  display: grid;
  gap: 3px;
  font-size: 0.8rem;
  color: #5f7699;
}

.logo-feature,
.trust-card,
.review-card,
.category-product-chip,
.product-card,
.value-card,
.testimonial-card,
.blog-card,
.form-card,
.product-gallery,
.product-summary,
.cart-summary,
.service-card,
.admin-card,
.admin-panel,
.admin-editor {
  position: relative;
  overflow: hidden;
  border-color: var(--border-soft);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.76), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(92, 176, 255, 0.08), transparent 34%),
    var(--grad-card);
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.category-card,
.category-showcase,
.deal-tile,
.software-section,
.collection-banner {
  position: relative;
  overflow: hidden;
  border-color: var(--border-soft);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.72), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(92, 176, 255, 0.1), transparent 34%),
    var(--grad-panel);
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.trust-card,
.review-card,
.category-card,
.category-showcase,
.category-product-chip,
.product-card,
.deal-tile,
.value-card,
.testimonial-card,
.blog-card,
.service-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.trust-card:hover,
.review-card:hover,
.category-card:hover,
.category-showcase:hover,
.category-product-chip:hover,
.product-card:hover,
.deal-tile:hover,
.value-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 158, 231, 0.54);
  box-shadow:
    var(--shadow-deep),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.split-media {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #dbe6f4;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.78), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(74, 164, 255, 0.08), transparent 32%),
    linear-gradient(150deg, #f8fbff 0%, #eaf2ff 60%, #f5f9ff 100%);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.assurance-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.assurance-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
}

.assurance-item img {
  width: 32px;
  height: 32px;
}

.scroll-row {
  overflow-x: auto;
  padding-bottom: 8px;
}

.scroll-row .category-grid {
  min-width: 1060px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(198px, 1fr));
  gap: 14px;
}

.category-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid #d9e7f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  box-shadow:
    var(--shadow-deep),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.category-card strong {
  font-size: 1.02rem;
  color: #0f254d;
}

.category-card img {
  border-radius: 14px;
  border: 1px solid #dce9f8;
  background: #f9fcff;
}

.category-media {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  border: 1px solid #dce9f8;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.8), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(74, 164, 255, 0.08), transparent 32%),
    linear-gradient(150deg, #f8fbff 0%, #eaf2ff 58%, #f4f9ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -18px 26px rgba(18, 73, 167, 0.04);
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-showcase-grid {
  display: grid;
  gap: 16px;
}

.category-showcase {
  border: 1px solid #d8e7f7;
  border-radius: 24px;
  padding: 16px;
}

.category-showcase-head {
  display: grid;
  grid-template-columns: minmax(170px, 220px) 1fr;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.category-showcase-head strong {
  display: block;
  font-size: 1.16rem;
  color: #0f254d;
}

.category-open-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  color: #1d4fd3;
  font-size: 0.84rem;
  font-weight: 800;
}

.category-products {
  margin-top: 12px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(206px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.category-products-flat {
  margin-top: 8px;
  grid-auto-columns: minmax(240px, 1fr);
}

.category-product-chip {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid #d8e7f7;
  border-radius: 16px;
  padding: 8px;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
}

.chip-media {
  display: block;
  width: 64px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d9e8f8;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.76), transparent 36%),
    linear-gradient(150deg, #f8fbff 0%, #eaf2ff 60%, #f5f9ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.chip-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-product-chip strong {
  display: block;
  color: #132b56;
  font-size: 0.82rem;
  line-height: 1.3;
}

.chip-price {
  display: block;
  margin-top: 4px;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.chip-kicker {
  display: inline-flex;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #cfe0f5;
  background: #f4f9ff;
  color: #315887;
  font-size: 0.72rem;
  font-weight: 700;
}

.category-slider-row {
  margin-top: 14px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.category-slide-card {
  position: relative;
  min-height: 430px;
  border-radius: 22px;
  border: 1px solid rgba(176, 208, 255, 0.24);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(128, 219, 255, 0.16), transparent 28%),
    linear-gradient(156deg, #073ba8 0%, #0d61ff 58%, #66b7ff 100%);
  color: #ffffff;
  text-decoration: none;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 10px;
  padding: 22px 18px 0;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 18px 36px rgba(11, 48, 118, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  isolation: isolate;
}

.category-slide-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

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

.category-slide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(9, 43, 108, 0.22);
}

.category-slide-badge {
  width: max-content;
  margin: 0 auto;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.12));
}

.category-slide-card h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2rem);
  line-height: 1.08;
  color: #ffffff;
}

.category-slide-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.category-slide-media {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  min-height: 240px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(199, 225, 255, 0.08));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -18px 32px rgba(8, 49, 124, 0.08);
}

.category-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transform: translateY(6px);
  transition: transform 0.35s ease;
}

.category-slide-card:hover .category-slide-media img {
  transform: translateY(0);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(242px, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow:
    var(--shadow-deep),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid #ddeaf8;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.84), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(74, 164, 255, 0.08), transparent 30%),
    linear-gradient(150deg, #eff5ff 0%, #e8f1ff 54%, #f8fbff 100%);
  padding: 10px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -16px 24px rgba(27, 79, 167, 0.03);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, #0b4ee5, #1e7dff);
  box-shadow: 0 10px 18px rgba(13, 93, 255, 0.16);
}

.product-promo-badge--sale {
  background: linear-gradient(135deg, #ff7a2f, #ff9a40);
  box-shadow: 0 10px 18px rgba(255, 122, 47, 0.22);
}

.product-promo-badge--new {
  background: linear-gradient(135deg, #149b72, #24ba8b);
  box-shadow: 0 10px 18px rgba(20, 155, 114, 0.18);
}

.product-promo-badge--featured {
  background: linear-gradient(135deg, #062f7f, #0b57df);
}

.product-brand {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5b78a3;
  font-weight: 700;
}

.product-brand--lower {
  text-transform: lowercase;
}

.product-name {
  margin: 4px 0 0;
  font-size: 1rem;
  line-height: 1.36;
}

.rating {
  font-size: 0.82rem;
  color: #4b6892;
}

.price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0d2752;
}

.price-old {
  margin-left: 8px;
  font-size: 0.86rem;
  color: #7e95b9;
  text-decoration: line-through;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 16px;
}

.deal-tile {
  display: grid;
  gap: 12px;
  border-radius: 22px;
  padding: 18px;
}

.deal-tile h3 {
  margin: 0;
}

.deal-tile img {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.deal-shop {
  width: max-content;
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: underline;
}

.software-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius-xl);
}

.software-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(222px, 1fr));
  gap: 14px;
}

.value-card {
  border-radius: 18px;
  padding: 16px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.testimonial-card {
  border-radius: 20px;
  padding: 18px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.blog-card {
  display: grid;
  gap: 12px;
  border-radius: 20px;
  padding: 14px;
}

.blog-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #dce8f7;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.8), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(74, 164, 255, 0.08), transparent 30%),
    linear-gradient(150deg, #f8fbff 0%, #eaf2ff 58%, #f5f9ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -18px 26px rgba(18, 73, 167, 0.04);
}

.footer {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  padding: 64px 0 34px;
  color: #d8e8ff;
  background:
    radial-gradient(circle at 8% 12%, rgba(67, 142, 255, 0.34), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(74, 164, 255, 0.18), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(32, 93, 255, 0.2), transparent 38%),
    linear-gradient(180deg, #081630 0%, #061124 100%);
  box-shadow:
    inset 0 1px 0 rgba(142, 177, 255, 0.12),
    0 -16px 40px rgba(8, 24, 52, 0.04);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.18), rgba(239, 246, 255, 0));
}

.footer::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 189, 255, 0.18) 0%, rgba(107, 189, 255, 0) 72%);
  filter: blur(12px);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(4, minmax(150px, 1fr));
  gap: 26px;
}

.footer-brand img {
  max-width: 250px;
  border-radius: 12px;
}

.footer h4 {
  margin: 0 0 11px;
  color: #f3f8ff;
}

.footer .section-lead,
.footer a,
.footer-bottom {
  color: #b8cdea;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer a:hover {
  color: #ffffff;
}

.newsletter {
  margin-top: 12px;
}

.footer-news-input {
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(191, 218, 255, 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(170, 203, 255, 0.08));
  color: #ffffff;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(179, 210, 255, 0.24);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
}

.form-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #d7e5f6;
}

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

label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #23426e;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #cde0f5;
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(244, 249, 255, 0.98));
  color: #0d244a;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.92rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(12, 95, 255, 0.18);
  border-color: #91b7ff;
  box-shadow:
    0 0 0 4px rgba(12, 95, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.table-wrap {
  overflow-x: auto;
}

.table,
.cart-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d5e4f6;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 34%),
    var(--grad-card);
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.table th,
.table td,
.cart-table th,
.cart-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e2ecf8;
  text-align: left;
  vertical-align: middle;
}

.table th,
.cart-table th {
  background: linear-gradient(180deg, #f8fbff, #edf4ff);
  color: #456089;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.collection-banner {
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 22px;
  box-shadow:
    0 18px 34px rgba(12, 50, 122, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.filter-bar {
  margin-bottom: 20px;
}

.filter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
  width: auto;
  min-width: 210px;
}

.breadcrumbs {
  margin-bottom: 12px;
  color: #53709a;
  font-size: 0.86rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
}

.product-gallery,
.product-summary,
.cart-summary {
  border-radius: 20px;
  padding: 20px;
}

.product-gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid #ddeaf8;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.82), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(74, 164, 255, 0.08), transparent 32%),
    linear-gradient(150deg, #f7fbff 0%, #eaf2ff 56%, #f4f9ff 100%);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -20px 28px rgba(18, 73, 167, 0.04);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-gallery-thumb {
  width: 88px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.78), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(74, 164, 255, 0.08), transparent 30%),
    linear-gradient(150deg, #f8fbff 0%, #ebf3ff 60%, #f5f9ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -10px 18px rgba(18, 73, 167, 0.04);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.product-summary {
  position: sticky;
  top: 104px;
  align-self: start;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 10px 0;
  border-bottom: 1px solid #e1ebf8;
  color: #4f6488;
}

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

.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 43, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 1001;
}

.admin-sidebar-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.admin-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
  min-width: 0;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  overflow-y: auto;
  padding: 22px 18px;
  border-right: 1px solid #1b4285;
  background:
    radial-gradient(circle at 20% 0%, rgba(95, 145, 255, 0.34), transparent 38%),
    radial-gradient(circle at 95% 0%, rgba(74, 164, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #071631, #0b2147);
  z-index: 1002;
}

.admin-sidebar .logo-image {
  height: 42px;
  width: auto;
}

.admin-side-note {
  margin: 0 0 12px;
  color: #8eb0e1;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.admin-sidebar-section {
  display: block;
  margin: 18px 12px 8px;
  color: #7fa8ea;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-sidebar a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: #bed3f5;
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  color: #ffffff;
  background: rgba(130, 173, 255, 0.22);
}

.admin-sidebar hr {
  margin: 12px 0;
  border: 0;
  border-top: 1px solid rgba(174, 202, 250, 0.22);
}

.admin-main {
  padding: 30px;
  min-width: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(116, 181, 255, 0.2), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(12, 95, 255, 0.14), transparent 28%),
    linear-gradient(160deg, #f8fbff 0%, #eef4ff 58%, #e8f0ff 100%);
}

.admin-brand-title {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.admin-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 12px;
}

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

.admin-panel {
  border-radius: 20px;
  padding: 18px;
}

.admin-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.admin-panel form {
  display: grid;
  gap: 12px;
}

.admin-panel h2 {
  margin: 0 0 4px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.2rem;
}

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

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

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

.admin-form-layout {
  display: grid;
  gap: 14px;
}

.admin-form-card {
  border: 1px solid #d8e5f7;
  border-radius: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.66), transparent 34%),
    linear-gradient(145deg, #fbfdff 0%, #f2f7ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 12px 22px rgba(18, 57, 128, 0.05);
}

.admin-form-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.admin-field-stack {
  display: grid;
  gap: 7px;
}

.admin-field-stack--center {
  align-content: start;
}

.admin-helper {
  margin: 0;
  color: #597599;
  font-size: 0.82rem;
  line-height: 1.45;
}

.admin-readonly-field {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d2e0f2;
  background: #f4f8ff;
  color: #173764;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.admin-advanced-box {
  border: 1px dashed #bdd0ec;
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(245, 249, 255, 0.88);
}

.admin-advanced-box summary {
  cursor: pointer;
  color: #264f85;
  font-weight: 700;
}

.admin-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.9rem;
}

.admin-highlight-rows {
  display: grid;
  gap: 10px;
}

.admin-highlight-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 0.7fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid #d9e5f7;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.admin-table-product {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
}

.admin-custom-link.is-hidden {
  display: none;
}

.admin-link-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-link-preview a {
  color: var(--brand-strong);
  font-weight: 800;
  word-break: break-all;
}

.admin-link-preview .section-lead {
  margin: 0;
  font-size: 0.84rem;
}

.admin-submit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.admin-checks {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
}

.admin-checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.86rem;
}

.admin-checks input[type='checkbox'] {
  width: 16px;
  height: 16px;
  min-height: 16px;
}

.admin-thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #d9e7f8;
  background: #f6fbff;
  padding: 5px;
}

.admin-editor {
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.admin-editor summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.66), transparent 30%),
    linear-gradient(145deg, #f6faff 0%, #eaf2ff 100%);
  color: #173764;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-editor summary::-webkit-details-marker {
  display: none;
}

.admin-editor-body {
  padding: 16px;
}

.admin-login-shell .form-card {
  max-width: 520px;
}

.admin-login-logo {
  width: min(250px, 100%);
  margin: 0 auto 16px;
  border-radius: 12px;
}

.product-price-stack {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.product-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.product-buy-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-whatsapp,
.product-review-link {
  margin: 12px 0 0;
}

.product-highlights {
  margin-top: 20px;
}

.product-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-highlight-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid #d6e4f6;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(150deg, #f8fbff 0%, #edf4ff 100%);
}

.product-highlight-card img {
  width: 28px;
  height: 28px;
}

.product-highlight-card span {
  color: #18365f;
  font-weight: 700;
  line-height: 1.35;
}

.card-cart-form {
  margin: 0;
}

@media (max-width: 1220px) {
  .nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .logo-image {
    height: 40px;
  }

  .split-section,
  .logo-feature,
  .software-section,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

  .logo-feature-copy {
    padding: 20px 22px 24px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 70px 0;
  }

  .section-sm {
    padding: 46px 0;
  }

  body.home-page .home-panel::before {
    inset: 6px 16px;
    border-radius: 30px;
  }

  body.home-page .home-panel--hero::before {
    inset: 0 8px 10px;
    border-radius: 34px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    gap: 20px;
    min-height: 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-ring {
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .category-slider-row {
    grid-auto-columns: minmax(280px, 1fr);
  }

  .category-slide-card {
    min-height: 400px;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-mobile-bar {
    position: sticky;
    top: 0;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #d4e3f5;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
  }

  .admin-mobile-bar .logo-image {
    height: 34px;
  }

  .admin-mobile-bar .btn {
    min-height: 34px;
    padding: 7px 12px;
  }

  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 88vw);
    height: 100vh;
    border-right: 1px solid #1b4285;
    border-bottom: 0;
    transform: translateX(-104%);
    transition: transform 0.24s ease;
    box-shadow: 18px 0 34px rgba(4, 17, 44, 0.22);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-main {
    padding: 22px 18px;
  }

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

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

@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section-sm {
    padding: 36px 0;
  }

  body.home-page .home-panel::before {
    inset: 4px 8px;
    border-radius: 24px;
  }

  body.home-page .home-panel--hero::before {
    inset: 0 4px 8px;
    border-radius: 30px;
  }

  .header-inner {
    min-height: 66px;
    gap: 8px;
  }

  .logo-image {
    height: 34px;
  }

  .header-actions .icon-btn {
    width: 34px;
    height: 34px;
  }

  .header-actions .icon-btn svg {
    width: 16px;
    height: 16px;
  }

  .product-grid,
  .blog-grid,
  .trust-grid,
  .value-grid,
  .testimonials,
  .category-grid,
  .admin-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scroll-row .category-grid {
    min-width: 0;
  }

  .filter-bar input,
  .filter-bar select {
    width: 100%;
    min-width: 0;
  }

  .software-section {
    padding: 24px 18px;
  }

  .intro-banner,
  .collection-banner,
  .about-carmata,
  .highlight-slide,
  .form-card {
    padding: 22px 18px;
  }

  .hero-ring {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
  }

  .hero-slide {
    padding: 20px 16px 18px;
    border-radius: 28px;
  }

  .hero-visual img {
    padding: 18px;
  }

  .hero-copy p {
    font-size: 0.96rem;
  }

  .hero-actions .btn,
  .hero-actions .btn-outline,
  .mobile-nav-actions .btn,
  .product-buy-form .btn,
  .product-whatsapp .btn,
  .product-review-link .btn {
    width: 100%;
  }

  .mobile-nav {
    width: min(360px, 92vw);
    padding: 18px 16px 24px;
  }

  .mobile-nav-actions {
    grid-template-columns: 1fr;
  }

  .admin-mobile-bar {
    padding: 10px 12px;
  }

  .admin-mobile-bar .btn {
    display: none;
  }

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

  .admin-page-head,
  .admin-panel-head {
    flex-direction: column;
  }

  .admin-highlight-row {
    grid-template-columns: 1fr;
  }

  .category-showcase-head {
    grid-template-columns: 1fr;
  }

  .category-products {
    grid-auto-columns: minmax(170px, 1fr);
  }

  .category-products-flat {
    grid-auto-columns: minmax(170px, 1fr);
  }

  .category-slider-row {
    grid-auto-columns: 84vw;
  }

  .category-slide-card {
    min-height: 0;
    padding: 18px 14px 14px;
  }

  .category-slide-card h3 {
    font-size: 1.45rem;
  }

  .category-slide-media {
    min-height: 200px;
  }

  .product-card {
    padding: 12px;
  }

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

  .card-actions > * {
    width: 100%;
  }

  .card-cart-form {
    grid-column: 1 / -1;
  }

  .card-cart-form .btn {
    width: 100%;
  }

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

  .filter-form .btn {
    width: 100%;
  }

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

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

  .product-buy-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-gallery,
  .product-summary,
  .cart-summary {
    padding: 16px;
  }

  .product-gallery-thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-gallery-thumb {
    flex: 0 0 76px;
  }

  .footer {
    padding: 44px 0 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-main {
    padding: 16px 14px 24px;
  }

  .admin-cards {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: 16px;
  }

  .admin-main .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-main .hero-actions .btn,
  .admin-main .hero-actions .btn-outline {
    width: 100%;
  }

  .admin-submit-row {
    position: sticky;
    bottom: 8px;
    padding-top: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.98) 34%);
  }

  .table-wrap {
    overflow: visible;
  }

  .table,
  .cart-table {
    border: 0;
    background: transparent;
  }

  .table thead,
  .cart-table thead {
    display: none;
  }

  .table tbody,
  .cart-table tbody {
    display: grid;
    gap: 12px;
  }

  .table tr,
  .cart-table tr {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid #d8e7f7;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(31, 73, 140, 0.08);
  }

  .table td,
  .cart-table td {
    display: grid;
    gap: 4px;
    padding: 0;
    border-bottom: 0;
  }

  .table td::before,
  .cart-table td::before {
    content: attr(data-label);
    color: #5a74a0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .table td form,
  .cart-table td form {
    display: grid;
    gap: 8px;
  }

  .table td .btn,
  .table td .btn-outline,
  .cart-table td .btn,
  .cart-table td .btn-outline {
    width: 100%;
  }
}

.promo-link {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16, 62, 95, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: #0e4277;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-search {
  display: flex;
}

.header-search input {
  width: 180px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #c9d9ef;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.92));
  color: #25436f;
  padding: 0 14px;
  font-size: 0.8rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.intro-banner {
  display: grid;
  gap: 8px;
  align-items: center;
  border: 1px solid #dbe8f8;
  border-radius: var(--radius-lg);
  padding: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(116, 198, 255, 0.14), transparent 36%),
    linear-gradient(125deg, rgba(235, 243, 255, 0.98), rgba(219, 235, 255, 0.92));
  box-shadow:
    0 18px 36px rgba(14, 54, 128, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.about-carmata {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  border-radius: 28px;
  border: 1px solid #d8e8f7;
  background:
    radial-gradient(circle at 0% 0%, rgba(116, 198, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #eaf2ff 0%, #e4efff 47%, #f8fbff 100%);
  box-shadow: 0 18px 34px rgba(31, 76, 142, 0.1);
  padding: 24px;
}

.about-carmata-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dbe8f7;
  background: #ffffff;
}

.about-carmata-content {
  display: grid;
  align-content: start;
}

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

.about-carmata-card {
  border-radius: 16px;
  border: 1px solid #d7e8f8;
  background: #ffffff;
  padding: 12px;
}

.about-carmata-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: #132f5c;
}

.about-carmata-card p {
  margin: 0;
  color: #4f6689;
  font-size: 0.87rem;
}

.highlight-slider {
  border-radius: 24px;
  border: 1px solid #d7e7f8;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(130deg, #eef4ff 0%, #e4efff 52%, #f7fbff 100%);
  box-shadow: 0 16px 32px rgba(38, 88, 165, 0.1);
  overflow: hidden;
  margin-top: 10px;
}

.highlight-slider.is-slider .highlight-slide {
  display: none;
}

.highlight-slider.is-slider .highlight-slide.is-active {
  display: grid;
}

.highlight-slide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
}

.highlight-slide h3 {
  margin: 10px 0 8px;
  font-size: 1.45rem;
  line-height: 1.28;
}

.highlight-slide p {
  margin: 0;
  color: #4f678b;
}

.highlight-slide-media {
  border-radius: 16px;
  border: 1px solid #d7e7f8;
  background: #ffffff;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.highlight-slide-media img {
  max-height: 170px;
  width: auto;
  max-width: 100%;
}

.highlight-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.highlight-card {
  border-radius: 16px;
  border: 1px solid #d7e7f8;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.78), transparent 30%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.96));
  padding: 14px;
  box-shadow: 0 8px 16px rgba(31, 74, 140, 0.08);
}

.highlight-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.highlight-card strong {
  display: block;
  color: #12305d;
  margin-bottom: 5px;
}

.highlight-card p {
  margin: 0 0 8px;
  color: #4f678b;
  font-size: 0.88rem;
}

.highlight-card a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand-strong);
}

.highlight-ticker {
  margin-top: 14px;
  border: 1px solid #d8e7f9;
  border-radius: 14px;
  background: #ffffff;
  padding: 11px 14px;
  color: #1a3d72;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.service-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
}

.service-image {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d7e6f8;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.8), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(74, 164, 255, 0.08), transparent 32%),
    linear-gradient(150deg, #f8fbff 0%, #eaf2ff 60%, #f5f9ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -18px 26px rgba(18, 73, 167, 0.04);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy h3 {
  margin: 8px 0 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.footer-contact-list {
  display: grid;
  gap: 4px;
  margin: 12px 0 18px;
  color: #d6e6ff;
  font-size: 0.84rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, #13c26b, #3ddc84);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(18, 170, 95, 0.3);
}

.whatsapp-float:hover {
  filter: brightness(1.05);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::before,
  body::after {
    animation: none;
  }

  .btn,
  .hero-slide,
  .hero-slider.is-slider .hero-slide.is-active,
  .hero-ring,
  .category-slide-card,
  .trust-card,
  .review-card,
  .category-card,
  .category-showcase,
  .category-product-chip,
  .product-card,
  .deal-tile,
  .value-card,
  .testimonial-card,
  .blog-card,
  .service-card {
    animation: none;
    transition: none;
  }

  .hero-slide:hover .hero-visual img {
    transform: none;
    filter: drop-shadow(0 24px 34px rgba(5, 44, 124, 0.2));
  }
}

@media (max-width: 1220px) {
  .header-search {
    display: none;
  }
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .about-carmata,
  .highlight-slide {
    grid-template-columns: 1fr;
  }

  .about-carmata-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    min-height: 44px;
    padding: 0 14px;
    border-radius: 18px;
    font-size: 0.82rem;
  }
}

@media (max-width: 560px) {
  .header-actions {
    gap: 6px;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 11vw, 2.5rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .hero-actions .btn-outline {
    flex: 1 1 100%;
  }

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

  .footer-brand img {
    max-width: 190px;
  }
}
