/* ==========================================================================
   Tusker Tees — clone stylesheet
   Design tokens sourced from the live site's CSS custom properties.
   ========================================================================== */

:root {
  --radius: 0.75rem;

  --brand-navy: #5b21b6;
  --brand-navy-deep: #3b0764;
  --brand-navy-soft: #7c3aed;
  --brand-logo-blue: #7c3aed;
  --brand-yellow: #ffffff;
  --brand-yellow-deep: #6d28d9;
  --brand-tint: #f5f3ff;

  --background: #ffffff;
  --foreground: #1e1033;
  --card: #ffffff;
  --card-foreground: #1e1033;

  --primary: #3b0764;
  --primary-foreground: #fdfdfd;
  --secondary: #f5f3ff;
  --secondary-foreground: #3b0764;
  --muted: #f5f3ff;
  --muted-foreground: #6b6178;
  --accent: #ede9fe;
  --accent-foreground: #3b0764;
  --border: #ece7f7;
  --input: #ece7f7;
  --ring: #b8a9d9;

  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-heading: "Poppins", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --container-w: 1280px;
  --shadow-sm: 0 1px 2px rgba(59, 7, 100, 0.08);
  --shadow-md: 0 8px 24px rgba(59, 7, 100, 0.12);
  --shadow-lg: 0 20px 45px rgba(59, 7, 100, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); margin: 0 0 0.5em; color: var(--brand-navy); line-height: 1.2; }
p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select { font-family: inherit; font-size: inherit; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-yellow-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand-yellow-deep);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand-yellow); color: var(--brand-navy-deep); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-yellow-deep); color: #fff; box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-navy { background: var(--brand-navy); color: #fff; }
.btn-navy:hover { background: var(--brand-navy-deep); }
.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--brand-navy-deep);
  color: #cfd8ea;
  font-size: 12.5px;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 34px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar a { color: #cfd8ea; }
.topbar strong { color: #fff; }
.topbar-socials { display: flex; align-items: center; gap: 10px; padding-right: 4px; border-right: 1px solid rgba(255,255,255,.18); }
.topbar-social-link { display: flex; align-items: center; justify-content: center; color: #cfd8ea; transition: color .2s ease, filter .2s ease; }
.topbar-social-link[aria-label="Instagram"] { color: #e1306c; }
.topbar-social-link[aria-label="WhatsApp"] { color: #25D366; }
.topbar-social-link:hover { filter: brightness(1.15); }

/* ---------- Header (liquid glass) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 32px -8px rgba(31, 12, 68, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
/* The glass blur lives on a pseudo-element (not .site-header itself) so it never
   becomes the containing block for position:fixed descendants like .main-nav —
   backdrop-filter/transform/filter on an ancestor traps fixed children inside it. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: var(--container-w);
  margin: 0 auto;
}
.header-nav-row {
  background: rgba(91, 33, 182, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 24px;
}
.header-nav-row .main-nav a { color: #dbe3f4; }
.header-nav-row .main-nav a:hover { color: var(--brand-yellow); }
.header-nav-row .btn-primary { padding: 9px 20px; font-size: 13.5px; }
.header-social { display: flex; align-items: center; gap: 8px; margin-right: 12px; }
.header-social a {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.header-social a.whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.header-social a.instagram { background: linear-gradient(45deg, #f09433, #e6683c 30%, #dc2743 55%, #bc1888); border-color: transparent; color: #fff; }
.header-social a:hover { filter: brightness(1.08); transform: translateY(-1px); }

.search-bar {
  flex: 1;
  max-width: 460px;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fbfbfd;
}
.search-bar select {
  border: none;
  border-right: 1px solid var(--border);
  background: var(--secondary);
  padding: 0 12px;
  font-size: 13px;
  color: var(--muted-foreground);
  max-width: 110px;
  height: 44px;
}
.search-bar input {
  flex: 1;
  border: none;
  background: none;
  padding: 0 14px;
  font-size: 14px;
  min-width: 0;
  height: 44px;
}
.search-bar input:focus { outline: none; }
.search-bar button {
  border: none;
  background: var(--brand-navy);
  color: #fff;
  width: 46px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.search-bar button:hover { background: var(--brand-navy-deep); }
.search-suggest {
  position: absolute;
  z-index: 60;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
}
.search-suggest a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.search-suggest a:last-child { border-bottom: none; }
.search-suggest a:hover { background: var(--brand-tint); color: var(--brand-navy); }
.search-suggest a small { font-weight: 600; font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-foreground); flex-shrink: 0; }
.search-suggest-empty { padding: 14px 16px; font-size: 13px; color: var(--muted-foreground); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name { font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: var(--brand-navy); }
.brand-text .tag { font-size: 10.5px; letter-spacing: .08em; color: var(--brand-yellow-deep); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: var(--brand-navy); }
.main-nav a:hover { color: var(--brand-logo-blue); }
.main-nav .mobile-cta { display: none; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; flex-direction: column; text-align: right; font-size: 13px; }
.header-phone .label { color: var(--muted-foreground); font-size: 11px; }
.header-phone .num { font-weight: 700; color: var(--brand-navy); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-navy);
  position: relative;
  transition: all .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Hero carousel ---------- */
.hero-carousel { position: relative; background: var(--brand-navy-deep); overflow: hidden; padding: 0; }
.carousel-track { position: relative; width: 100%; max-height: 78vh; aspect-ratio: 16/8; }
.carousel-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .6s ease; display: block;
}
.carousel-slide.active { opacity: 1; }
.carousel-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 999px; border: none; padding: 0;
  background: rgba(255,255,255,.5); cursor: pointer; transition: all .2s ease;
}
.carousel-dots button.active { width: 28px; background: var(--brand-yellow); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-navy-deep), var(--brand-navy) 55%, var(--brand-navy-soft));
  color: #fff;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  z-index: 1;
}
.hero h1 { color: #fff; font-size: clamp(32px, 4.4vw, 52px); font-weight: 700; margin-bottom: 20px; }
.hero h1 span { color: var(--brand-yellow); }
.hero p.lead { color: #c9d3e8; font-size: 17px; max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.15); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.page-hero {
  background: linear-gradient(135deg, var(--brand-navy-deep), var(--brand-navy) 60%, var(--brand-navy-soft));
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.page-hero p { color: #c9d3e8; max-width: 60ch; margin: 0 auto; font-size: 16px; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 13px; color: #9fb0d3; margin-bottom: 18px; }
.breadcrumb a { color: #cfd8ea; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Stats strip ---------- */
.stats-strip { background: transparent; color: #fff; padding: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  padding: 34px 20px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.08);
}
.stat-item:first-child { border-left: none; }
.stat-item .num { font-family: var(--font-heading); font-size: 34px; font-weight: 700; color: var(--brand-yellow); }
.stat-item .label { font-weight: 700; font-size: 14.5px; margin-top: 4px; }
.stat-item .desc { font-size: 12.5px; color: #a9b6d2; margin-top: 4px; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-head { max-width: 680px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); }
.section-head p { color: var(--muted-foreground); font-size: 16px; }
.bg-tint { background: var(--brand-tint); }
.bg-navy { background: var(--brand-navy-deep); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 26px 18px;
  text-align: center;
  transition: box-shadow .3s cubic-bezier(.2,.8,.2,1), transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--brand-yellow-deep); }
.product-card .icon-wrap {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(145deg, var(--brand-tint), #ece4fb);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--brand-logo-blue);
  transition: transform .3s ease;
}
.product-card:hover .icon-wrap { transform: scale(1.08) rotate(-3deg); }
.product-card .icon-wrap svg { width: 26px; height: 26px; }
.product-card h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin: 0; letter-spacing: -0.005em; }

/* ---------- Category grid ---------- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.category-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .3s cubic-bezier(.2,.8,.2,1), transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
}
.category-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--brand-yellow-deep); }
.category-card .cat-img { aspect-ratio: 4/3; overflow: hidden; background: var(--brand-tint); }
.category-card .cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.category-card:hover .cat-img img { transform: scale(1.06); }
.category-card .cat-body { padding: 16px 18px 20px; }
.category-card .cat-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; color: var(--brand-logo-blue); text-transform: uppercase; margin-bottom: 6px; }
.category-card h3 { font-family: var(--font-heading); font-size: 16.5px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.005em; }
.category-card p { color: var(--muted-foreground); font-size: 13px; line-height: 1.5; margin: 0; }

/* ---------- Promise / feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s cubic-bezier(.2,.8,.2,1), transform .3s cubic-bezier(.2,.8,.2,1);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card .icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(145deg, var(--brand-navy), var(--brand-navy-soft));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { color: var(--muted-foreground); font-size: 14.5px; margin: 0; }

/* ---------- Process steps ---------- */
.process-strip { display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.process-step { flex: 1; min-width: 110px; text-align: center; position: relative; padding: 0 6px; }
.process-step .num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand-navy);
  color: var(--brand-yellow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading);
  margin: 0 auto 12px;
}
.process-step .label { font-size: 13.5px; font-weight: 600; }

/* ---------- Video section ---------- */
.video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--brand-navy);
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.video-frame .play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--brand-yellow);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}

/* ---------- Info columns (fabric/printing/customization) ---------- */
.info-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.info-col { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.info-col h3 { font-size: 16px; display: flex; align-items: center; gap: 10px; }
.info-col ul { margin-top: 14px; }
.info-col li { padding: 9px 0; border-top: 1px dashed var(--border); font-size: 14.5px; }
.info-col li:first-child { border-top: none; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; font-weight: 600; font-size: 15px; color: var(--brand-navy);
}
.faq-q .plus { font-size: 20px; color: var(--brand-yellow-deep); transition: transform .2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted-foreground); font-size: 14.5px; }

/* ---------- Clients logo strip ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.logo-tile {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 16px; display: flex; align-items: center; justify-content: center; height: 84px;
}
.logo-tile img { max-height: 46px; max-width: 100%; object-fit: contain; filter: grayscale(15%); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brand-navy-deep), var(--brand-navy));
  color: #fff;
  text-align: center;
  border-radius: 24px;
  padding: 56px 32px;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #c9d3e8; max-width: 52ch; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-navy-deep); color: #b9c4dc; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 46px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-badge {
  width: 40px; height: 40px; border-radius: 10px; background: var(--brand-yellow);
  color: var(--brand-navy-deep); font-family: var(--font-heading); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.footer-brand .name { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 17px; }
.footer-brand .tag { font-size: 10px; letter-spacing: .08em; color: var(--brand-yellow); font-weight: 700; }
.site-footer p { font-size: 14px; line-height: 1.7; color: #a9b6d2; }
.site-footer h4 { color: #fff; font-size: 14.5px; margin-bottom: 16px; letter-spacing: .03em; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { font-size: 14px; color: #b9c4dc; }
.site-footer ul a:hover { color: var(--brand-yellow); }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; margin-bottom: 14px; align-items: flex-start; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--brand-yellow); color: var(--brand-navy-deep); border-color: var(--brand-yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; font-size: 13px; color: #8b98b8;
  flex-wrap: wrap; gap: 10px;
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 34px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--brand-navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 10px;
  background: #fbfbfd; font-size: 14.5px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brand-yellow); border-color: var(--brand-yellow); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--muted-foreground); margin-top: 10px; }
.form-success {
  display: none; background: #eafaf0; border: 1px solid #b6e8c8; color: #146c2e;
  padding: 14px 18px; border-radius: 10px; font-size: 14.5px; margin-bottom: 18px;
}
.form-success.show { display: block; }

/* ---------- Product detail page ---------- */
.product-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: flex-start; }
.product-detail .gallery img { border-radius: 18px; box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.spec-item { background: var(--brand-tint); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; }
.spec-item strong { display: block; color: var(--brand-navy); font-size: 13px; margin-bottom: 2px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.chip { background: var(--brand-tint); color: var(--brand-navy); font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; }

/* ---------- Founder section ---------- */
.founder-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.founder-photo { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.founder-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.founder-name-card { margin-top: 18px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; }
.founder-name-card .n { font-family: var(--font-heading); font-weight: 700; color: var(--brand-navy); font-size: 15px; }
.founder-name-card .r { font-size: 12.5px; color: var(--muted-foreground); }

/* ---------- Portfolio grid ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.portfolio-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-tag {
  position: absolute; top: 10px; left: 10px; background: rgba(11,30,63,.85); color: var(--brand-yellow);
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em; padding: 4px 10px; border-radius: 999px;
}
.portfolio-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 12px 10px;
  background: linear-gradient(0deg, rgba(6,21,52,.9), transparent);
  color: #fff; font-size: 13px; font-weight: 600;
}

/* ---------- Logo marquee (running sideways scroll) ---------- */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: logo-marquee-scroll 34s linear infinite;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-tile {
  flex: 0 0 auto;
  width: 176px; height: 100px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; padding: 18px;
  box-shadow: 0 6px 16px rgba(6,21,52,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.logo-marquee-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(6,21,52,.18);
}
.logo-marquee-tile img {
  max-height: 62px; max-width: 100%; object-fit: contain;
}
@keyframes logo-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Trusted-by row: reverse-direction second marquee support */
.logo-marquee.reverse .logo-marquee-track { animation-direction: reverse; }

/* ---------- Capability chip row ---------- */
.capability-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.capability-row .chip { background: #fff; border: 1px solid var(--border); }

/* ---------- Utility ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.badge-track { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-tint); color: var(--brand-navy); padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
  .hero-visual { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
  .feature-grid, .feature-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .info-columns { grid-template-columns: 1fr !important; }
  .product-detail { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .founder-wrap { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .header-top { padding: 12px 20px; flex-wrap: wrap; row-gap: 12px; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand-text { min-width: 0; max-width: 185px; }
  .brand-text .name, .brand-text .tag { white-space: normal; }
  .brand-text .name { font-size: 16px; }
  .brand-text .tag { font-size: 9px; }
  .header-cta { flex-shrink: 0; }
  .search-bar { order: 3; flex-basis: 100%; max-width: none; }
  .header-nav-row { background: transparent; }
  .header-nav-row .header-inner { justify-content: flex-end; padding: 0; min-height: 0; }
  .header-nav-row .header-inner .btn-primary { display: none; }
  .header-nav-row .header-inner > div { display: none !important; }
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px;
    background: #fff; flex-direction: column; align-items: flex-start; padding: 90px 28px; gap: 22px;
    box-shadow: var(--shadow-lg); transition: right .25s ease; z-index: 55; }
  .main-nav.open { right: 0; }
  .main-nav a { color: var(--brand-navy) !important; font-size: 16px; }
  .mobile-cta { display: block !important; margin-top: 8px; text-align: center; width: 100%; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
}
@media (max-width: 560px) {
  .header-top { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .feature-grid.cols-3 { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 18px 12px; }
  .stat-item .num { font-size: 22px; }
  .stat-item .label { font-size: 12.5px; margin-top: 2px; }
  .stat-item .desc { font-size: 11px; margin-top: 2px; line-height: 1.35; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-strip { flex-direction: column; }
  section { padding: 52px 0; }

  /* Touch-friendly targets */
  .btn { min-height: 46px; padding-top: 12px; padding-bottom: 12px; }
  .nav-toggle { min-width: 44px; min-height: 44px; }
  .header-social a { width: 40px; height: 40px; }
  .carousel-dots button { width: 10px; height: 10px; }
  .carousel-dots button.active { width: 30px; }
  .faq-q { padding: 16px 18px; min-height: 48px; }
  .footer-social a { width: 42px; height: 42px; }

  /* Tighter, more legible layout on small phones */
  .spec-list { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 32px; }
  .container { padding: 0 18px; }
  .hero-carousel .container { padding-top: 40px; padding-bottom: 40px; }
  .cta-band { padding: 40px 22px; border-radius: 18px; }
  .form-card { padding: 22px; }
  .portfolio-grid { gap: 10px; }
  .logo-marquee-tile { width: 128px; height: 76px; padding: 12px; }
  .logo-marquee-tile img { max-height: 42px; }
  .logo-marquee-tile img { max-height: 38px; }
}
