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

:root {
  --ink: #0f1c29;
  --ink-2: #263746;
  --muted: #6c7a87;
  --line: #dce4ea;
  --surface: #ffffff;
  --surface-soft: #f4f7f9;
  --surface-warm: #f2f2ff;
  --orange: #5b5cf0;
  --orange-dark: #4243c7;
  --teal: #14a592;
  --blue: #3478f6;
  --success: #168b68;
  --warning: #b66413;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 8px 24px rgba(15, 28, 41, .06);
  --shadow-md: 0 22px 55px rgba(15, 28, 41, .12);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.drawer-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 84px 0; }
.section--soft { background: var(--surface-soft); }
.section--ink { background: var(--ink); color: #fff; }
.section--compact { padding: 56px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; border-radius: 9px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-heading h2 { max-width: 720px; margin-bottom: 0; }
.section-heading p { color: var(--muted); max-width: 520px; margin-bottom: 5px; }
.section-heading--center { display: block; text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-heading--center p { margin: 12px auto 0; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); }
.text-muted { color: var(--muted); }
.text-orange { color: var(--orange); }

.btn {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 13px 25px rgba(91, 92, 240, .24); }
.btn--primary:hover { background: var(--orange-dark); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--outline { border-color: var(--line); background: transparent; }
.btn--outline:hover { border-color: var(--ink); }
.btn--ghost { background: transparent; padding-inline: 8px; min-height: 42px; }
.btn--block { width: 100%; }
.icon-btn {
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: .2s ease;
  position: relative;
}
.icon-btn:hover { background: var(--surface-soft); border-color: #bcc8d1; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: .68rem;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.announcement { background: var(--ink); color: #fff; font-size: .84rem; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.announcement__items { display: flex; gap: 25px; overflow: auto; white-space: nowrap; }
.announcement__item { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.82); }
.announcement__item strong { color: #fff; }
.announcement__link { color: #fff; font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(220,228,234,.9); }
.header-main { min-height: 80px; display: grid; grid-template-columns: auto minmax(280px, 1fr) auto; align-items: center; gap: 28px; }
.logo img { width: 190px; height: auto; }
.header-search {
  position: relative;
  display: block;
  min-width: 0;
  height: 48px;
}
.header-search input {
  display: block;
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 0 52px 0 48px;
  outline: none;
  transition: .2s ease;
}
.header-search input:focus { background: #fff; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(91,92,240,.1); }
.header-search > i,
.header-search > svg {
  position: absolute;
  left: 17px;
  top: 50%;
  z-index: 2;
  width: 21px;
  height: 21px;
  color: var(--muted);
  pointer-events: none;
  transform: translateY(-50%);
}
.header-search button {
  position: absolute;
  right: 5px;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  display: grid;
  place-items: center;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
}
.header-search button i,
.header-search button svg {
  position: static;
  width: 20px;
  height: 20px;
  color: currentColor;
  transform: none;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-action-label { display: flex; flex-direction: column; line-height: 1.15; margin-left: 5px; }
.header-action-label small { color: var(--muted); font-size: .67rem; }
.header-action-label strong { font-size: .83rem; }
.mobile-menu-btn { display: none; }
.navbar { border-top: 1px solid var(--line); }
.navbar__inner { min-height: 52px; display: flex; align-items: center; gap: 28px; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; font-size: .91rem; font-weight: 700; padding: 14px 0; }
.nav-link:hover, .nav-link.active { color: var(--orange-dark); }
.nav-link--accent { color: var(--orange-dark); margin-left: auto; }
.has-mega { position: relative; }
.mega-menu {
  position: absolute;
  left: -20px;
  top: calc(100% + 1px);
  width: min(880px, 88vw);
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0 0 22px 22px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: none; }
.mega-menu h4 { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.mega-menu a { display: block; padding: 6px 0; font-size: .9rem; }
.mega-menu a:hover { color: var(--orange-dark); }
.mega-menu__promo { padding: 19px; color: #fff; background: var(--ink); border-radius: 18px; }
.mega-menu__promo h4 { color: rgba(255,255,255,.68); }
.mega-menu__promo strong { font-family: Sora, sans-serif; font-size: 1.15rem; display: block; margin-bottom: 10px; }
.mobile-nav { display: none; }

.hero { padding: 48px 0 36px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 56px; }
.hero h1 { margin-bottom: 22px; max-width: 720px; }
.hero h1 span { color: var(--orange); }
.hero__copy > p { max-width: 650px; font-size: 1.15rem; color: var(--muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 32px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 24px; }
.hero__proof-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--muted); }
.hero__proof-item i { color: var(--success); }
.hero-visual { position: relative; min-height: 580px; }
.hero-visual__frame { position: absolute; inset: 0; border-radius: 42px; overflow: hidden; background: linear-gradient(135deg, #eef3f6, #fef6f1); }
.hero-visual__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.hero-float--top { top: 28px; right: -18px; display: flex; align-items: center; gap: 12px; }
.hero-float--bottom { left: -25px; bottom: 32px; width: 250px; }
.hero-float__icon { width: 45px; height: 45px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--orange); }
.hero-float strong { display: block; font-family: Sora, sans-serif; font-size: .95rem; }
.hero-float small { color: var(--muted); }
.hero-float__bars { display: flex; align-items: end; gap: 4px; height: 28px; margin-top: 12px; }
.hero-float__bars span { width: 6px; border-radius: 8px; background: var(--orange); animation: wave 1s infinite ease-in-out alternate; }
.hero-float__bars span:nth-child(2) { animation-delay: .15s; }
.hero-float__bars span:nth-child(3) { animation-delay: .3s; }
.hero-float__bars span:nth-child(4) { animation-delay: .45s; }
.hero-float__bars span:nth-child(5) { animation-delay: .6s; }
@keyframes wave { from { height: 8px; opacity: .45; } to { height: 28px; opacity: 1; } }

.trust-strip { padding: 20px 0; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 11px; padding: 10px; text-align: left; }
.trust-item i { color: var(--orange); width: 22px; height: 22px; }
.trust-item strong { display: block; font-size: .86rem; }
.trust-item small { color: var(--muted); font-size: .75rem; }

.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.solution-card { min-height: 290px; padding: 24px; border-radius: var(--radius-md); background: var(--surface-soft); display: flex; flex-direction: column; overflow: hidden; position: relative; transition: .25s ease; border: 1px solid transparent; }
.solution-card:hover { transform: translateY(-6px); background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.solution-card__icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: #fff; color: var(--orange); box-shadow: var(--shadow-sm); }
.solution-card h3 { margin: 45px 0 10px; }
.solution-card p { color: var(--muted); font-size: .91rem; }
.solution-card__link { margin-top: auto; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.solution-card::after { content: ''; position: absolute; width: 145px; height: 145px; border-radius: 50%; right: -60px; bottom: -60px; background: var(--orange); opacity: .08; }

.category-scroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 1fr); gap: 15px; overflow-x: auto; padding-bottom: 8px; }
.category-card { padding: 18px; border: 1px solid var(--line); border-radius: 18px; text-align: center; background: #fff; transition: .22s ease; min-width: 185px; }
.category-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.category-card__image { height: 125px; display: grid; place-items: center; margin-bottom: 13px; }
.category-card__image img { height: 100%; width: 100%; object-fit: contain; }
.category-card strong { display: block; font-family: Sora, sans-serif; font-size: .92rem; }
.category-card small { color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { border: 1px solid var(--line); background: #fff; border-radius: 20px; overflow: hidden; transition: .25s ease; position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card__media { aspect-ratio: 1.12; background: var(--surface-soft); position: relative; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: .35s ease; }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-badge { position: absolute; left: 12px; top: 12px; z-index: 2; padding: 6px 9px; border-radius: 999px; font-size: .69rem; font-weight: 800; background: var(--ink); color: #fff; }
.product-badge--sale { background: var(--orange); }
.product-badge--green { background: var(--success); }
.wishlist-btn { position: absolute; right: 12px; top: 12px; z-index: 2; width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.93); cursor: pointer; box-shadow: 0 6px 16px rgba(15,28,41,.08); }
.wishlist-btn.active { color: #d92d4b; }
.product-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-brand { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { font-size: 1rem; line-height: 1.4; margin: 7px 0 8px; letter-spacing: -.02em; }
.product-card__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; }
.spec-chip { padding: 5px 8px; border-radius: 8px; background: var(--surface-soft); color: var(--muted); font-size: .7rem; font-weight: 700; }
.rating { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); margin-bottom: 13px; }
.rating__stars { color: #f4a623; letter-spacing: -1px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.price { font-family: Sora, sans-serif; font-size: 1.08rem; font-weight: 800; }
.price-old { color: #94a1ad; font-size: .8rem; text-decoration: line-through; }
.price-save { color: var(--success); font-size: .71rem; font-weight: 800; margin-left: auto; }
.product-card__footer { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 15px; }
.product-card__footer .btn { min-height: 43px; padding-inline: 15px; font-size: .82rem; }
.product-card__footer .icon-btn { width: 43px; height: 43px; }

.builder { border-radius: 36px; background: var(--ink); color: #fff; overflow: hidden; display: grid; grid-template-columns: 1fr .85fr; }
.builder__copy { padding: clamp(38px, 6vw, 74px); }
.builder h2 { margin-bottom: 18px; }
.builder p { color: rgba(255,255,255,.68); max-width: 580px; }
.builder__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0; }
.builder__step { padding: 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; }
.builder__step span { width: 28px; height: 28px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; font-size: .75rem; font-weight: 800; margin-bottom: 9px; }
.builder__step strong { font-size: .82rem; }
.builder__media { min-height: 500px; background: #182b3b; }
.builder__media img { width: 100%; height: 100%; object-fit: cover; }

.brand-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.brand-pill { min-height: 92px; border: 1px solid var(--line); border-radius: 16px; display: grid; place-items: center; padding: 14px; font-family: Sora, sans-serif; font-weight: 800; color: #73808e; font-size: 1.1rem; }
.brand-pill:hover { border-color: #b9c5ce; color: var(--ink); }

.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.project-main, .project-side { border-radius: 28px; overflow: hidden; position: relative; min-height: 470px; }
.project-main img, .project-side img { width: 100%; height: 100%; object-fit: cover; }
.project-overlay { position: absolute; inset: auto 0 0; padding: 70px 28px 28px; color: #fff; background: linear-gradient(transparent, rgba(10,20,29,.92)); }
.project-overlay p { color: rgba(255,255,255,.72); max-width: 560px; }
.project-side { display: grid; place-items: center; padding: 40px; background: var(--surface-warm); }
.project-side__content { max-width: 400px; }
.project-side__stat { font-family: Sora, sans-serif; font-size: 4.5rem; font-weight: 800; color: var(--orange); line-height: 1; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.testimonial__stars { color: #f4a623; margin-bottom: 20px; }
.testimonial blockquote { margin: 0 0 24px; font-size: 1.03rem; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--surface-soft); display: grid; place-items: center; font-weight: 800; color: var(--orange-dark); }
.testimonial__author strong { display: block; font-size: .86rem; }
.testimonial__author small { color: var(--muted); }

.faq-list { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 23px 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; text-align: left; gap: 20px; cursor: pointer; font-family: Sora, sans-serif; font-weight: 700; }
.faq-question i { transition: .2s ease; flex: 0 0 auto; }
.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .3s ease; }
.faq-answer p { padding: 0 55px 22px 0; }
.faq-item.active .faq-question i { transform: rotate(45deg); }

.newsletter { padding: 35px; border-radius: 26px; background: var(--orange); color: #fff; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 30px; }
.newsletter h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,.84); margin-bottom: 0; }
.newsletter-form { display: flex; background: #fff; border-radius: 999px; padding: 5px; }
.newsletter-form input { flex: 1; border: 0; outline: none; padding: 0 16px; min-width: 0; }
.newsletter-form .btn { min-height: 44px; }

.footer { background: #0a141d; color: #fff; padding-top: 68px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 42px; }
.footer-brand img { width: 190px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.57); max-width: 350px; margin: 20px 0; }
.social-row { display: flex; gap: 9px; }
.social-row a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; display: grid; place-items: center; }
.footer h4 { font-size: .88rem; letter-spacing: .03em; margin-bottom: 17px; }
.footer-links a { display: block; color: rgba(255,255,255,.58); padding: 5px 0; font-size: .89rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; gap: 11px; margin-bottom: 15px; color: rgba(255,255,255,.64); font-size: .88rem; }
.footer-contact i { color: var(--orange); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom { margin-top: 55px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: .78rem; }

/* Page headers */
.page-hero { padding: 70px 0; background: linear-gradient(135deg, #f4f7f9, #fff5ef); }
.page-hero__inner { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 12px; }
.page-hero p { color: var(--muted); max-width: 680px; font-size: 1.08rem; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .81rem; margin-bottom: 22px; }
.breadcrumbs a:hover { color: var(--orange-dark); }

/* Shop */
.shop-layout { display: grid; grid-template-columns: 245px 1fr; gap: 32px; align-items: start; }
.filters { position: sticky; top: 158px; }
.filter-group { border-bottom: 1px solid var(--line); padding: 0 0 20px; margin-bottom: 20px; }
.filter-group h3 { font-size: .9rem; margin-bottom: 13px; }
.check-row { display: flex; align-items: center; gap: 9px; padding: 6px 0; color: var(--ink-2); font-size: .86rem; cursor: pointer; }
.check-row input { accent-color: var(--orange); width: 16px; height: 16px; }
.check-row span:last-child { color: var(--muted); margin-left: auto; font-size: .73rem; }
.price-range { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.price-range input { width: 100%; height: 42px; border: 1px solid var(--line); border-radius: 10px; padding: 0 10px; }
.shop-topbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; }
.result-count { color: var(--muted); font-size: .88rem; }
.shop-controls { display: flex; align-items: center; gap: 9px; }
.select { height: 43px; border: 1px solid var(--line); border-radius: 11px; padding: 0 38px 0 12px; background: #fff; }
.filter-toggle { display: none; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.filter-chip { border: 1px solid var(--line); background: #fff; padding: 7px 10px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; }
.filter-chip--active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination { display: flex; justify-content: center; align-items: center; gap: 7px; margin-top: 42px; }
.pagination a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; display: grid; place-items: center; font-weight: 700; }
.pagination a.active { color: #fff; background: var(--ink); border-color: var(--ink); }

/* Product detail */
.product-detail { display: grid; grid-template-columns: 1.08fr .92fr; gap: 58px; align-items: start; }
.product-gallery { display: grid; grid-template-columns: 84px 1fr; gap: 14px; position: sticky; top: 152px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 10px; }
.gallery-thumb { border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: var(--surface-soft); cursor: pointer; }
.gallery-thumb.active { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(91,92,240,.1); }
.gallery-main { border-radius: 25px; overflow: hidden; background: var(--surface-soft); }
.gallery-main img { width: 100%; aspect-ratio: 1.12; object-fit: cover; }
.product-info__brand { color: var(--orange-dark); font-weight: 800; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.product-info h1 { font-size: clamp(2rem, 4vw, 3.3rem); margin: 10px 0 14px; }
.product-model { color: var(--muted); font-size: .83rem; margin-bottom: 15px; }
.product-price { display: flex; align-items: baseline; gap: 11px; margin: 22px 0 8px; }
.product-price .price { font-size: 1.8rem; }
.tax-note { color: var(--muted); font-size: .76rem; }
.stock-line { margin: 20px 0; padding: 13px 15px; border-radius: 12px; background: #ebf8f3; color: var(--success); display: flex; align-items: center; gap: 9px; font-size: .86rem; font-weight: 700; }
.quick-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin: 20px 0; }
.quick-spec { padding: 13px; border: 1px solid var(--line); border-radius: 12px; }
.quick-spec small { color: var(--muted); display: block; font-size: .69rem; }
.quick-spec strong { font-size: .85rem; }
.option-group { margin: 22px 0; }
.option-label { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: .84rem; font-weight: 800; }
.option-list { display: flex; flex-wrap: wrap; gap: 9px; }
.option-btn { border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 10px 14px; cursor: pointer; font-size: .83rem; font-weight: 700; }
.option-btn.active { border-color: var(--orange); background: var(--surface-warm); color: var(--orange-dark); }
.buy-row { display: grid; grid-template-columns: 130px 1fr; gap: 12px; margin-top: 22px; }
.qty { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { height: 48px; border: 0; background: #fff; cursor: pointer; }
.qty input { width: 100%; border: 0; text-align: center; outline: none; font-weight: 800; }
.buy-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.purchase-assurances { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 22px; }
.assurance { padding: 12px; border-radius: 12px; background: var(--surface-soft); text-align: center; }
.assurance i { color: var(--orange); margin-bottom: 7px; }
.assurance strong { display: block; font-size: .73rem; }
.assurance small { color: var(--muted); font-size: .66rem; }
.product-tabs { margin-top: 70px; }
.tabs-nav { display: flex; gap: 30px; overflow-x: auto; border-bottom: 1px solid var(--line); }
.tab-btn { border: 0; background: transparent; padding: 0 0 15px; font-weight: 800; color: var(--muted); white-space: nowrap; cursor: pointer; border-bottom: 2px solid transparent; }
.tab-btn.active { color: var(--ink); border-color: var(--orange); }
.tab-panel { display: none; padding: 28px 0; }
.tab-panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 14px 10px; }
.spec-table td:first-child { width: 35%; color: var(--muted); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 10px; }
.feature-list i { color: var(--success); flex: 0 0 auto; margin-top: 3px; }

/* About */
.split-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.split-media { border-radius: 30px; overflow: hidden; background: var(--surface-soft); min-height: 510px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-card { padding: 25px; border: 1px solid var(--line); border-radius: 18px; }
.stat-card strong { display: block; font-family: Sora, sans-serif; font-size: 2.1rem; color: var(--orange); }
.stat-card span { color: var(--muted); font-size: .82rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 29px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.value-card__icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; color: var(--orange); background: var(--surface-warm); margin-bottom: 22px; }
.value-card p { color: var(--muted); margin-bottom: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; counter-reset: steps; }
.process-card { padding: 24px; border-top: 3px solid var(--line); counter-increment: steps; }
.process-card::before { content: '0' counter(steps); font-family: Sora, sans-serif; font-size: 2rem; color: var(--orange); font-weight: 800; }
.process-card h3 { margin: 18px 0 9px; }
.process-card p { color: var(--muted); font-size: .88rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 35px; align-items: start; }
.contact-cards { display: grid; gap: 12px; }
.contact-card { display: flex; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 17px; }
.contact-card__icon { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; color: var(--orange); background: var(--surface-warm); }
.contact-card strong { display: block; font-family: Sora, sans-serif; font-size: .9rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: .84rem; margin-bottom: 0; }
.form-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .8rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; outline: none; background: #fff; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(91,92,240,.08); }
.form-field textarea { min-height: 130px; resize: vertical; }

/* Cart */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
.cart-list { border-top: 1px solid var(--line); }
.cart-item { padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 125px 1fr auto; gap: 20px; align-items: center; }
.cart-item__image { border-radius: 15px; overflow: hidden; background: var(--surface-soft); }
.cart-item h3 { font-size: 1rem; margin-bottom: 6px; }
.cart-item__meta { color: var(--muted); font-size: .79rem; }
.cart-item__actions { display: flex; align-items: center; gap: 15px; margin-top: 13px; }
.remove-link { border: 0; background: transparent; color: #b42318; padding: 0; cursor: pointer; font-size: .76rem; text-decoration: underline; }
.cart-item__price { text-align: right; font-family: Sora, sans-serif; font-weight: 800; }
.summary-card { position: sticky; top: 160px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface-soft); }
.summary-card h2 { font-size: 1.3rem; }
.summary-line { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; color: var(--muted); font-size: .88rem; }
.summary-line--total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 18px; color: var(--ink); font-weight: 800; font-size: 1rem; }
.coupon { display: grid; grid-template-columns: 1fr auto; gap: 7px; margin: 17px 0; }
.coupon input { min-width: 0; border: 1px solid var(--line); border-radius: 10px; padding: 0 12px; }
.coupon button { min-height: 42px; }
.summary-note { margin-top: 13px; color: var(--muted); font-size: .72rem; text-align: center; }

/* Drawer, toast */
.drawer-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(5,12,18,.45); opacity: 0; visibility: hidden; transition: .25s ease; }
.drawer-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; z-index: 100; top: 0; right: 0; width: min(430px, 100%); height: 100dvh; background: #fff; transform: translateX(100%); transition: .3s ease; display: flex; flex-direction: column; }
.cart-drawer.active { transform: none; }
.drawer-header { padding: 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.drawer-header h3 { margin: 0; }
.drawer-close { border: 0; background: transparent; cursor: pointer; }
.drawer-body { flex: 1; overflow: auto; padding: 20px; }
.drawer-product { display: grid; grid-template-columns: 78px 1fr auto; gap: 12px; padding-bottom: 17px; margin-bottom: 17px; border-bottom: 1px solid var(--line); }
.drawer-product img { border-radius: 10px; }
.drawer-product strong { font-size: .8rem; }
.drawer-product small { color: var(--muted); display: block; }
.drawer-footer { border-top: 1px solid var(--line); padding: 20px; }
.drawer-total { display: flex; justify-content: space-between; font-weight: 800; margin-bottom: 14px; }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 25px; transform: translate(-50%, 20px); padding: 12px 18px; color: #fff; background: var(--ink); border-radius: 999px; opacity: 0; visibility: hidden; transition: .22s ease; box-shadow: var(--shadow-md); font-size: .85rem; }
.toast.active { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* Responsive */
@media (max-width: 1080px) {
  .header-main { grid-template-columns: auto 1fr auto; gap: 15px; }
  .header-action-label { display: none; }
  .navbar__inner { gap: 18px; }
  .solution-grid, .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-layout { grid-template-columns: 220px 1fr; gap: 22px; }
  .product-detail { gap: 35px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 860px) {
  .announcement__items .announcement__item:nth-child(n+3) { display: none; }
  .header-main { min-height: 70px; grid-template-columns: auto 1fr auto; }
  .mobile-menu-btn { display: grid; }
  .logo { justify-self: center; }
  .logo img { width: 155px; }
  .header-search, .navbar, .header-actions .account-action { display: none; }
  .header-actions { gap: 7px; }
  .mobile-nav { position: fixed; inset: 0 auto 0 0; z-index: 101; width: min(390px, 88vw); padding: 85px 22px 30px; background: #fff; transform: translateX(-100%); transition: .3s ease; overflow: auto; display: block; }
  .mobile-nav.active { transform: none; }
  .mobile-nav__close { position: absolute; top: 20px; right: 20px; }
  .mobile-nav a { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
  .mobile-nav__heading { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; margin: 24px 0 6px; }
  .hero { padding-top: 32px; }
  .hero__grid, .split-section, .contact-grid, .builder, .newsletter, .page-hero__inner { grid-template-columns: 1fr; }
  .hero__grid { gap: 34px; }
  .hero-visual { min-height: 520px; }
  .hero-float--top { right: 12px; }
  .hero-float--bottom { left: 12px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .builder__media { min-height: 370px; }
  .brand-row { grid-template-columns: repeat(3, 1fr); }
  .project-grid { grid-template-columns: 1fr; }
  .project-side { min-height: 330px; }
  .testimonial-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; top: 0; left: 0; z-index: 105; height: 100dvh; width: min(360px, 90vw); background: #fff; padding: 28px; overflow: auto; transform: translateX(-100%); transition: .3s ease; }
  .filters.active { transform: none; }
  .filter-toggle { display: inline-flex; }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .stat-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .section { padding: 58px 0; }
  .section--compact { padding: 42px 0; }
  h1 { font-size: clamp(2.35rem, 13vw, 3.75rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 2.75rem); }
  .announcement__inner { min-height: 35px; }
  .announcement__items .announcement__item:nth-child(n+2), .announcement__link { display: none; }
  .header-main { min-height: 64px; }
  .logo img { width: 138px; }
  .icon-btn { width: 41px; height: 41px; }
  .hero__copy > p { font-size: 1rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .hero__proof { gap: 11px; flex-direction: column; }
  .hero-visual { min-height: 420px; }
  .hero-visual__frame { border-radius: 26px; }
  .hero-float--top { top: 15px; padding: 10px; }
  .hero-float--bottom { bottom: 15px; width: 210px; padding: 12px; }
  .hero-float__icon { width: 38px; height: 38px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { justify-content: flex-start; padding: 8px 0; }
  .trust-item:nth-child(5) { grid-column: 1 / -1; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 12px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 235px; }
  .solution-card h3 { margin-top: 32px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card { border-radius: 14px; }
  .product-card__body { padding: 12px; }
  .product-card h3 { font-size: .84rem; line-height: 1.35; }
  .product-brand { font-size: .63rem; }
  .product-card__specs, .rating, .price-save { display: none; }
  .price { font-size: .88rem; }
  .product-card__footer { grid-template-columns: 1fr; }
  .product-card__footer .icon-btn { display: none; }
  .product-card__footer .btn { min-height: 38px; padding-inline: 8px; font-size: .72rem; }
  .builder { border-radius: 24px; }
  .builder__copy { padding: 30px 22px; }
  .builder__steps { grid-template-columns: 1fr; }
  .builder__media { min-height: 300px; }
  .brand-row { grid-template-columns: repeat(2, 1fr); }
  .project-main { min-height: 410px; }
  .project-side { padding: 28px; }
  .testimonial-grid, .values-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 26px 20px; }
  .newsletter-form { display: grid; border-radius: 16px; padding: 7px; }
  .newsletter-form input { min-height: 45px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 48px 0; }
  .shop-topbar { align-items: flex-start; }
  .shop-controls .select { width: 130px; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { order: 2; flex-direction: row; overflow: auto; }
  .gallery-thumb { width: 68px; flex: 0 0 68px; }
  .quick-specs { grid-template-columns: 1fr 1fr; }
  .buy-row { grid-template-columns: 110px 1fr; }
  .buy-actions { grid-template-columns: 1fr; }
  .purchase-assurances { grid-template-columns: 1fr 1fr; }
  .purchase-assurances .assurance:last-child { grid-column: 1 / -1; }
  .feature-list { grid-template-columns: 1fr; }
  .tabs-nav { gap: 18px; }
  .stat-grid, .process-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .form-card { padding: 21px; }
  .cart-item { grid-template-columns: 88px 1fr; gap: 12px; }
  .cart-item__price { grid-column: 2; text-align: left; }
}


/* Broad technology storefront additions */
.tech-ribbon { display:grid; grid-template-columns:repeat(6,1fr); gap:12px; margin-top:28px; }
.tech-ribbon span { min-height:72px; border:1px solid var(--line); border-radius:16px; background:#fff; display:flex; align-items:center; justify-content:center; gap:9px; padding:12px; font-weight:800; text-align:center; box-shadow:var(--shadow-sm); }
.tech-ribbon i { color:var(--orange); flex:0 0 auto; }
.service-band { display:grid; grid-template-columns:1.15fr .85fr; gap:24px; }
.service-panel { border-radius:var(--radius-lg); padding:38px; background:var(--ink); color:#fff; min-height:370px; position:relative; overflow:hidden; }
.service-panel--light { background:linear-gradient(145deg,#edf4ff,#f7f3ff); color:var(--ink); }
.service-panel::after { content:''; position:absolute; width:260px; height:260px; border-radius:50%; right:-90px; bottom:-110px; background:rgba(91,92,240,.22); }
.service-panel h2,.service-panel h3 { max-width:620px; }
.service-panel p { max-width:620px; color:rgba(255,255,255,.72); }
.service-panel--light p { color:var(--muted); }
.service-list { display:grid; gap:14px; margin:24px 0 30px; }
.service-list span { display:flex; align-items:center; gap:10px; font-weight:700; }
.service-list i { color:#9ed9cf; }
.industry-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.industry-card { border:1px solid var(--line); border-radius:20px; padding:24px 20px; background:#fff; min-height:185px; transition:.22s ease; }
.industry-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:#c9c9ff; }
.industry-card i { width:28px; height:28px; color:var(--orange); margin-bottom:30px; }
.industry-card h3 { font-size:1.05rem; margin-bottom:8px; }
.industry-card p { color:var(--muted); font-size:.9rem; margin-bottom:0; }
.hero__copy h1 span { color:var(--orange); }
.hero-visual__frame img { width:100%; height:100%; object-fit:contain; }
.kicker-row { display:flex; gap:9px; flex-wrap:wrap; margin:20px 0 0; }
.kicker-row span { border:1px solid rgba(255,255,255,.17); background:rgba(255,255,255,.08); color:#fff; border-radius:999px; padding:8px 12px; font-size:.78rem; font-weight:800; }
.service-card-link { display:inline-flex; align-items:center; gap:6px; color:var(--orange-dark); font-weight:800; margin-top:14px; }
.compare-note { border:1px dashed #bfc2ff; border-radius:18px; padding:18px; background:#f7f7ff; display:flex; gap:12px; align-items:flex-start; }
.category-card__image img { width:100%; height:100%; object-fit:contain; }
.product-card__media img { width:100%; height:100%; object-fit:contain; }
.product-card__media { min-height:240px; }
.gallery-main img { width:100%; height:100%; object-fit:contain; }
.gallery-thumb img { width:100%; height:100%; object-fit:contain; }
.footer-brand img { width:188px; }
.logo img { width:190px; }
@media (max-width: 1050px) {
  .tech-ribbon { grid-template-columns:repeat(3,1fr); }
  .industry-grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width: 760px) {
  .tech-ribbon { grid-template-columns:repeat(2,1fr); }
  .service-band { grid-template-columns:1fr; }
  .service-panel { padding:27px; min-height:unset; }
  .industry-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 480px) {
  .tech-ribbon { grid-template-columns:1fr 1fr; }
  .tech-ribbon span { min-height:64px; font-size:.8rem; }
  .industry-grid { grid-template-columns:1fr; }
}
