/* ==========================================================================
   Pawtrica — Wholesale Distribution
   Style: Professional B2B, deep navy + warm orange accent
   ========================================================================== */

:root {
  --navy-950: #081522;
  --navy-900: #0b1b2b;
  --navy-800: #102a43;
  --navy-700: #243b53;
  --navy-600: #334e68;
  --navy-500: #486581;
  --slate-400: #627d98;
  --slate-300: #829ab1;
  --slate-200: #bcccdc;
  --slate-100: #d9e2ec;
  --slate-50: #f0f4f8;

  --accent: #e8610c;
  --accent-dark: #c94f06;
  --accent-soft: #fdf1e7;
  --accent-glow: rgba(232, 97, 12, 0.16);

  --white: #ffffff;
  --text: #102a43;
  --muted: #627d98;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(16, 42, 67, 0.06), 0 1px 3px rgba(16, 42, 67, 0.1);
  --shadow-md: 0 4px 12px rgba(16, 42, 67, 0.08), 0 2px 4px rgba(16, 42, 67, 0.06);
  --shadow-lg: 0 12px 32px rgba(16, 42, 67, 0.14), 0 4px 8px rgba(16, 42, 67, 0.08);

  --font-heading: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --header-h: 76px;
}

/* ---------- Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
  list-style: none;
}

a {
  color: var(--navy-800);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip-to-content link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: none;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }

p {
  color: var(--navy-700);
}

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 880px;
}

.section {
  padding: 84px 0;
}

.section--tint {
  background: var(--slate-50);
}

.section--navy {
  background: var(--navy-900);
}

.section--navy .section-head h2 {
  color: #fff;
}

.section--navy .section-head .lede {
  color: var(--slate-300);
}

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

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.lede {
  font-size: 1.1rem;
  color: var(--slate-400);
  margin-top: 14px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 6px rgba(232, 97, 12, 0.28);
}

.btn--primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232, 97, 12, 0.32);
}

.btn--outline {
  border-color: var(--navy-700);
  color: var(--navy-800);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--accent);
  padding-left: 0;
  padding-right: 0;
  background: transparent;
}

.btn--ghost:hover {
  color: var(--accent-dark);
}

.btn--block {
  width: 100%;
}

.btn .icon-arrow {
  transition: transform 0.18s ease;
}

.btn:hover .icon-arrow {
  transform: translateX(3px);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-100);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand__name .paw {
  color: var(--accent);
}

.brand__name .trica {
  color: var(--navy-900);
}

.brand__tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-top: 2px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-700);
}

.nav__link:hover {
  color: var(--accent);
  background: var(--slate-50);
}

.nav__link.is-active {
  color: var(--navy-900);
  background: var(--slate-100);
}

.nav__cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 85% 10%, rgba(232, 97, 12, 0.22), transparent 60%),
    radial-gradient(700px 420px at 5% 100%, rgba(72, 101, 129, 0.35), transparent 55%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0 88px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-200);
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ecf8e;
}

.hero h1 {
  color: #fff;
}

.hero h1 .accent-word {
  color: var(--accent);
}

.hero__sub {
  margin-top: 20px;
  max-width: 560px;
  font-size: 1.13rem;
  color: var(--slate-200);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__stat .stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.hero__stat .stat-num em {
  font-style: normal;
  color: var(--accent);
}

.hero__stat .stat-label {
  font-size: 0.85rem;
  color: var(--slate-300);
}

.hero__visual {
  position: relative;
}

.hero__card {
  position: relative;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hero__card-head h3 {
  color: #fff;
  font-size: 1rem;
}

.hero__card-head .pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(232, 97, 12, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
}

.hero__rows {
  display: grid;
  gap: 10px;
}

.hero__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__row-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy-700);
}

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

.hero__row-meta {
  flex: 1;
  min-width: 0;
}

.hero__row-meta .name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
}

.hero__row-meta .qty {
  font-size: 0.8rem;
  color: var(--slate-300);
}

.hero__row .price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  text-align: right;
}

.hero__row .price small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--slate-400);
}

.hero__float {
  position: absolute;
  right: -18px;
  top: -22px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
}

.hero__float .ship-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.hero__float strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  display: block;
  line-height: 1.25;
}

.hero__float span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- Logos / clients ---------- */

.logos {
  border-bottom: 1px solid var(--slate-100);
}

.logos__inner {
  padding: 28px 0;
}

.logos__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 20px;
}

.logos__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 42px;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate-300);
  letter-spacing: -0.01em;
  opacity: 0.85;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.logo-item:hover {
  color: var(--navy-700);
  opacity: 1;
}

.logo-item svg {
  width: 22px;
  height: 22px;
}

/* ---------- Feature cards ---------- */

.grid {
  display: grid;
  gap: 28px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--slate-200);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- Category cards ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cat-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.cat-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cat-card:hover .cat-card__img img {
  transform: scale(1.06);
}

.cat-card__body {
  padding: 20px 22px 24px;
  color: #fff;
}

.cat-card__body h3 {
  color: #fff;
  margin-bottom: 6px;
}

.cat-card__body p {
  font-size: 0.88rem;
  color: var(--slate-200);
  margin-bottom: 14px;
}

.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.cat-card__link svg {
  transition: transform 0.18s ease;
}

.cat-card:hover .cat-card__link svg {
  transform: translateX(3px);
}

/* ---------- Why choose ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.why-item:hover {
  border-color: rgba(232, 97, 12, 0.45);
  transform: translateY(-3px);
}

.why-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(232, 97, 12, 0.3);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.why-item__icon svg {
  width: 24px;
  height: 24px;
}

.why-item h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.why-item p {
  color: var(--slate-300);
  font-size: 0.93rem;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--accent-dark), var(--accent));
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-lg);
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}

.cta-banner .btn--light {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.cta-banner .btn--light:hover {
  background: var(--navy-900);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Page hero (inner) ---------- */

.page-hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 420px at 90% 0%, rgba(232, 97, 12, 0.2), transparent 55%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  padding: 68px 0 60px;
  max-width: 860px;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--slate-200);
  font-size: 1.1rem;
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--slate-300);
}

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

.breadcrumb .sep {
  color: var(--slate-400);
}

.breadcrumb .current {
  color: #fff;
}

/* ---------- Prose / legal ---------- */

.prose {
  max-width: 820px;
  margin: 0 auto;
  color: var(--navy-700);
}

.prose h2 {
  margin: 44px 0 16px;
  font-size: 1.5rem;
}

.prose h3 {
  margin: 30px 0 12px;
}

.prose p,
.prose li {
  color: var(--navy-700);
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.prose ul {
  margin-bottom: 18px;
  padding-left: 6px;
}

.prose ul li {
  padding-left: 26px;
  position: relative;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--accent-dark);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
}

.prose th,
.prose td {
  border: 1px solid var(--slate-100);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--slate-50);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy-900);
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 14px 18px;
  background: var(--slate-50);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 8px;
}

/* ---------- Stats band ---------- */

.stats-band {
  background: var(--navy-900);
  color: #fff;
  padding: 64px 0;
}

.stats-band .grid--4 {
  gap: 24px;
}

.stat-block {
  text-align: center;
  padding: 18px;
}

.stat-block .num {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
}

.stat-block .num em {
  font-style: normal;
  color: var(--accent);
}

.stat-block .label {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--slate-300);
}

/* ---------- Products / catalog ---------- */

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  padding: 18px 22px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
}

.catalog-toolbar__count {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}

.catalog-toolbar__count strong {
  color: var(--navy-900);
}

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

.filter-chip {
  padding: 9px 16px;
  border: 1px solid var(--slate-200);
  background: #fff;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-700);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.filter-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-chip[aria-pressed="true"] {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

.sort-select {
  padding: 9px 36px 9px 14px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.9rem;
  color: var(--navy-800);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23334e68' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card__img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--slate-50);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
}

.product-card__tag--new {
  background: var(--accent);
}

.product-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.product-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card h3 {
  font-size: 1.02rem;
  line-height: 1.35;
}

.product-card__desc {
  font-size: 0.87rem;
  color: var(--muted);
  flex: 1;
}

.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--slate-50);
  padding-top: 14px;
  margin-top: 4px;
}

.product-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.product-card__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 0.84rem;
}

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

/* ---------- Pricing ---------- */

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 40px;
}

.pricing-toggle button {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background 0.18s ease, color 0.18s ease;
}

.pricing-toggle button[aria-pressed="true"] {
  background: var(--navy-900);
  color: #fff;
}

.price-tier {
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-tier--featured {
  border: 2px solid var(--accent);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.price-tier--featured .tier__badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.tier__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-900);
}

.tier__price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-900);
  margin: 10px 0 4px;
}

.tier__price em {
  font-style: normal;
  color: var(--accent);
}

.tier__per {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.tier__list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
  flex: 1;
}

.tier__list li {
  display: flex;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--navy-700);
}

.tier__list .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.tier__list .check svg {
  width: 12px;
  height: 12px;
}

/* Price table */
.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 720px;
}

.price-table th,
.price-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--slate-100);
}

.price-table thead th {
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.price-table tbody tr {
  transition: background 0.15s ease;
}

.price-table tbody tr:hover {
  background: var(--slate-50);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table .price-cols {
  color: var(--navy-900);
  font-weight: 600;
  font-family: var(--font-heading);
}

.price-table .row-new {
  background: var(--accent-soft);
}

.price-table .row-new:hover {
  background: #fbe3cf;
}

.price-table .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: #ffe9d6;
  padding: 3px 9px;
  border-radius: 999px;
}

/* ---------- Forms ---------- */

.form-card {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.form-field label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
}

.form-field label .req {
  color: var(--accent);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--navy-900);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--slate-300);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field .hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-field .error-msg {
  display: none;
  font-size: 0.82rem;
  color: #c0392b;
  font-weight: 500;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #d84315;
  box-shadow: 0 0 0 3px rgba(216, 67, 21, 0.12);
}

.form-field.is-invalid .error-msg {
  display: block;
}

.form-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  grid-column: 1 / -1;
  margin-top: 6px;
}

.form-note {
  font-size: 0.83rem;
  color: var(--muted);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show {
  display: block;
}

.form-success .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.form-success .icon svg {
  width: 30px;
  height: 30px;
}

.form-success h3 {
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hidden-form {
  display: none;
}

.hidden-form.show {
  display: block;
}

/* ---------- FAQ ---------- */

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: var(--slate-200);
}

.faq-item.is-open {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy-900);
}

.faq-item__q:hover {
  color: var(--accent);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--slate-50);
  color: var(--slate-400);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}

.faq-item.is-open .faq-item__icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__a-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.97rem;
}

.faq-item__a-inner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--slate-100);
}

.info-card:last-child {
  border-bottom: none;
}

.info-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.info-card__icon svg {
  width: 22px;
  height: 22px;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-card p,
.info-card a {
  font-size: 0.95rem;
  color: var(--muted);
}

.info-card a:hover {
  color: var(--accent);
}

.map-placeholder {
  margin-top: 28px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--slate-100);
  background: var(--navy-800);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  color: var(--slate-200);
}

.map-placeholder svg {
  width: 44px;
  height: 44px;
  opacity: 0.55;
  margin-bottom: 8px;
}

.map-placeholder .pin-caption {
  font-size: 0.9rem;
  color: var(--slate-200);
}

/* ---------- Timeline (about) ---------- */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.mission-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mission-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
}

.value-card .card__icon {
  margin-left: auto;
  margin-right: auto;
}

.value-card h3 {
  font-size: 1.1rem;
}

/* ---------- 404 ---------- */

.error-page {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  background:
    radial-gradient(800px 420px at 85% 0%, rgba(232, 97, 12, 0.18), transparent 55%),
    var(--navy-900);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 11rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.28);
}

.error-page__code span {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.error-page h1 {
  color: #fff;
  margin: 18px 0 12px;
}

.error-page p {
  color: var(--slate-200);
  max-width: 460px;
  margin: 0 auto 30px;
}

.error-page .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 34px;
  font-size: 0.92rem;
}

.error-page .nav-links a {
  color: var(--slate-300);
}

.error-page .nav-links a:hover {
  color: #fff;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-950);
  color: var(--slate-300);
  font-size: 0.93rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding: 68px 0 52px;
}

.footer-brand .brand__name .trica {
  color: #fff;
}

.footer-brand .brand__tag {
  color: var(--slate-400);
}

.footer-brand p {
  color: var(--slate-300);
  margin-top: 16px;
  max-width: 320px;
  font-size: 0.92rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--slate-300);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-bottom p {
  color: var(--slate-400);
  font-size: 0.85rem;
}

.footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom .legal-links a {
  color: var(--slate-300);
  font-size: 0.85rem;
}

.footer-bottom .legal-links a:hover {
  color: var(--accent);
}

/* ---------- Reveal animations ---------- */

/* Only hide/offset when JS is active (html.js), so content is always
   readable with JavaScript disabled. */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-18 { margin-bottom: 18px; }
.mb-40 { margin-bottom: 40px; }

.note-muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-card--center {
  max-width: 820px;
  margin: 0 auto;
}

/* Checked list used on the About page */
.check-list {
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--navy-700);
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

/* Map placeholder caption */
.map-placeholder__inner {
  text-align: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 560px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: repeat(3, 1fr); }
}

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

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: var(--shadow-lg);
    padding: 18px 24px 24px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    padding: 14px 12px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav__cta {
    margin: 12px 0 0;
  }

  .nav__cta .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 1fr; }
  .hero__float { right: 6px; top: -16px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 42px 28px; }
  .cta-banner .btn--light { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-row .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .form-card { padding: 26px 20px; }
  .catalog-toolbar { flex-direction: column; align-items: stretch; }
  .filters { justify-content: center; }
  .sort-wrap { display: flex; }
  .sort-wrap .sort-select { flex: 1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero { text-align: left; }
  .hero__cta .btn { width: 100%; }
  .logos__row { gap: 16px 24px; }
  .price-table-wrap { font-size: 0.88rem; }
}
