/* lucide icon sizing */
.lucide { width: 1em; height: 1em; flex-shrink: 0; stroke-width: 1.6; vertical-align: -0.12em; }

/* ═══ HERO ═══ */
#hero {
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 640px;
  min-height: 320px;
  margin-top: var(--header-h);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,120,150,0.22) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, transparent 40%, rgba(0,0,0,0.32) 100%);
  z-index: 0;
  pointer-events: none;
}
#heroBg {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  z-index: 0;
  mix-blend-mode: screen;
  filter: blur(3px) brightness(1.1);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; align-items: center; width: 100%; }
.hero-inner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .5s .1s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
h1.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .6s .2s forwards;
}
h1.hero-title span { color: #fff; }
.hero-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp .6s .3s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp .6s .4s forwards;
}

/* ═══ BRANDS TICKER ═══ */
#brands-ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.ticker-wrap {
  display: flex;
  animation: tickScroll 55s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  padding: 18px 48px;
  border-right: 1px solid var(--border);
}
.ticker-logo {
  height: 26px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter .25s;
  display: block;
}
.ticker-item:hover .ticker-logo {
  filter: grayscale(0%) opacity(0.9);
}
@keyframes tickScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══ PRODUCTS — BENTO GRID ═══ */
#featured { background: var(--white); }

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

.prod-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transition: border-color .22s, box-shadow .22s, transform .22s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(26,120,150,0.10); transform: translateY(-2px); }
.prod-card:hover .prod-thumb { transform: scale(1.08); }

/* ── card image panel ── */
.prod-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #111b22;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-shrink: 0;
}
.pci-ghost {
  position: absolute;
  inset: -5%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(60px, 8vw, 100px);
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.038);
  user-select: none;
  pointer-events: none;
  transition: transform .55s ease;
  white-space: nowrap;
  line-height: 1;
}
.prod-card:hover .pci-ghost { transform: scale(1.06) translateY(-2%); }
.pci-meta {
  position: relative;
  z-index: 1;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pci-label {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.pci-model {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.14);
}
.prod-img-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px;
  border-radius: 5px;
}

/* ── card body ── */
.prod-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-card-brand {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
}
.prod-card-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.35;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11.5px;
  color: var(--ink-mute);
  transition: color .15s;
}
.prod-card:hover .prod-card-link { color: var(--accent); }
.prod-card-link .lucide { width: 13px; height: 13px; transition: transform .15s; }
.prod-card:hover .prod-card-link .lucide { transform: translateX(3px); }

.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ═══ SERVICES — EDITORIAL LIST ═══ */
#services-strip {
  background: var(--off);
  padding: 80px 0;
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.services-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.svc-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s, box-shadow .2s;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: var(--off); box-shadow: inset 3px 0 0 var(--accent); }
.svc-row-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.svc-icon {
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
  padding-top: 2px;
}
.svc-icon .lucide { width: 17px; height: 17px; stroke-width: 1.5; }
.svc-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.3;
}
.svc-desc {
  padding: 28px 36px;
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.75;
  display: flex;
  align-items: center;
}

/* ═══ CTA BANNER + FORM ═══ */
#cta-banner {
  background: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
#cta-banner::before { display: none; }
.cta-banner-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.cta-banner-text h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 48px);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 16px;
}
.cta-banner-text p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.75;
}
.cta-banner-text .cta-meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 28px;
}
.cta-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-dim);
}
.cta-meta-item .lucide { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; stroke-width: 1.8; }

/* form */
.cta-form { display: flex; flex-direction: column; gap: 10px; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cta-input {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, background .15s;
  width: 100%;
}
.cta-input::placeholder { color: var(--ink-mute); }
.cta-input:focus {
  border-color: var(--accent);
  background: var(--white);
}
textarea.cta-input {
  resize: none;
  min-height: 90px;
  line-height: 1.6;
}
.cta-form-btn {
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}
.cta-form-btn:hover { background: var(--ink-2); }
.cta-form-success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: rgba(26,107,58,0.12);
  border: 1px solid rgba(26,107,58,0.22);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.55;
}
.cta-form-success.show { display: flex; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}


/* ═══ STATS ═══ */
#stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}
.stat-item {
  padding: 60px 48px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--off); }
.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(52px,5vw,80px);
  line-height: 0.88;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.stat-num sup { font-size: 0.45em; color: var(--accent); vertical-align: super; }
.stat-label {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 200px;
}
.stat-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  opacity: 0.7;
}

/* ═══ WHY US — numbered rows ═══ */
#why-us {
  background: #1c3f5e;
  padding: 0;
  position: relative;
  overflow: hidden;
}
/* animated blob 1 */
#why-us::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, transparent 68%);
  top: -240px; left: -180px;
  animation: whyBlob1 13s ease-in-out infinite alternate;
  pointer-events: none;
}
/* animated blob 2 */
#why-us::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,120,150,0.28) 0%, transparent 65%);
  bottom: -120px; right: -80px;
  animation: whyBlob2 17s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes whyBlob1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(90px,70px) scale(1.25); }
}
@keyframes whyBlob2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-70px,-50px) scale(1.2); }
}
.why-header {
  padding: 80px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.why-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.why-hed {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 38px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.why-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 320px;
  padding-bottom: 4px;
}
.why-rows { padding-bottom: 80px; position: relative; z-index: 1; }
.why-row {
  display: grid;
  grid-template-columns: 64px 1fr 1fr 100px;
  gap: 0 48px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background .2s;
  margin: 0 -40px;
  padding-left: 40px;
  padding-right: 40px;
}
.why-row:hover { background: rgba(255,255,255,0.1); }
.why-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28);
  transition: color .2s;
}
.why-row:hover .why-num { color: #fff; }
.why-row-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
}
.why-row-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.72;
}
.why-row-tag {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  text-align: right;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .stats-grid { padding: 0 28px; }
  .why-row { grid-template-columns: 56px 1fr 1fr; }
  .why-row-tag { display: none; }
}
@media (max-width: 900px) {
  #hero { aspect-ratio: auto; min-height: 380px; padding: 72px 0; max-height: none; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row-left { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 24px; }
  .svc-desc { padding: 20px 24px; }
  .stats-grid { grid-template-columns: 1fr; padding: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 24px; }
  .stat-item:last-child { border-bottom: none; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  #hero { min-height: 340px; padding: 56px 0; }
  .hero-inner { padding: 0 22px; }
  .featured-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-cta, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .ticker-item { padding: 16px 30px; }
  .why-row { grid-template-columns: 1fr; gap: 6px 0; padding: 24px 18px; margin: 0 -18px; }
  .why-num { display: none; }
  .cta-form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { padding: 0 18px; }
}
