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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --blue: #2563eb;
  --blue-dim: #dbeafe;
  --navy: #0f172a;
  --text: #1a1a1a;
  --sub: #6b7280;
  --border: #e5e7eb;
  --bg: #fafafa;
  --white: #ffffff;
  --radius: 12px;
}

/* ── ANNOUNCEMENT ── */
.ann {
  background: var(--navy);
  color: #94a3b8;
  text-align: center;
  padding: 10px;
  font-size: 12.5px;
  letter-spacing: .01em;
}
.ann strong { color: #fff; font-weight: 500; }
.ann .sep { margin: 0 12px; opacity: .3; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,250,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width: 1160px; margin: 0 auto;
  padding: 0 32px;
  height: 62px;
  display: flex; align-items: center; gap: 0;
}
.logo {
  font-family: 'Sora', sans-serif;
  font-size: 18px; font-weight: 600;
  color: var(--navy); letter-spacing: -.02em;
  margin-right: 40px;
}
.logo span { color: var(--blue); }
nav { display: flex; gap: 0; }
nav a {
  font-size: 13.5px; font-weight: 400;
  color: var(--sub); padding: 6px 14px;
  border-radius: 8px; transition: color .15s;
  white-space: nowrap;
}
nav a:hover { color: var(--text); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-search {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 9px;
  border: 1px solid var(--border); background: var(--white);
  font-size: 13px; color: var(--sub); cursor: text;
  transition: border-color .15s;
}
.nav-search:hover { border-color: #d1d5db; }
.nav-search svg { flex-shrink: 0; }
.nav-icon {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--sub); transition: color .15s, border-color .15s;
}
.nav-icon:hover { color: var(--text); border-color: #d1d5db; }
.btn-nav {
  background: var(--blue); color: #fff;
  font-size: 13.5px; font-weight: 500;
  padding: 8px 18px; border-radius: 9px; border: none;
  cursor: pointer; transition: opacity .15s;
  white-space: nowrap;
}
.btn-nav:hover { opacity: .88; }

/* ── HERO ── */
.hero {
  background: #fff;
  padding: 72px 32px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-inner {
  max-width: 560px; margin: 0 auto;
  position: relative; z-index: 10;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500;
  color: var(--blue); letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700; line-height: 1.05;
  color: var(--navy); letter-spacing: -.055em;
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-sub {
  font-size: 16px; color: var(--sub);
  line-height: 1.75; max-width: 460px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex; gap: 10px; align-items: center;
  justify-content: center; margin-bottom: 26px;
}
.btn-primary {
  background: var(--blue) !important;
  color: #fff !important;
  font-size: 14px; font-weight: 600;
  padding: 12px 28px; border-radius: 10px;
  border: none; cursor: pointer;
  display: inline-block; line-height: 1;
  transition: opacity .15s, transform .15s;
  text-decoration: none;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-secondary {
  background: #fff !important;
  color: var(--navy) !important;
  font-size: 14px; font-weight: 500;
  padding: 11px 22px; border-radius: 10px;
  border: 1.5px solid var(--border) !important;
  cursor: pointer; display: inline-flex;
  align-items: center; gap: 5px;
  line-height: 1; text-decoration: none;
  transition: border-color .15s, color .15s;
}
.btn-secondary:hover { border-color: var(--blue) !important; color: var(--blue) !important; }
.hero-checks {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.hero-check {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--sub);
}
.hero-check svg { color: var(--blue); flex-shrink: 0; }

/* ── SIMPLE HERO REVIEWS LINE ── */
.hero-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: -2px auto 26px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 500;
  animation: up .5s .35s both;
}
.review-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1.5px;
  line-height: 1;
}
.review-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}
.hero-reviews strong {
  color: var(--navy);
  font-weight: 700;
}

/* ── LOGO SPOTS ── */
.hero-logos {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
/* base spot — empty white tile ready for logo image */
.ls {
  position: absolute;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  animation: ls-in .45s ease both, ls-float 5s ease-in-out infinite;
}
/* size variants */
.ls      { width: 52px; height: 52px; }
.ls.lg   { width: 60px; height: 60px; border-radius: 16px; }
.ls.sm   { width: 42px; height: 42px; border-radius: 11px; }
/* placeholder inner — shows slot number, remove when adding real logo */
.ls-ph {
  font-size: 10px; font-weight: 600;
  color: #d1d5db; user-select: none;
  font-family: 'Sora', sans-serif;
}
/* to add your logo: replace <span class="ls-ph">N</span> with <img src="logo.png" style="width:70%;height:70%;object-fit:contain"> */
@keyframes ls-in {
  from { opacity: 0; transform: scale(.8) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes ls-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ── FEATURES BELOW HERO — SIMPLE NO BOX ── */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 30px 32px;
}
.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.feature-strip {
  display: grid;
  grid-template-columns: 1.05fr repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
.feature-intro {
  position: relative;
  padding-right: 10px;
}
.feature-intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 48px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), #93c5fd);
}
.feature-kicker {
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 5px;
}
.feature-title {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -.02em;
}
.t-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  padding: 4px 0;
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: auto;
  position: relative;
}
.t-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
}
.feature-top {
  display: block;
  margin: 0;
}
.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: var(--blue);
  transition: transform .18s ease, background .18s ease;
}
.t-item:hover .feature-icon {
  transform: translateY(-2px);
  background: #dbeafe;
}
.feature-num { display: none; }
.feature-copy span {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: 3px;
}
.feature-copy p {
  color: var(--sub);
  font-size: 12.5px;
  line-height: 1.45;
}
@media (max-width: 1024px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 32px; }
  .feature-intro { grid-column: 1 / -1; padding-bottom: 8px; }
  .t-item:nth-child(3)::after { display: none; }
}
@media (max-width: 640px) {
  .trust { padding: 26px 20px; }
  .feature-strip { grid-template-columns: 1fr; gap: 18px; }
  .t-item:not(:last-child)::after { display: none; }
  .t-item { padding-bottom: 16px; border-bottom: 1px solid var(--border); }
  .t-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ── SECTION UTILS ── */
.section { padding: 80px 32px; }
.section-alt { background: #fff; }
.wrap { max-width: 1160px; margin: 0 auto; }
.sec-label {
  font-size: 11px; font-weight: 600; color: var(--blue);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 650; color: var(--navy);
  letter-spacing: -.02em; line-height: 1.2;
}
.sec-sub {
  font-size: 15px; color: var(--sub);
  line-height: 1.7; max-width: 500px; margin-top: 10px;
}
.sec-head { margin-bottom: 48px; }

/* ── CATEGORIES ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Category progressive reveal */
.cat-card.extra-category {
  display: none;
}
.cat-grid.categories-expanded .cat-card.extra-category {
  display: flex;
}
.category-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.category-toggle {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 11px 20px;
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(15,23,42,.14);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.category-toggle:hover {
  background: #020817;
  color: #fff;
  border-color: #020817;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(15,23,42,.18);
}
.category-toggle:focus {
  color: #fff;
}
.category-toggle-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  color: #020817;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  transition: transform .18s ease;
}
.category-toggle.is-open .category-toggle-icon {
  transform: rotate(45deg);
}
.category-toggle .less-text {
  display: none;
}
.category-toggle.is-open .more-text {
  display: none;
}
.category-toggle.is-open .less-text {
  display: inline;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  border-color: #c7d7f8;
  box-shadow: 0 8px 28px rgba(37,99,235,.09);
  transform: translateY(-2px);
}
.cat-image {
  height: 142px;
  width: 100%;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.cat-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); }
.cat-card p { font-size: 13px; color: var(--sub); line-height: 1.6; flex: 1; }
.cat-link {
  font-size: 13px; font-weight: 500; color: var(--blue);
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto;
}
.cat-link:hover { gap: 7px; }
.cat-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chip {
  font-size: 11px; color: var(--sub);
  border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 20px;
}


/* ── FEATURED PRODUCT ── */
.featured-product-section {
  padding: 82px 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(37,99,235,.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.featured-product-card {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 16px 45px rgba(15,23,42,.07);
  position: relative;
  overflow: hidden;
}
.featured-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37,99,235,.07), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(37,99,235,.12), transparent 24%);
  pointer-events: none;
}
.featured-media {
  position: relative;
  z-index: 2;
  min-height: 420px;
  border-radius: 18px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.featured-media::before {
  display: none;
}
.featured-product-box {
  width: min(96%, 500px);
  aspect-ratio: auto;
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  box-shadow: none;
  transform: none;
  position: relative;
  z-index: 2;
  overflow: visible;
}
.featured-product-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 34px rgba(15,23,42,.18));
}
.featured-product-image-label {
  display: none;
}
.featured-product-box span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.featured-product-box strong {
  color: #0f172a;
  font-size: clamp(26px, 4vw, 46px);
  line-height: .92;
  letter-spacing: -.08em;
}
.featured-product-box small {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}
.featured-content {
  position: relative;
  z-index: 2;
}
.featured-title-link {
  color: inherit;
  text-decoration: none;
}
.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.featured-content h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--navy);
  margin-bottom: 14px;
}
.featured-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.featured-description {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.75;
  max-width: 590px;
  margin-bottom: 22px;
}
.featured-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}
.featured-meta {
  border: 1px solid var(--border);
  background: #fafcff;
  border-radius: 12px;
  padding: 12px;
}
.featured-meta small {
  display: block;
  color: var(--sub);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.featured-meta strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
}
.featured-buy-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.featured-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.featured-add-cart {
  background: #fff !important;
  color: var(--blue) !important;
  border: 1.5px solid #bfdbfe !important;
  box-shadow: 0 8px 20px rgba(37,99,235,.06);
}
.featured-add-cart:hover {
  border-color: var(--blue) !important;
  background: #eff6ff !important;
}
.featured-buy-now {
  background: var(--navy) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.16);
}
.featured-buy-now:hover {
  opacity: .92;
}
.featured-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.045em;
}
.featured-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 600;
}
.featured-rating .stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
}
.featured-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.featured-option-pill {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.featured-option-pill.active {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: var(--blue);
}
@media (max-width: 900px) {
  .featured-product-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .featured-media {
    min-height: 340px;
  }
  .featured-meta-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .featured-product-section {
    padding: 60px 20px;
  }
  .featured-buy-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .featured-price {
    font-size: 30px;
  }
}

/* ── PRODUCTS ── */
.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.softifix-static-best-sellers {
  display: none !important;
}
.prod-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.prod-card:hover { border-color: #c7d7f8; box-shadow: 0 4px 20px rgba(37,99,235,.07); }
.prod-top {
  aspect-ratio: 4 / 5;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; position: relative;
  padding: 18px;
  border-bottom: 1px solid var(--border);
}
.prod-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
  filter: none;
  box-shadow: none;
  transform: none;
  transition: transform .22s ease;
}
.prod-card:hover .prod-top img {
  transform: scale(1.02);
}
.prod-card a,
.prod-card a:hover,
.prod-card a:focus {
  text-decoration: none;
}
.prod-plat {
  position: absolute; bottom: 8px; right: 8px;
  font-size: 10px; font-weight: 600;
  background: #fff; color: var(--blue);
  padding: 2px 8px; border-radius: 20px;
  border: 1px solid #dbeafe;
}
.prod-body {
  padding: 14px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.prod-name { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 6px; min-height: 34px; }
.prod-meta { font-size: 11px; color: var(--sub); margin-bottom: 10px; }
.prod-price { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.prod-price small { font-size: 11px; font-weight: 400; color: var(--sub); }
.prod-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.stars { font-size: 11px; color: #f59e0b; letter-spacing: 1px; }
.prod-rev { font-size: 11px; color: var(--sub); }
.btn-buy {
  width: 100%; background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 500; border: none;
  padding: 9px; border-radius: 8px; cursor: pointer;
  text-decoration: none;
  transition: opacity .15s, background .15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: auto;
  min-height: 36px;
}
.btn-buy:visited,
.btn-buy:hover,
.btn-buy:focus,
.btn-buy:active {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}
.btn-buy:hover { opacity: .88; }

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.how-item {}
.how-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px; font-weight: 700; color: #e5e7eb;
  line-height: 1; margin-bottom: 16px;
}
.how-item h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.how-item p { font-size: 14px; color: var(--sub); line-height: 1.7; }

/* ── COMPAT ── */
.compat-wrap {
  background: var(--navy);
  border-radius: 16px; padding: 52px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.compat-wrap .sec-title { color: #fff; }
.compat-wrap .sec-sub { color: #94a3b8; margin-bottom: 28px; }
.compat-btns { display: flex; gap: 12px; }
.btn-compat-light {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 14px; font-weight: 500;
  padding: 10px 22px; border-radius: 9px;
  cursor: pointer; transition: background .15s;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-compat-light:hover { background: rgba(255,255,255,.14); }
.compat-cards { display: flex; flex-direction: column; gap: 12px; }
.compat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  color: #94a3b8; font-size: 14px; line-height: 1.5;
  transition: background .2s;
}
.compat-card:hover { background: rgba(255,255,255,.08); }
.compat-card .ico { font-size: 20px; flex-shrink: 0; }

/* Logo images for Check before you buy section */
.compat-logo-spot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.btn-compat-light .compat-logo-spot {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.compat-logo-spot img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}
.compat-help-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(96,165,250,.14);
  border: 1px solid rgba(96,165,250,.24);
  color: #bfdbfe;
  font-weight: 700;
  font-size: 14px;
}

/* ── REQUEST FORM ── */
.req-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.req-points { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.req-point {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--sub); line-height: 1.6;
}
.req-point svg { color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.form-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 32px;
}
.form-wrap .wpcf7 form,
.form-wrap .wpcf7 p {
  margin: 0;
}
.form-wrap h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.fg { margin-bottom: 14px; }
.fg .wpcf7-form-control-wrap { display: block; }
.fg label { display: block; font-size: 12px; font-weight: 500; color: var(--sub); margin-bottom: 5px; }
.fc {
  width: 100%; padding: 9px 13px;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; color: var(--text); background: var(--bg);
  font-family: 'Sora', sans-serif; outline: none;
  transition: border-color .15s, background .15s;
}
.fc:focus { border-color: var(--blue); background: #fff; }
.fc::placeholder { color: #c4c8d0; }
textarea.fc { resize: vertical; min-height: 72px; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; background: var(--blue); color: #fff;
  padding: 12px; border-radius: 9px;
  font-size: 14px; font-weight: 500; border: none;
  cursor: pointer; margin-top: 4px; transition: opacity .15s;
}
.btn-submit:hover { opacity: .88; }
.form-note { font-size: 11px; color: var(--sub); text-align: center; margin-top: 10px; line-height: 1.6; }
.form-wrap .wpcf7-response-output {
  margin: 14px 0 0;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

/* ── SUPPORT ── */
.support-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(37,99,235,.07), transparent 30%),
    #fff;
}
.support-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.support-copy .sec-sub {
  max-width: 560px;
}
.support-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.sf {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.sf::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), #93c5fd);
  opacity: 0;
  transition: opacity .18s ease;
}
.sf:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 10px 26px rgba(37,99,235,.08);
}
.sf:hover::before { opacity: 1; }
.sf-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: #eff6ff;
  margin-bottom: 11px;
}
.sf-icon svg { width: 18px; height: 18px; }
.sf b {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.sf span {
  display: block;
  font-size: 12.5px;
  color: var(--sub);
  line-height: 1.55;
}
.support-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.support-note {
  font-size: 12.5px;
  color: var(--sub);
}
.support-right {
  display: grid;
  gap: 12px;
}
.support-stats-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(15,23,42,.16);
}
.support-mini-label {
  color: #93c5fd;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: 8px;
}
.support-panel-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.035em;
  margin-bottom: 18px;
}
.stat-row {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background .18s ease, transform .18s ease;
}
.stat-row:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-1px);
}
.stat-num {
  min-width: 82px;
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 750;
  color: #fff;
  line-height: 1;
  letter-spacing: -.04em;
}
.stat-label {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.55;
}
.support-panel-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #94a3b8;
  font-size: 12.5px;
  line-height: 1.6;
}


/* ── REVIEWS ── */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rev-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.rev-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1.5px; margin-bottom: 14px; }
.rev-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-dim); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
}
.rev-info b { display: block; font-size: 13px; color: var(--navy); font-weight: 600; }
.rev-info span { font-size: 12px; color: var(--sub); }

/* ── FAQ ── */
.faq-wrap { max-width: 680px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.faq-item:hover,
.faq-item.open {
  border-color: #dbeafe;
  background: #fff;
}
.faq-q {
  width: 100%; text-align: left; background: #fff !important; background-color: #fff !important; border: none;
  padding: 18px 14px; font-size: 15px; font-weight: 650;
  color: var(--navy); display: flex; justify-content: space-between;
  align-items: center; gap: 16px; cursor: pointer;
  font-family: 'Sora', sans-serif; transition: color .15s, background .15s;
}
.faq-item:hover .faq-q,
.faq-q:hover,
.faq-q:focus,
.faq-q:active,
.faq-item.open .faq-q {
  background: #fff !important;
  background-color: #fff !important;
}
.faq-item:hover .faq-q,
.faq-q:hover {
  color: var(--blue);
}
.faq-ico {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #eff6ff;
  font-size: 17px;
  color: var(--blue);
  transition: transform .25s, background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 14px;
  font-size: 14px; color: var(--sub); line-height: 1.75;
}
.faq-item.open .faq-q {
  color: var(--navy);
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 14px 18px; }
.faq-item.open .faq-ico { transform: rotate(45deg); }

/* ── BRANDS ── */
.brands-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-inner { max-width: 1160px; margin: 0 auto; padding: 28px 32px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.brand-label { font-size: 11px; font-weight: 600; color: var(--sub); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.brand-sep { width: 1px; height: 16px; background: var(--border); flex-shrink: 0; }
.brand-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.btag {
  font-size: 12.5px; font-weight: 500; color: var(--sub);
  padding: 5px 14px; border: 1px solid var(--border);
  border-radius: 20px; background: #fff;
  transition: color .15s, border-color .15s;
}
.btag:hover { color: var(--blue); border-color: #bfdbfe; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--navy); padding: 80px 32px; text-align: center;
}
.final-cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 650; color: #fff;
  letter-spacing: -.02em; margin-bottom: 14px;
}
.final-cta p { font-size: 15px; color: #94a3b8; max-width: 420px; margin: 0 auto 32px; line-height: 1.7; }
.btn-cta {
  background: #fff; color: var(--navy);
  font-size: 15px; font-weight: 600;
  padding: 13px 32px; border-radius: 10px; border: none;
  cursor: pointer; transition: opacity .15s; display: inline-block;
}
.btn-cta:hover { opacity: .88; }

/* ── FOOTER ── */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.06); padding: 52px 32px 28px; }
.foot-inner { max-width: 1160px; margin: 0 auto; }
.foot-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 24px;
}
.foot-brand .logo { font-size: 17px; margin-bottom: 10px; display: block; color: #fff; }
.foot-brand p { font-size: 13px; color: #cbd5e1; line-height: 1.7; max-width: 220px; }
.foot-brand a { color: #60a5fa; }
footer h4 { font-size: 11px; font-weight: 600; color: #cbd5e1; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.flinks { display: flex; flex-direction: column; gap: 9px; }
.flinks a,
.flinks a:visited,
footer.softifix-footer .flinks a,
footer.softifix-footer .flinks a:visited {
  font-size: 13px;
  color: #fff !important;
  transition: color .15s;
}

.flinks a:hover,
.flinks a:focus,
footer.softifix-footer .flinks a:hover,
footer.softifix-footer .flinks a:focus {
  color: #fff !important;
}
.foot-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.foot-bottom p { font-size: 12px; color: #94a3b8; }
.pays { display: flex; gap: 7px; }
.pay {
  font-size: 11px; font-weight: 500; color: #fff;
  border: 1px solid rgba(255,255,255,.07);
  padding: 4px 10px; border-radius: 5px;
  background: rgba(255,255,255,.03);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .nav-wrap { padding: 0 16px; gap: 10px; }
  .logo { margin-right: 0; }
  /* Mobile hero logos: spread Microsoft, Adobe and Autodesk images around the hero without touching content */
  .hero {
    min-height: 920px;
    padding: 188px 20px 170px;
  }

  /* Protected central content zone */
  .hero-inner {
    max-width: calc(100% - 18px);
    width: calc(100% - 18px);
    padding: 22px 10px 24px;
    position: relative;
    z-index: 10;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(229,231,235,.78);
    border-radius: 20px;
    box-shadow: 0 18px 55px rgba(15,23,42,.08);
    backdrop-filter: blur(10px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(43px, 13.2vw, 58px);
    line-height: 1.02;
    letter-spacing: -.06em;
  }

  .hero-sub {
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-logos {
    display: block;
    inset: 0;
    z-index: 1;
    opacity: 1;
  }

  .hero-logos .ls {
    display: none;
  }

  /* Selected mobile logos only:
     1 Windows, 8 Photoshop, 14 Office, 17 Acrobat, 20 Illustrator,
     27 Premiere Pro, 29 Excel, 32 After Effects, 34 Word,
     35 AutoCAD, 39 InDesign, 41 Inventor */
  .hero-logos .ls:nth-of-type(1),
  .hero-logos .ls:nth-of-type(8),
  .hero-logos .ls:nth-of-type(14),
  .hero-logos .ls:nth-of-type(17),
  .hero-logos .ls:nth-of-type(20),
  .hero-logos .ls:nth-of-type(27),
  .hero-logos .ls:nth-of-type(29),
  .hero-logos .ls:nth-of-type(32),
  .hero-logos .ls:nth-of-type(34),
  .hero-logos .ls:nth-of-type(35),
  .hero-logos .ls:nth-of-type(39),
  .hero-logos .ls:nth-of-type(41) {
    display: flex;
    width: 58px !important;
    height: 58px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 28px rgba(15,23,42,.10);
    animation-duration: 5.5s !important;
  }

  .hero-logos .ls:nth-of-type(1) img,
  .hero-logos .ls:nth-of-type(8) img,
  .hero-logos .ls:nth-of-type(14) img,
  .hero-logos .ls:nth-of-type(17) img,
  .hero-logos .ls:nth-of-type(20) img,
  .hero-logos .ls:nth-of-type(27) img,
  .hero-logos .ls:nth-of-type(29) img,
  .hero-logos .ls:nth-of-type(32) img,
  .hero-logos .ls:nth-of-type(34) img,
  .hero-logos .ls:nth-of-type(35) img,
  .hero-logos .ls:nth-of-type(39) img,
  .hero-logos .ls:nth-of-type(41) img {
    width: 78% !important;
    height: 78% !important;
    object-fit: contain !important;
  }

  /* Top area */
  .hero-logos .ls:nth-of-type(1)  { left: 18px !important; right: auto !important; top: 22px !important; bottom: auto !important; }
  .hero-logos .ls:nth-of-type(8)  { left: calc(50% - 29px) !important; right: auto !important; top: 14px !important; bottom: auto !important; }
  .hero-logos .ls:nth-of-type(14) { left: auto !important; right: 18px !important; top: 22px !important; bottom: auto !important; }

  /* Upper side area */
  .hero-logos .ls:nth-of-type(17) { left: 54px !important; right: auto !important; top: 96px !important; bottom: auto !important; }
  .hero-logos .ls:nth-of-type(20) { left: auto !important; right: 54px !important; top: 96px !important; bottom: auto !important; }

  /* Side area around the protected content panel */
  .hero-logos .ls:nth-of-type(27) { left: 8px !important; right: auto !important; top: 360px !important; bottom: auto !important; opacity: .92; }
  .hero-logos .ls:nth-of-type(29) { left: auto !important; right: 8px !important; top: 390px !important; bottom: auto !important; opacity: .92; }

  /* Lower side area */
  .hero-logos .ls:nth-of-type(32) { left: 22px !important; right: auto !important; bottom: 210px !important; top: auto !important; }
  .hero-logos .ls:nth-of-type(34) { left: auto !important; right: 22px !important; bottom: 210px !important; top: auto !important; }

  /* Bottom area */
  .hero-logos .ls:nth-of-type(35) { left: 24px !important; right: auto !important; bottom: 42px !important; top: auto !important; }
  .hero-logos .ls:nth-of-type(39) { left: calc(50% - 29px) !important; right: auto !important; bottom: 28px !important; top: auto !important; }
  .hero-logos .ls:nth-of-type(41) { left: auto !important; right: 24px !important; bottom: 42px !important; top: auto !important; }

  .cat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .compat-wrap { grid-template-columns: 1fr; padding: 36px; }
  .req-grid { grid-template-columns: 1fr; gap: 40px; }
  .support-layout { grid-template-columns: 1fr; gap: 40px; }
  .rev-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero {
    min-height: 920px;
    padding: 188px 20px 170px;
  }
  .section { padding: 60px 20px; }
  .prod-grid { grid-template-columns: 1fr; }
  .support-feats { grid-template-columns: 1fr; }
  .fr { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .feature-intro { display: block; }
  .feature-sub { margin-top: 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .t-item { min-height: auto; }
  .compat-wrap { padding: 24px; }
  .compat-btns { flex-direction: column; }
}

/* ── ANIMATIONS ── */
@keyframes up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: up .5s .1s both; }
.hero h1 { animation: up .5s .2s both; }
.hero-sub { animation: up .5s .3s both; }
.hero-actions { animation: up .5s .4s both; }
.hero-checks { animation: up .5s .5s both; }
