/* ============================================================
   OSMOCARE — Complete Light Design System v5
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Montserrat:wght@600;700;800;900&display=swap');

:root {
  /* Colors */
  --ink:        #0d1117;
  --ink-2:      #24292f;
  --ink-3:      #57606a;
  --muted:      #8c959f;
  --teal:       #0ea5a0;
  --teal-light: #e6f6f6;
  --teal-mid:   #99dedd;
  --white:      #ffffff;
  --gray-50:    #f6f8fa;
  --gray-100:   #eaeef2;
  --gray-200:   #d0d7de;
  --border:     #d0d7de;

  /* Category accent colors */
  --yacht-bg:   #eff6ff;
  --yacht-bdr:  #bfdbfe;
  --yacht-ico:  #1d4ed8;
  --hotel-bg:   #f0fdfa;
  --hotel-bdr:  #99f6e4;
  --hotel-ico:  #0d9488;
  --home-bg:    #fdf4ff;
  --home-bdr:   #e9d5ff;
  --home-ico:   #7c3aed;
  --pro-bg:     #fffbeb;
  --pro-bdr:    #fde68a;
  --pro-ico:    #d97706;

  /* Typography */
  --fh: 'Montserrat', sans-serif;
  --fb: 'Inter', sans-serif;

  /* Spacing */
  --r-sm:  8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(0,0,0,.05);
  --sh-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --sh-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --sh-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.04);
  --sh-xl: 0 20px 25px rgba(0,0,0,.08), 0 8px 10px rgba(0,0,0,.04);

  --t: .2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--white); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Type scale ---- */
h1, h2, h3, h4 { font-family: var(--fh); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; color: var(--ink); }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.125rem; }
p  { color: var(--ink-3); }

.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fh); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-light);
  border: 1px solid var(--teal-mid); border-radius: 50px;
  padding: 4px 12px; margin-bottom: 1rem;
}
.label-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.sec-head { margin-bottom: 56px; }
.sec-head h2 { margin-bottom: .5rem; }
.sec-head p { max-width: 52ch; color: var(--ink-3); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .65rem 1.4rem; border-radius: 8px;
  font-family: var(--fh); font-weight: 700; font-size: .78rem; letter-spacing: .04em;
  cursor: pointer; border: 1px solid transparent;
  transition: all var(--t); white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-2); box-shadow: var(--sh-md); transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { filter: brightness(1.08); box-shadow: 0 4px 12px rgba(14,165,160,.3); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink-2); background: var(--gray-50); }
.btn-buy { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-buy:hover { background: var(--ink-2); }
.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--border); box-shadow: var(--sh-xs); }
.btn-ghost:hover { background: var(--gray-50); border-color: var(--gray-200); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: var(--sh-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.logo-white { display: none; }
.logo-dark  { display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--fh); font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-3); transition: color var(--t); position: relative; padding-bottom: 2px;
}
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform var(--t); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: .6rem; }
.lang-pills { display: flex; gap: .2rem; }
.lang-pills a {
  font-family: var(--fh); font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  padding: .2rem .5rem; border-radius: 6px;
  color: var(--ink-3); border: 1px solid var(--border); transition: all var(--t);
}
.lang-pills a.active, .lang-pills a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--gray-100); padding: 1.25rem 24px 1.75rem; gap: 1rem; box-shadow: var(--sh-lg); }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--fh); font-size: .85rem; font-weight: 600; color: var(--ink-2); }

/* ============================================================
   HERO — Option B: centered, large type, grid background
   ============================================================ */
.hero {
  padding: 160px 0 100px;
  background: var(--white);
  position: relative; overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}
/* Dot grid background */
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--gray-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, black 30%, transparent 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-content { max-width: 760px; margin: 0 auto; }
.hero .label { justify-content: center; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-sub {
  font-size: 1.1rem; line-height: 1.75; color: var(--ink-3);
  max-width: 54ch; margin: 0 auto 2.25rem;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
/* Category tags */
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 2.5rem;
}
.hero-tag {
  font-family: var(--fh); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; border: 1px solid;
}
.hero-tag.yacht { background: var(--yacht-bg); border-color: var(--yacht-bdr); color: var(--yacht-ico); }
.hero-tag.hotel { background: var(--hotel-bg); border-color: var(--hotel-bdr); color: var(--hotel-ico); }
.hero-tag.home  { background: var(--home-bg);  border-color: var(--home-bdr);  color: var(--home-ico); }
.hero-tag.pro   { background: var(--pro-bg);   border-color: var(--pro-bdr);   color: var(--pro-ico); }
/* Keep old slider classes inert */
.hero-card, .hero-slide, .hero-card-bar, .slider-dots, .slide-count { display: none; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--ink); overflow: hidden; padding: 13px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 2rem; animation: scroll 28s linear infinite; }
.marquee-track span { font-family: var(--fh); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); flex-shrink: 0; }
.marquee-track .sep { color: rgba(255,255,255,.2); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cats-section { background: var(--gray-50); }
.cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.cat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px 28px 72px;
  position: relative; overflow: hidden; cursor: pointer;
  transition: all var(--t); text-decoration: none; display: block;
}
.cat-card:hover { border-color: transparent; box-shadow: var(--sh-xl); transform: translateY(-4px); }
.cat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.cat-icon svg { width: 24px; height: 24px; }
.cat-card.yacht .cat-icon  { background: var(--yacht-bg); color: var(--yacht-ico); }
.cat-card.hotel .cat-icon  { background: var(--hotel-bg); color: var(--hotel-ico); }
.cat-card.home  .cat-icon  { background: var(--home-bg);  color: var(--home-ico); }
.cat-card.professional .cat-icon { background: var(--pro-bg); color: var(--pro-ico); }
.cat-name { font-family: var(--fh); font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; position: relative; z-index: 1; }
.cat-count { font-size: .78rem; color: var(--muted); font-weight: 500; margin-bottom: 14px; position: relative; z-index: 1; }
.cat-chips { display: flex; flex-wrap: wrap; gap: 5px; position: relative; z-index: 1; }
.cat-chip {
  font-family: var(--fh); font-size: .62rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
  border: 1px solid var(--gray-200); color: var(--ink-3); background: var(--gray-50);
}
.cat-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 28px; border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1;
}
.cat-explore { font-family: var(--fh); font-size: .75rem; font-weight: 700; color: var(--ink-3); letter-spacing: .04em; }
.cat-arrow {
  width: 32px; height: 32px; border-radius: 8px; background: var(--gray-50);
  border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.cat-arrow svg { width: 14px; height: 14px; color: var(--ink); }
.cat-card:hover .cat-arrow { background: var(--ink); border-color: var(--ink); }
.cat-card:hover .cat-arrow svg { color: var(--white); }
/* Left color accent bar */
.cat-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.cat-card.yacht::before       { background: var(--yacht-ico); }
.cat-card.hotel::before       { background: var(--hotel-ico); }
.cat-card.home::before        { background: var(--home-ico); }
.cat-card.professional::before { background: var(--pro-ico); }
/* Background image — set via inline style on .cat-card element */
.cat-card[style] { background-size: cover; background-position: center; }
/* Overlay: semi-transparent white over the image to keep pastel feel */
.cat-card[style]::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.78);
  border-radius: inherit; pointer-events: none; z-index: 0;
}
/* Tighten per-card overlays to preserve their tint */
.cat-card.yacht[style]::after       { background: rgba(239,246,255,.82); }
.cat-card.hotel[style]::after       { background: rgba(240,253,250,.82); }
.cat-card.home[style]::after        { background: rgba(253,244,255,.82); }
.cat-card.professional[style]::after { background: rgba(255,251,235,.82); }
/* Keep all children above the overlay */
.cat-card > *:not(.cat-bg-img) { position: relative; z-index: 1; }
.cat-footer { z-index: 1 !important; }
.cat-bg-img { display: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; }
.about-mosaic img { width: 100%; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.about-mosaic img:first-child { grid-column: 1/-1; aspect-ratio: 16/7; }
.about-mosaic img:not(:first-child) { aspect-ratio: 4/3; }
.about-badge {
  position: absolute; bottom: -14px; right: -14px;
  background: var(--ink); color: var(--white);
  border-radius: var(--r-lg); padding: 16px 22px; text-align: center; box-shadow: var(--sh-xl);
}
.about-badge strong { display: block; font-family: var(--fh); font-size: 1.6rem; font-weight: 900; color: var(--teal); }
.about-badge span { font-size: .68rem; font-weight: 600; opacity: .55; text-transform: uppercase; letter-spacing: .1em; }
.about-text h2 { margin-bottom: .85rem; }
.about-text > p { margin-bottom: 1.25rem; }
.feat-list { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.75rem; }
.feat {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 14px 16px; background: var(--gray-50);
  border: 1px solid var(--gray-100); border-radius: var(--r-lg);
  transition: border-color var(--t);
}
.feat:hover { border-color: var(--teal-mid); }
.feat-ico {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 9px; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.feat-ico svg { width: 16px; height: 16px; }
.feat-txt strong { display: block; font-family: var(--fh); font-size: .82rem; font-weight: 700; color: var(--ink); margin-bottom: .15rem; }
.feat-txt span { font-size: .78rem; color: var(--muted); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { padding: 44px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); background: var(--white); }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .55rem; }
.trust-item span { font-family: var(--fh); font-size: .7rem; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.trust-check { width: 24px; height: 24px; border-radius: 50%; background: var(--teal-light); border: 1px solid var(--teal-mid); display: flex; align-items: center; justify-content: center; color: var(--teal); }
.trust-check svg { width: 11px; height: 11px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--ink); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 40px 40px; }
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.55); margin: 0 auto 2rem; max-width: 46ch; }
.cta-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-white:hover { background: var(--gray-50); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.25); }
.btn-outline-white:hover { background: rgba(255,255,255,.08); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--ink); color: rgba(255,255,255,.6); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding: 60px 0 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo img { height: 40px; object-fit: contain; margin-bottom: 1rem; }
.footer-desc { font-size: .83rem; line-height: 1.75; color: rgba(255,255,255,.45); max-width: 26ch; }
.fcol h5 { font-family: var(--fh); font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.1rem; }
.fcol ul { display: flex; flex-direction: column; gap: .65rem; }
.fcol ul a { font-size: .83rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.fcol ul a:hover { color: var(--teal); }
.fcontact { display: flex; flex-direction: column; gap: .85rem; }
.fci { display: flex; align-items: flex-start; gap: .6rem; font-size: .83rem; color: rgba(255,255,255,.55); }
.fci svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: .2rem; color: var(--teal); }
.footer-bar { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: .75rem; color: rgba(255,255,255,.3); }

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.page-header { padding: 120px 0 60px; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.page-header-inner { max-width: 680px; }
.breadcrumb { font-size: .78rem; color: var(--muted); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--muted); transition: color var(--t); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 .4rem; }
.page-header h1 { margin-bottom: .85rem; }
.page-header p { color: var(--ink-3); font-size: 1rem; max-width: 52ch; }

/* Products grid on category page */
.cat-products { padding: 72px 0; background: var(--white); }
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.prod-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); overflow: hidden;
  transition: all var(--t); display: flex; flex-direction: column;
}
.prod-card:hover { border-color: transparent; box-shadow: var(--sh-xl); transform: translateY(-4px); }
.prod-img {
  background: var(--gray-50); padding: 36px;
  display: flex; align-items: center; justify-content: center; min-height: 200px;
  position: relative;
}
.prod-img img { width: 140px; height: 140px; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,.12)); transition: transform .3s ease; }
.prod-card:hover .prod-img img { transform: scale(1.06) translateY(-4px); }
.prod-tag { position: absolute; top: 12px; left: 12px; font-family: var(--fh); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); background: var(--white); border: 1px solid var(--teal-mid); padding: 3px 9px; border-radius: 50px; }
.prod-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.prod-name { font-family: var(--fh); font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: .45rem; }
.prod-desc { font-size: .84rem; color: var(--ink-3); line-height: 1.6; flex: 1; margin-bottom: 1.1rem; }
.prod-btns { display: flex; gap: .5rem; }
.prod-btns .btn { flex: 1; justify-content: center; padding: .6rem .75rem; font-size: .74rem; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.detail-header { padding: 120px 0 60px; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.detail-header-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.detail-header h1 { margin-bottom: .85rem; }
.detail-header p { color: var(--ink-3); font-size: 1rem; max-width: 46ch; margin-bottom: 1.75rem; }
.detail-header-img {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 48px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; justify-content: center; min-height: 300px;
}
.detail-header-img img { max-width: 200px; filter: drop-shadow(0 16px 32px rgba(0,0,0,.12)); }
.detail-body-section { padding: 72px 0; background: var(--white); }
.detail-cols { display: grid; grid-template-columns: 3fr 2fr; gap: 52px; }
.detail-main h2 { margin-bottom: .85rem; font-size: 1.5rem; }
.detail-main p { margin-bottom: .9rem; font-size: .93rem; line-height: 1.7; }
.detail-main h3 { margin: 2rem 0 .75rem; font-size: 1rem; }
.specs { width: 100%; border-collapse: collapse; margin-top: .5rem; border-radius: var(--r); overflow: hidden; border: 1px solid var(--gray-100); }
.specs thead tr { background: var(--gray-50); }
.specs thead th { padding: .75rem 1rem; text-align: left; font-family: var(--fh); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--gray-200); }
.specs tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--t); }
.specs tbody tr:hover { background: var(--gray-50); }
.specs td { padding: .8rem 1rem; font-size: .86rem; }
.specs td:first-child { font-weight: 600; color: var(--ink); width: 42%; }
.sidebar { display: flex; flex-direction: column; gap: 12px; }
.sidebar-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 24px; }
.sidebar-card h3 { font-size: .95rem; margin-bottom: 1rem; }
.benefit { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .75rem; font-size: .83rem; color: var(--ink-3); }
.benefit-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: .42rem; }
.pdf-card { background: var(--ink); border-radius: var(--r-xl); padding: 24px; text-align: center; }
.pdf-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(14,165,160,.2); display: flex; align-items: center; justify-content: center; color: var(--teal); margin: 0 auto 1rem; }
.pdf-icon svg { width: 20px; height: 20px; }
.pdf-card h4 { color: var(--white); font-size: .9rem; margin-bottom: .4rem; }
.pdf-card p { color: rgba(255,255,255,.45); font-size: .78rem; margin-bottom: 1rem; max-width: none; }
.buy-card { background: var(--teal-light); border: 1px solid var(--teal-mid); border-radius: var(--r-xl); padding: 24px; text-align: center; }
.buy-card h4 { font-size: .9rem; margin-bottom: .4rem; color: var(--ink); }
.buy-card p { color: var(--ink-3); font-size: .78rem; margin-bottom: 1rem; max-width: none; }
.related { padding: 72px 0; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.rel-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); overflow: hidden; text-align: center; transition: all var(--t); display: block; }
.rel-card:hover { border-color: transparent; box-shadow: var(--sh-lg); transform: translateY(-3px); }
.rel-card-img { background: var(--gray-50); padding: 20px; }
.rel-card-img img { width: 72px; height: 72px; object-fit: contain; margin: 0 auto; }
.rel-card-body { padding: 14px; }
.rel-card-body h4 { font-size: .85rem; margin-bottom: .3rem; }
.rel-card-body span { font-size: .72rem; color: var(--teal); font-weight: 600; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-header { padding: 120px 0 60px; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.contact-layout { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info h2 { margin-bottom: .85rem; }
.contact-info > p { margin-bottom: 2rem; }
.cinfo { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.25rem; }
.cinfo-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.cinfo-ico svg { width: 18px; height: 18px; }
.cinfo strong { display: block; font-family: var(--fh); font-size: .78rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.cinfo span { font-size: .875rem; color: var(--ink-3); }
.form-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--sh-lg); }
.form-card h3 { margin-bottom: .4rem; }
.form-card > p { font-size: .875rem; color: var(--ink-3); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-family: var(--fh); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .4rem; }
.fg input, .fg select, .fg textarea { width: 100%; padding: .68rem .95rem; border: 1px solid var(--gray-200); border-radius: var(--r); font-family: var(--fb); font-size: .875rem; color: var(--ink); background: var(--white); transition: border-color var(--t), box-shadow var(--t); appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,165,160,.12); }
.fg textarea { resize: vertical; min-height: 120px; }
.fg.err input, .fg.err select, .fg.err textarea { border-color: #ef4444; }
.ferr { color: #ef4444; font-size: .72rem; margin-top: .25rem; }
.f-alert { padding: .85rem 1rem; border-radius: var(--r); margin-bottom: 1.25rem; font-size: .85rem; display: none; }
.f-alert.ok { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; display: block; }
.f-alert.er { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ============================================================
   CATEGORIES INDEX PAGE
   ============================================================ */
.cats-page { padding: 72px 0; background: var(--white); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-mosaic { max-width: 540px; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  section { padding: 64px 0; }
  .detail-header-grid { grid-template-columns: 1fr; }
  .detail-header-img { display: none; }
  .detail-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .cat-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .prod-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
