:root {
  --bg: #06111f;
  --bg-alt: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #eef3f8;
  --text-muted: #a9b7c9;
  --ink: #0d1b2b;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #52d7ff;
  --cyan-strong: #19b7e8;
  --emerald: #18b48d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(82, 215, 255, 0.15), transparent 22%),
    radial-gradient(circle at top right, rgba(24, 180, 141, 0.12), transparent 20%),
    linear-gradient(180deg, #07111d 0%, #091828 38%, #f5f8fc 38%, #f5f8fc 100%);
  color: var(--ink);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.04em;
  margin: 0;
}

p {
  margin: 0;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-muted {
  background: linear-gradient(180deg, #f5f8fc 0%, #eef3f8 100%);
}

.section-contact {
  background: #f7fafc;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.glass {
  background: linear-gradient(180deg, rgba(8, 20, 36, 0.88), rgba(6, 16, 30, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--emerald) 100%);
  color: #07111d;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 14, 25, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark,
.hero-logo,
.footer-logo {
  object-fit: contain;
}

.brand-mark {
  width: 260px;
  height: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: #fff;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
}

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

.nav a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  font-size: 0.96rem;
}

.nav a:hover {
  color: #fff;
}

.nav a[aria-current="page"] {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.nav-burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.hero {
  color: var(--text);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.6;
}

.hero-bg-a {
  width: 280px;
  height: 280px;
  left: -60px;
  top: 30px;
  background: rgba(82, 215, 255, 0.18);
}

.hero-bg-b {
  width: 340px;
  height: 340px;
  right: -80px;
  top: 140px;
  background: rgba(24, 180, 141, 0.16);
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.85rem);
  line-height: 0.98;
  max-width: 11ch;
  margin-top: 18px;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(238, 243, 248, 0.82);
  margin-top: 22px;
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(239, 253, 249, 0.86);
}

.section .eyebrow {
  color: #4b6684;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--emerald));
  box-shadow: 0 0 0 6px rgba(82, 215, 255, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-card,
.service-card,
.cert-card,
.industry-card,
.network-card,
.contact-card,
.contact-form {
  background: #fff;
  border: 1px solid rgba(13, 27, 43, 0.08);
  box-shadow: 0 18px 45px rgba(9, 24, 40, 0.08);
}

.stat-card {
  border-radius: var(--radius-lg);
  padding: 18px;
}

.stat-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #7d90a8;
  margin-bottom: 10px;
}

.stat-card strong {
  display: block;
  font-size: 2.05rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: #081527;
}

.stat-card p {
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #5f7185;
}

.hero-visual {
  position: relative;
}

.hero-card {
  border-radius: 34px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(82, 215, 255, 0.2), transparent 24%),
    radial-gradient(circle at 85% 14%, rgba(24, 180, 141, 0.18), transparent 22%),
    radial-gradient(circle at 78% 82%, rgba(82, 215, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.hero-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 4px 4px 18px;
}

.hero-card-top--split {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-logo {
  width: min(100%, 610px);
}

.hero-logo--small {
  width: 220px;
}

.hero-tag {
  text-align: right;
  color: #fff;
}

.hero-tag span {
  display: none;
}

.hero-tag strong {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-photo-shell {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1.08 / 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0.22), rgba(7, 17, 29, 0.82));
  color: #fff;
}

.hero-photo-overlay strong {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
  line-height: 1.45;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
  align-items: stretch;
}

.hero-image-shell {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

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

.feature-image {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 16px;
  background: linear-gradient(180deg, rgba(6, 24, 44, 0.7), rgba(6, 24, 44, 0.35));
}

.feature-image figcaption {
  padding: 12px 14px 14px;
  color: #f6fbff;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
}

.floating-note {
  padding: 16px 18px;
  border-radius: 22px;
  min-width: 0;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.floating-note-main {
  min-height: 150px;
}

.floating-note-meta {
  min-height: 110px;
}

.floating-note span {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(239, 253, 249, 0.7);
}

.floating-note strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.5;
  flex: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
  color: #162638;
}

.section-heading.align-left {
  margin-left: 0;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.section-heading p {
  margin-top: 14px;
  color: #5e7187;
  line-height: 1.8;
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.industry-card,
.network-card,
.cert-card {
  border-radius: 24px;
  padding: 22px;
}

.service-card {
  min-height: 100%;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(82, 215, 255, 0.15), rgba(24, 180, 141, 0.14));
  color: #0b3a57;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.service-card h3,
.industry-card h3,
.network-card h3,
.cert-card h3 {
  margin-top: 16px;
  color: #081527;
  font-size: 1.15rem;
}

.service-card p,
.industry-card p,
.network-card p,
.cert-card p,
.form-note {
  margin-top: 10px;
  color: #5f7185;
  line-height: 1.72;
  font-size: 0.98rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: start;
}

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

.cert-card {
  background: #fff;
}

.process-panel {
  position: sticky;
  top: 96px;
  border-radius: 30px;
  padding: 28px;
  color: #fff;
}

.process-panel h3 {
  margin-top: 12px;
  font-size: 2rem;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.process-list li {
  padding: 18px 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.process-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
}

.process-list span {
  color: rgba(234, 243, 251, 0.76);
  line-height: 1.65;
  font-size: 0.94rem;
}

.industry-card {
  background: #fff;
}

.world-panel {
  border-radius: 30px;
  padding: 18px;
  margin-top: 18px;
}

.world-map {
  position: relative;
  min-height: 330px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 26%, rgba(82, 215, 255, 0.14), transparent 18%),
    radial-gradient(circle at 68% 48%, rgba(24, 180, 141, 0.13), transparent 18%),
    linear-gradient(180deg, rgba(6, 24, 44, 0.94), rgba(3, 10, 18, 0.98));
}

.world-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
}

.world-line,
.world-node {
  position: absolute;
}

.world-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(82, 215, 255, 0.1), rgba(82, 215, 255, 0.75), rgba(24, 180, 141, 0.75));
  transform-origin: left center;
  box-shadow: 0 0 16px rgba(82, 215, 255, 0.38);
}

.line-1 { left: 16%; top: 60%; width: 36%; transform: rotate(-28deg); }
.line-2 { left: 30%; top: 26%; width: 30%; transform: rotate(22deg); }
.line-3 { left: 42%; top: 35%; width: 34%; transform: rotate(4deg); }
.line-4 { left: 54%; top: 52%; width: 34%; transform: rotate(16deg); }

.world-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(82, 215, 255, 0.12), 0 0 30px rgba(82, 215, 255, 0.45);
}

.node-1 { left: 18%; top: 62%; }
.node-2 { left: 42%; top: 32%; }
.node-3 { left: 58%; top: 50%; }
.node-4 { left: 75%; top: 24%; }
.node-5 { left: 84%; top: 58%; }

.network-layout {
  align-items: center;
}

.network-cards {
  display: grid;
  gap: 14px;
}

.network-card {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-card {
  border-radius: 24px;
  padding: 20px;
}

.contact-card strong {
  display: block;
  font-size: 1.05rem;
  color: #081527;
}

.contact-card p {
  margin-top: 6px;
  color: #5f7185;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-links a {
  font-weight: 700;
  color: #0b5279;
}

.contact-form {
  border-radius: 30px;
  padding: 26px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #455c74;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 43, 0.12);
  background: #f8fbfe;
  color: #081527;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(82, 215, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(82, 215, 255, 0.14);
}

.site-footer {
  background: #07111d;
  color: rgba(255, 255, 255, 0.72);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-logo {
  width: 180px;
}

.chatbot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
}

.chatbot-fab {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(82, 215, 255, 0.98), rgba(24, 180, 141, 0.98));
  color: #07111d;
  font: inherit;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.chatbot-fab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
}

.chatbot-panel {
  width: min(360px, calc(100vw - 32px));
  margin-bottom: 12px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  background: rgba(6, 16, 30, 0.96);
  color: #fff;
  backdrop-filter: blur(18px);
}

.chatbot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chatbot-header strong {
  display: block;
  font-size: 0.95rem;
}

.chatbot-header span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.5;
}

.chatbot-close {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 1.2rem;
  cursor: pointer;
}

.chatbot-messages {
  max-height: 230px;
  overflow: auto;
  padding: 14px 16px;
  display: grid;
  gap: 10px;
}

.chatbot-message {
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.chatbot-message.bot {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chatbot-message.user {
  justify-self: end;
  background: linear-gradient(135deg, var(--cyan), var(--emerald));
  color: #07111d;
  max-width: 88%;
}

.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}

.chatbot-quick button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.chatbot-form {
  display: flex;
  gap: 10px;
  padding: 0 16px 16px;
}

.chatbot-form input {
  flex: 1;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}

.chatbot-form input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.chatbot-form button {
  border: 0;
  border-radius: 14px;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--cyan), var(--emerald));
  color: #07111d;
  font: inherit;
  font-weight: 800;
}

@media (max-width: 1160px) {
  .five-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .brand-mark {
    width: 210px;
  }

  .nav-burger {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 14px 0 0;
  }

  .header-cta {
    margin-left: 0;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav-toggle:checked ~ .header-cta {
    display: inline-flex;
  }

  .header-inner {
    padding: 14px 0;
  }

  .stats-grid,
  .hero-image-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: grid;
    gap: 12px;
  }

  .hero-card {
    padding: 18px;
  }

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

  .chatbot {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .chatbot-panel {
    width: 100%;
  }
}

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

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

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

  .five-up {
    grid-template-columns: 1fr;
  }

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

.shop-page .section {
  padding-top: 88px;
}

.shop-hero {
  color: var(--text);
  overflow: hidden;
  padding-bottom: 60px;
}

.shop-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: start;
}

.shop-hero-copy h1 {
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  line-height: 0.98;
  margin-top: 18px;
  max-width: 11ch;
}

.shop-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.shop-stat {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.shop-stat strong {
  display: block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.4rem;
}

.shop-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.shop-hero-panel {
  border-radius: 30px;
  padding: 22px;
}

.shop-hero-panel h2 {
  margin-top: 10px;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1.15;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.shop-category-card {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.shop-category-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.68);
}

.shop-category-card strong {
  display: block;
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.shop-filter {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(13, 27, 43, 0.12);
  background: #fff;
  color: #274058;
}

.shop-filter.active {
  background: linear-gradient(135deg, var(--cyan), var(--emerald));
  color: #07111d;
  border-color: transparent;
}

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

.product-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(13, 27, 43, 0.08);
  box-shadow: 0 18px 45px rgba(9, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(6, 24, 44, 0.05), rgba(6, 24, 44, 0.02));
}

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #57728d;
}

.product-body h3 {
  color: #081527;
  font-size: 1.08rem;
  line-height: 1.35;
}

.product-body p {
  color: #5f7185;
  line-height: 1.68;
  font-size: 0.95rem;
}

.product-foot {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-foot strong {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.15rem;
  color: #081527;
}

.product-foot a {
  color: #0b5279;
  font-weight: 800;
  font-size: 0.9rem;
}

.shop-info-section {
  background: linear-gradient(180deg, #eef3f8 0%, #f5f8fc 100%);
}

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

.shop-info-card {
  border-radius: 26px;
  padding: 24px;
  color: #fff;
}

.shop-info-card h3 {
  margin-top: 12px;
  color: #fff;
  font-size: 1.2rem;
}

.shop-info-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

@media (max-width: 1160px) {
  .shop-hero-grid,
  .product-grid,
  .shop-info-grid {
    grid-template-columns: 1fr;
  }

  .shop-stat-row,
  .shop-category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .shop-stat-row,
  .shop-category-grid {
    grid-template-columns: 1fr;
  }

  .product-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}
