/* ==========================================================================
   RED HOT STAR — Travel & Tours
   Design system: crimson/maroon brand, warm gold accent, ink text, cream base
   Fonts: Plus Jakarta Sans (display) + Inter (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --brand-900: #4a0808;
  --brand-800: #6e0d10;
  --brand-700: #8a1015;
  --brand-600: #b01218;
  --brand-500: #d11a22;   /* primary red */
  --brand-400: #e8434a;
  --brand-100: #fde8e9;

  --gold-600: #c8821a;
  --gold-500: #f0a521;    /* accent gold */
  --gold-100: #fdf1d8;

  --ink-900: #1b1418;     /* near-black warm */
  --ink-700: #3a3036;
  --ink-500: #6b5f66;
  --ink-400: #8c828a;

  --cream: #fbf6f2;       /* page background */
  --surface: #ffffff;
  --surface-2: #fcf1ea;
  --border: #efe3da;
  --border-strong: #e2d2c6;

  --success: #1d8a52;
  --danger: #d11a22;

  /* Roles */
  --color-primary: var(--brand-600);
  --color-accent: var(--gold-500);
  --bg: var(--cream);
  --fg: var(--ink-900);
  --muted: var(--ink-500);

  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Shape & depth */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(27,20,24,.06), 0 2px 6px rgba(27,20,24,.05);
  --shadow-md: 0 8px 24px rgba(27,20,24,.08);
  --shadow-lg: 0 24px 60px rgba(74,8,8,.16);
  --shadow-brand: 0 14px 30px rgba(176,18,24,.28);

  --container: 1200px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--ink-900); letter-spacing: -.01em; }

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(56px, 8vw, 100px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }
.hide-mobile { display: initial; }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-600);
  background: var(--brand-100); padding: 7px 14px; border-radius: var(--r-pill);
}
.eyebrow i { font-size: .9rem; color: var(--gold-600); }
.sec-head { max-width: 640px; }
.sec-head.center { margin-inline: auto; }
.sec-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-top: 16px; }
.sec-title .accent { color: var(--brand-600); }
.sec-sub { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: .96rem;
  padding: 13px 26px; border-radius: var(--r-pill); cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn i { font-size: 1.05em; }
.btn--primary { background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(176,18,24,.36); }
.btn--gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #2a1a02; box-shadow: 0 12px 26px rgba(200,130,26,.32); }
.btn--gold:hover { transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--outline { background: var(--surface); color: var(--brand-700); border: 1.5px solid var(--border-strong); }
.btn--outline:hover { border-color: var(--brand-500); color: var(--brand-600); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--brand-700); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--sm { padding: 9px 18px; font-size: .85rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink-900); color: #e9dfe2; font-size: .85rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-block: 9px; gap: 16px; }
.topbar a { color: #e9dfe2; transition: color .2s; }
.topbar a:hover { color: var(--gold-500); }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span, .topbar-info a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-info i { color: var(--gold-500); }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social i { font-size: 1rem; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,246,242,.86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow .25s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.94); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; }
.nav-logo img { height: 42px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu > li > a { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; font-family: var(--font-display); font-weight: 600; font-size: .94rem; color: var(--ink-700); padding: 10px 13px; border-radius: var(--r-sm); transition: color .2s, background .2s; }
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--brand-600); background: var(--brand-100); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; font-size: 1.7rem; color: var(--ink-900); padding: 4px; }
.nav-close { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(40,5,6,.86) 0%, rgba(74,8,8,.6) 45%, rgba(27,20,24,.25) 100%); }
.hero__inner { padding-block: clamp(60px, 10vw, 120px); max-width: 720px; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); padding: 8px 16px; border-radius: var(--r-pill); font-weight: 600; font-size: .85rem; backdrop-filter: blur(6px); }
.hero__badge i { color: var(--gold-500); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 6vw, 4.3rem); font-weight: 800; line-height: 1.05; margin-top: 22px; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--gold-500); }
.hero p { font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,.9); margin-top: 20px; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats { display: flex; gap: 38px; flex-wrap: wrap; margin-top: 48px; }
.hero__stat .n { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #fff; }
.hero__stat .n span { color: var(--gold-500); }
.hero__stat .l { font-size: .86rem; color: rgba(255,255,255,.8); }

/* ---------- Product hero (brand gradient, split layout) ---------- */
.hero--product { min-height: auto; background: radial-gradient(120% 120% at 80% 0%, #6e0d10 0%, #4a0808 55%, #2c0606 100%); }
.hero--product::after { background: none; }
.hero--product .container { padding-block: clamp(40px, 6vw, 76px); width: 100%; }
.hero-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.hero--product .hero__inner { padding-block: 0; max-width: none; }
.hero__product { position: relative; }
.hero__product::before { content: ""; position: absolute; inset: 6% 6% 6% 6%; background: radial-gradient(circle, rgba(240,165,33,.28), transparent 65%); filter: blur(20px); }
.hero__product img { position: relative; width: 100%; max-width: 460px; margin-inline: auto; aspect-ratio: 1/1; object-fit: contain; background: #fff; border-radius: var(--r-xl); padding: 22px; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
/* poster variant: portrait marketing image, no white card */
.hero__product--poster img { aspect-ratio: auto; object-fit: contain; background: none; padding: 0; max-width: 440px; border-radius: var(--r-lg); box-shadow: 0 30px 70px rgba(0,0,0,.45); }

/* ---------- Hero trust badge ---------- */
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.hero-trust .rate { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: 9px 16px; border-radius: var(--r-pill); backdrop-filter: blur(6px); }
.hero-trust .rate .stars { color: var(--gold-500); letter-spacing: 1px; }
.hero-trust .rate b { font-family: var(--font-display); font-weight: 800; }
.hero-trust .avatars { display: flex; align-items: center; }
.hero-trust .avatars span { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; margin-left: -12px; background: linear-gradient(135deg, var(--brand-400), var(--brand-700)); display: grid; place-items: center; color: #fff; font-size: .82rem; font-weight: 700; }
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust .who { font-size: .85rem; color: rgba(255,255,255,.85); line-height: 1.3; }
.hero-trust .who b { color: #fff; }

/* ---------- Trusted-by sectors ---------- */
.sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 28px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.sector:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--brand-400); }
.sector__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--brand-100); color: var(--brand-600); display: grid; place-items: center; font-size: 1.7rem; transition: background .25s, color .25s; }
.sector:hover .sector__icon { background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); color: #fff; }
.sector h4 { font-size: 1.04rem; }
.sector p { font-size: .84rem; color: var(--muted); }

/* ---------- System diagram band ---------- */
.diagram-band { background: linear-gradient(180deg, #fff, var(--surface-2)); border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(20px, 3vw, 36px); box-shadow: var(--shadow-sm); }
.diagram-band img { width: 100%; height: auto; border-radius: var(--r-lg); }

/* ---------- Count-up animation helper ---------- */
.counter { font-variant-numeric: tabular-nums; }

/* ---------- Hero product float ---------- */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero__product img { animation: floaty 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero__product img { animation: none; } }

/* ---------- Trust strip ---------- */
.trust-strip { gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 18px; box-shadow: var(--shadow-sm); }
.trust-item > i { font-size: 1.7rem; color: var(--brand-600); flex-shrink: 0; }
.trust-item h4 { font-size: 1rem; }
.trust-item p { font-size: .82rem; color: var(--muted); }

/* ---------- Search / booking bar ---------- */
.searchbar { background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 10px; display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 6px; margin-top: -44px; position: relative; z-index: 5; }
.searchbar__field { padding: 12px 16px; border-radius: var(--r-md); transition: background .2s; }
.searchbar__field:hover { background: var(--surface-2); }
.searchbar__field label { display: flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-600); }
.searchbar__field label i { color: var(--gold-600); }
.searchbar__field input, .searchbar__field select { width: 100%; border: none; background: transparent; padding: 6px 0 0; color: var(--ink-900); font-weight: 600; font-size: .96rem; outline: none; }
.searchbar__field + .searchbar__field { border-left: 1px solid var(--border); }
.searchbar .btn { border-radius: var(--r-md); height: 100%; padding-inline: 26px; }

/* ---------- Cards: package / tour ---------- */
.card { background: var(--surface); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform .28s var(--ease), box-shadow .28s var(--ease); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__tag { position: absolute; top: 14px; left: 14px; background: var(--brand-600); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); }
.card__tag--gold { background: var(--gold-500); color: #2a1a02; }
.card__fav { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--brand-600); display: grid; place-items: center; font-size: 1.05rem; box-shadow: var(--shadow-sm); transition: background .2s, color .2s; }
.card__fav:hover { background: var(--brand-600); color: #fff; }
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__loc { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--muted); }
.card__loc i { color: var(--brand-500); }
.card__title { font-size: 1.18rem; }
.card__title a:hover { color: var(--brand-600); }
.card__meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .85rem; color: var(--ink-700); padding-block: 4px; }
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__meta i { color: var(--gold-600); }
.rating { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; font-size: .85rem; }
.rating i { color: var(--gold-500); }
.rating .count { color: var(--muted); font-weight: 400; }
.card__foot { margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--border-strong); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price .from { font-size: .76rem; color: var(--muted); display: block; }
.price .amount { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--brand-700); }
.price .amount small { font-weight: 500; font-size: .8rem; color: var(--muted); }
.price .old { text-decoration: line-through; color: var(--ink-400); font-size: .85rem; font-weight: 500; }

/* ---------- Product card (electronics) ---------- */
.product-card__media { aspect-ratio: 3/4; background: #ffffff; display: block; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__desc { color: var(--muted); font-size: .9rem; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__loc i.bi-tag-fill { color: var(--gold-600); }

/* ---------- Category tile ---------- */
.cat-tile { display: flex; align-items: center; gap: 16px; padding: 20px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; }
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-400); }
.cat-tile__icon { width: 56px; height: 56px; flex-shrink: 0; border-radius: var(--r-md); display: grid; place-items: center; font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); box-shadow: var(--shadow-brand); }
.cat-tile h4 { font-size: 1.08rem; }
.cat-tile span { font-size: .85rem; color: var(--muted); }
.cat-tile__arrow { margin-left: auto; color: var(--brand-500); transition: transform .2s; }
.cat-tile:hover .cat-tile__arrow { transform: translateX(4px); }

/* ---------- Product gallery (details page) ---------- */
.gallery__main { aspect-ratio: 4/5; background: #ffffff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.gallery__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery__thumb { width: 78px; height: 78px; border-radius: var(--r-md); border: 2px solid var(--border); background: #fff; overflow: hidden; padding: 0; cursor: pointer; transition: border-color .2s; }
.gallery__thumb.active, .gallery__thumb:hover { border-color: var(--brand-500); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ---------- Spec table ---------- */
.spec-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.spec-table tr:nth-child(odd) { background: var(--surface-2); }
.spec-table th, .spec-table td { text-align: left; padding: 12px 16px; font-size: .94rem; vertical-align: top; }
.spec-table th { width: 42%; color: var(--ink-700); font-family: var(--font-display); font-weight: 600; }
.spec-table td { color: var(--ink-900); }

/* ---------- Stock badge ---------- */
.stock { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .9rem; }
.stock--in { color: var(--success); }
.stock--out { color: var(--danger); }

/* ---------- Destination tile ---------- */
.dest { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm); }
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,20,24,.82) 0%, rgba(27,20,24,.1) 55%, transparent 100%); }
.dest:hover img { transform: scale(1.08); }
.dest__body { position: relative; z-index: 1; padding: 22px; width: 100%; }
.dest__count { font-size: .8rem; color: rgba(255,255,255,.85); }
.dest__name { color: #fff; font-size: 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dest__name i { width: 36px; height: 36px; background: rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; font-size: 1rem; transition: background .2s, transform .2s; }
.dest:hover .dest__name i { background: var(--brand-600); transform: translateX(3px); }
.dest--wide { aspect-ratio: auto; }

/* ---------- Activity card ---------- */
.activity { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1/1; color: #fff; display: flex; align-items: flex-end; }
.activity img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.activity::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(74,8,8,.85), transparent 60%); }
.activity:hover img { transform: scale(1.08); }
.activity__body { position: relative; z-index: 1; padding: 20px; }
.activity__body h4 { color: #fff; font-size: 1.1rem; }
.activity__body span { font-size: .82rem; color: rgba(255,255,255,.85); }

/* ---------- Feature / why-choose ---------- */
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brand-400); }
.feature__icon { width: 60px; height: 60px; border-radius: var(--r-md); display: grid; place-items: center; font-size: 1.6rem; color: #fff; background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); box-shadow: var(--shadow-brand); margin-bottom: 18px; }
.feature--gold .feature__icon { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #2a1a02; box-shadow: 0 12px 26px rgba(200,130,26,.3); }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* ---------- Step / process ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 14px; }
.step__num { width: 54px; height: 54px; border-radius: 50%; background: var(--brand-100); color: var(--brand-600); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; margin-bottom: 16px; }
.step h3 { font-size: 1.12rem; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; }
.split__media .badge-float { position: absolute; background: var(--surface); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
.split__media .badge-float i { font-size: 1.8rem; color: var(--gold-500); }
.split__media .badge-float .n { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.split__media .badge-float .l { font-size: .8rem; color: var(--muted); }
.checklist { display: grid; gap: 14px; margin-top: 24px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: .98rem; font-family: var(--font-body); color: var(--ink-700); }
.checklist i { color: var(--success); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
/* Product Key Features — uniform font, bold coloured label before the colon */
.checklist--features li { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--ink-700); }
.checklist--features .feat-label { font-weight: 700; color: var(--brand-700); }

/* ---------- Stat strip ---------- */
.statstrip { background: linear-gradient(135deg, var(--brand-700), var(--brand-900)); color: #fff; border-radius: var(--r-xl); padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; overflow: hidden; }
.statstrip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 15%, rgba(255,255,255,.14), transparent 42%), radial-gradient(circle at 85% 90%, rgba(240,165,33,.18), transparent 45%); }
.statstrip .stat { position: relative; }
.statstrip .stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); }
.statstrip .stat .n span { color: var(--gold-500); }
.statstrip .stat .l { color: rgba(255,255,255,.82); font-size: .92rem; margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testi { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.testi__stars { color: var(--gold-500); margin-bottom: 14px; }
.testi p { font-size: 1.02rem; color: var(--ink-700); }
.testi__author { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.testi__author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi__author .name { font-family: var(--font-display); font-weight: 700; }
.testi__author .role { font-size: .85rem; color: var(--muted); }

/* ---------- Blog card ---------- */
.post__media { aspect-ratio: 16/10; border-radius: var(--r-md); overflow: hidden; margin-bottom: 16px; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post:hover .post__media img { transform: scale(1.06); }
.post__date { font-size: .8rem; color: var(--brand-600); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.post h3 { font-size: 1.15rem; margin: 8px 0; }
.post h3 a:hover { color: var(--brand-600); }
.post .more { font-weight: 600; color: var(--brand-600); font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; color: #fff; padding: clamp(40px, 6vw, 72px); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(74,8,8,.92), rgba(176,18,24,.7)); }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 12px; max-width: 560px; }

/* ---------- Newsletter ---------- */
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin-top: 26px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border-radius: var(--r-pill); border: none; outline: none; color: var(--ink-900); }

/* ---------- Page header (inner) ---------- */
.pagehead { position: relative; color: #fff; padding-block: clamp(64px, 9vw, 120px); overflow: hidden; }
.pagehead img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.pagehead::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(40,5,6,.9), rgba(74,8,8,.6)); }
.pagehead h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
.breadcrumb { display: flex; gap: 10px; align-items: center; margin-top: 14px; font-size: .92rem; color: rgba(255,255,255,.82); }
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb i { font-size: .75rem; opacity: .7; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink-700); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border-strong); border-radius: var(--r-md);
  background: var(--surface); color: var(--ink-900); outline: none; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-500); box-shadow: 0 0 0 4px var(--brand-100); }
.field textarea { resize: vertical; min-height: 130px; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.field--error input, .field--error textarea { border-color: var(--danger); }
.field .err { color: var(--danger); font-size: .82rem; margin-top: 6px; }

/* ---------- Alert ---------- */
.alert { padding: 14px 18px; border-radius: var(--r-md); font-size: .94rem; display: flex; align-items: flex-start; gap: 10px; }
.alert i { font-size: 1.2rem; margin-top: 1px; }
.alert--success { background: #e6f6ee; color: #14613a; border: 1px solid #b7e6cd; }
.alert--error { background: var(--brand-100); color: var(--brand-800); border: 1px solid #f5c9cb; }

/* ---------- Info card (contact) ---------- */
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); }
.info-card__icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--r-md); background: var(--brand-100); color: var(--brand-600); display: grid; place-items: center; font-size: 1.3rem; }
.info-card h4 { font-size: 1.02rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: .94rem; }
.info-card a:hover { color: var(--brand-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #c9bdc2; padding-top: clamp(56px, 7vw, 88px); margin-top: 0; }
.site-footer a { color: #c9bdc2; transition: color .2s; }
.site-footer a:hover { color: var(--gold-500); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: 40px; margin-bottom: 18px; }
.footer-brand p { font-size: .94rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1.05rem; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--brand-600); color: #fff; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col ul a { font-size: .94rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul a i { font-size: .7rem; color: var(--brand-500); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .94rem; }
.footer-contact i { color: var(--gold-500); font-size: 1.1rem; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; }
.footer-bottom .links { display: flex; gap: 22px; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--border); border: none; }
.pill-tabs { display: inline-flex; gap: 6px; background: var(--surface); border: 1px solid var(--border); padding: 6px; border-radius: var(--r-pill); flex-wrap: wrap; }
.pill-tabs a { padding: 9px 18px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink-700); transition: background .2s, color .2s; }
.pill-tabs a.active, .pill-tabs a:hover { background: var(--brand-600); color: #fff; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 3rem; color: var(--border-strong); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav backdrop ---------- */
.nav-backdrop { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .statstrip { grid-template-columns: repeat(2, 1fr); }
  .searchbar { grid-template-columns: 1fr 1fr; }
  .searchbar__field + .searchbar__field { border-left: none; }
  .searchbar .btn { grid-column: span 2; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .hide-mobile { display: none !important; }
  .nav-logo img { height: 34px; }
  .nav { padding-block: 10px; gap: 12px; }
  /* backdrop-filter on the header creates a containing block that breaks the fixed slide-in menu — disable it on mobile.
     z-index must exceed the backdrop (150) so the fixed menu (inside the header) sits above it and its links stay tappable. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(251,246,242,.98); z-index: 210; }
  .nav-menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 340px); z-index: 200;
    background: var(--surface); flex-direction: column; align-items: stretch; gap: 4px;
    padding: 80px 22px 30px; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .3s var(--ease);
  }
  .nav-menu.open { transform: none; }
  .nav-menu > li > a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-close { display: block; position: absolute; top: 20px; right: 20px; font-size: 1.9rem; color: var(--ink-900); }
  .nav-backdrop.show { display: block; position: fixed; inset: 0; background: rgba(27,20,24,.5); z-index: 150; }
  .split { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .hero__product { order: -1; }
  .hero__product img { max-width: 320px; }
  .topbar-info { gap: 16px; }
}
@media (max-width: 640px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .statstrip { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 28px 20px; }
  .searchbar { grid-template-columns: 1fr; margin-top: -20px; }
  .searchbar .btn { grid-column: 1; }
  .searchbar__field + .searchbar__field { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero__stats { gap: 24px; }
  .topbar-info { display: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
  .gallery__thumb { width: 64px; height: 64px; }
  .sectors { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .diagram-band { padding: 12px; }
  /* Category filter: horizontal-scroll row instead of a wrapping pill blob */
  .pill-tabs { display: flex; flex-wrap: nowrap; overflow-x: auto; max-width: 100%; width: 100%; border-radius: var(--r-md); justify-content: flex-start; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .pill-tabs::-webkit-scrollbar { display: none; }
  .pill-tabs a { flex: 0 0 auto; }
}
