:root{
  --bg0:#060812;
  --bg1:#0b1020;
  --panel: rgba(255,255,255,0.04);
  --panel2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.10);
  --border2: rgba(255,255,255,0.18);
  --text:#e7edf7;
  --muted:#9aa7bd;

  --accent-a:#7c3aed;
  --accent-b:#06b6d4;

  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow: 0 18px 55px rgba(0,0,0,0.55);
  --shadow-soft: 0 12px 35px rgba(0,0,0,0.35);

  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-sans);
  color:var(--text);
  background: var(--bg0);
  position:relative;
  isolation:isolate;
  overflow-x:hidden;
}

/* Smooth, consistent background (prevents the visible "half page" gradient seam) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 15% 18%, rgba(6,182,212,0.22) 0%, rgba(6,182,212,0.10) 38%, rgba(6,182,212,0) 72%),
    radial-gradient(1000px 720px at 85% 40%, rgba(124,58,237,0.26) 0%, rgba(124,58,237,0.10) 42%, rgba(124,58,237,0) 74%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 70%);
  filter:saturate(112%);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button, input, select, textarea{font:inherit}

.container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

/* Simple layout helpers */
.row{display:flex; align-items:center; justify-content:space-between; gap:16px}
.row.wrap{flex-wrap:wrap}
.row.end{align-items:flex-end}

.card{
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

/* Offset anchor scroll for sticky header */
#feedbacks, #products, #features, #support{scroll-margin-top: 96px}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:20px; top:12px; width:auto; height:auto;
  padding:10px 14px; border-radius:12px; background:#111827;
  border:1px solid rgba(255,255,255,0.15);
  z-index:9999;
}

.announcement{
  position:relative;
  background: linear-gradient(90deg, rgba(124,58,237,0.22), rgba(6,182,212,0.16));
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}
.announcement .wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 0;
  color:rgba(255,255,255,0.85);
  font-size:14px;
}
.announcement a{
  color:rgba(255,255,255,0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header{
  position:sticky; top:0;
  z-index:50;
  background: rgba(10,12,20,0.55);
  border-bottom:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 180px;
}
.brand-mark{
  width:38px; height:38px;
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 12px 30px rgba(0,0,0,0.45);
}
.brand-name{
  font-weight:750;
  letter-spacing:0.2px;
  font-size:15px;
}
.brand-sub{
  color:var(--muted);
  font-size:12px;
  margin-top:2px;
}

.header-search{
  flex:1;
  position:relative;
  max-width: 520px;
}
.header-search input{
  width:100%;
  padding:12px 40px 12px 44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color:var(--text);
  outline:none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.header-search input:focus{
  border-color: rgba(6,182,212,0.35);
  box-shadow: 0 0 0 4px rgba(6,182,212,0.12);
}
.header-search .icon{
  position:absolute;
  left:16px; top:50%;
  transform: translateY(-50%);
  width:18px; height:18px;
  opacity:0.8;
}
.search-suggest{
  position:absolute;
  top:calc(100% + 8px);
  left:0; right:0;
  background: rgba(12,16,28,0.96);
  border:1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  display:none;
}
.search-suggest.open{display:block}
.search-suggest a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.search-suggest a:last-child{border-bottom:none}
.search-suggest img{
  width:34px; height:22px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.search-suggest .meta{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.search-suggest .meta strong{font-size:13px}
.search-suggest .meta span{color:var(--muted); font-size:12px}

.nav{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  position:relative;
}
.nav a{
  position:relative;
  z-index:1;
  padding:10px 12px;
  border-radius: 999px;
  color:rgba(255,255,255,0.78);
  font-size:14px;
  font-weight: 650;
  border:1px solid transparent;
  transition: color 180ms ease;
}
.nav a:hover{
  color:rgba(255,255,255,0.92);
}
.nav a.active{
  color: rgba(255,255,255,0.96);
}

/* Sliding indicator (JS positions it) */
.nav-indicator{
  position:absolute;
  top:6px;
  bottom:6px;
  left:6px;
  width: 0px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,0.55), rgba(6,182,212,0.55));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  transform: translateX(0);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), width 320ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
  opacity:0;
}
.nav.has-indicator .nav-indicator{opacity:1;}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.icon-btn{
  width:42px; height:42px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color:var(--text);
  display:grid;
  place-items:center;
  cursor:pointer;
  position:relative;
}
.icon-btn:hover{
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.icon-btn svg{width:20px; height:20px; fill: currentColor; opacity:0.9}
.badge-dot{
  position:absolute;
  top:9px; right:9px;
  width:9px; height:9px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent-b));
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(10,12,20,0.9), 0 0 14px rgba(6,182,212,0.45);
}

.btn{
  border-radius: 999px;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color:var(--text);
  cursor:pointer;
  font-weight:650;
  letter-spacing:0.2px;
}
.btn:hover{border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.08)}
.btn-primary{
  border-color: rgba(255,255,255,0.12);
  background: linear-gradient(90deg, rgba(124,58,237,0.85), rgba(6,182,212,0.78));
  box-shadow: 0 16px 40px rgba(0,0,0,0.40);
}
.btn-primary:hover{
  filter: brightness(1.05);
}
.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.10);
}
.btn-small{padding:10px 14px; font-size:13px}
.btn-wide{padding:14px 22px}

.section{
  padding: 60px 0;
}
.section-title{
  font-size: 34px;
  margin:0 0 12px;
  letter-spacing:-0.4px;
}
.section-sub{
  margin:0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.55;
}

.hero{
  padding: 64px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.hero h1{
  margin:0;
  font-size: 54px;
  letter-spacing:-1px;
  line-height:1.06;
}
.hero .lead{
  margin:18px 0 0;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
}
.hero .cta{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top: 24px;
}

.gradient-word{
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.rotator{
  display:inline-block;
  position:relative;
  top: 0.06em;
  height: var(--rot-h, 1.1em);
  overflow:hidden;
  vertical-align: baseline;
}
.rotator .rotator-inner{
  display:block;
  transform: translateY(var(--rot-y, 0px));
  transition: transform 520ms cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}
.rotator .rotator-word{
  height: var(--rot-h, 1.1em);
  line-height: var(--rot-h, 1.1em);
  white-space:nowrap;
  padding-right: 10px;
}

.hero-cards{
  position:relative;
  display:grid;
  gap: 14px;
}
.hero-cards .card{
  position:relative;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
  transform: translateZ(0);
}
.hero-cards .card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 22px;
  padding:1px;
  background: linear-gradient(120deg, rgba(6,182,212,0.50), rgba(124,58,237,0.45), rgba(255,255,255,0.08));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity:0.9;
}
.hero-cards .card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.16);
}
.hero-cards .top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.pill{
  font-size:12px;
  color: rgba(255,255,255,0.78);
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
}
.card-logo{
  width:64px; height:64px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.card-title{
  margin: 14px 0 4px;
  font-weight: 760;
}
.card-price{
  margin:0;
  color: var(--muted);
  font-size: 13px;
}
.card-actions{
  margin-top: 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.stats{
  margin-top: 18px;
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.stat{
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 10px 12px;
  border-radius: 16px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.stat strong{color: var(--text)}

.neon-divider{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.25), rgba(124,58,237,0.25), transparent);
  margin: 20px 0 0;
}

/* Notification dropdown */
.popover{
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 340px;
  max-width: calc(100vw - 40px);
  background: rgba(12,16,28,0.96);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
  display:block;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events:none;
  visibility:hidden;
  transition: opacity 160ms ease, transform 180ms ease, visibility 0s linear 180ms;
}
.popover.open{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events:auto;
  visibility:visible;
  transition: opacity 160ms ease, transform 180ms ease;
}
.popover .head{
  padding: 14px 14px 10px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.popover .head h3{
  margin:0;
  font-size: 15px;
}
.popover .head a{
  color: rgba(6,182,212,0.9);
  font-size: 13px;
}
.popover .item{
  display:flex;
  gap: 12px;
  padding: 12px 14px;
  border-top:1px solid rgba(255,255,255,0.06);
}
.popover .item:hover{
  background: rgba(255,255,255,0.03);
}
.popover .item img{
  width:38px; height:38px;
  border-radius: 14px;
  object-fit: cover;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.popover .item strong{
  font-size: 13px;
}
.popover .item .meta{
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

/* Feedback carousel */
.carousel{
  margin-top: 22px;
  position:relative;
}
.carousel-track{
  display:flex;
  gap: 14px;
  width:max-content;
  animation: scroll 40s linear infinite;
}
.carousel:hover .carousel-track{
  animation-play-state: paused;
}
@keyframes scroll{
  0%{transform: translateX(0)}
  100%{transform: translateX(-50%)}
}
.fb-card{
  width: 320px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
}
.fb-top{
  display:flex;
  align-items:center;
  gap: 12px;
}
.fb-avatar{
  width: 44px; height: 44px;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.fb-name{
  font-weight: 700;
}
.fb-rating{
  display:flex;
  align-items:center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}
.fb-rating svg{width:16px; height:16px; fill: currentColor; opacity:0.88}
.fb-text{
  margin: 12px 0 0;
  color: rgba(255,255,255,0.80);
  line-height: 1.55;
  font-size: 14px;
}
.fb-link{
  display:inline-flex;
  margin-top: 10px;
  color: rgba(6,182,212,0.9);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Products page */
.page-head{
  padding: 34px 0 10px;
}
.page-head h1{
  margin: 0;
  font-size: 34px;
  letter-spacing:-0.4px;
}
.page-head p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height:1.55;
  max-width: 72ch;
}
.segmented{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap:6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  width: fit-content;
  overflow-x:auto;
  overflow-y:hidden;
  position:relative;
}
.segmented::-webkit-scrollbar{display:none}
.segmented.center{margin-left:auto; margin-right:auto}

.seg-indicator{
  position:absolute;
  top:6px;
  bottom:6px;
  left:6px;
  width:0px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(124,58,237,0.45), rgba(6,182,212,0.35));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 28px rgba(0,0,0,0.30);
  transform: translateX(0);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), width 320ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
  opacity:0;
}
.segmented.has-indicator .seg-indicator{opacity:1}
.segmented a{
  position:relative;
  z-index:1;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  border:1px solid transparent;
  white-space:nowrap;
  font-size: 13px;
  font-weight:650;
  transition: color 180ms ease;
}
.segmented a.active{
  color: rgba(255,255,255,0.96);
}

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

/* “Theme-like” surface container (used for the home Products section) */
.surface{
  margin-top: 18px;
  padding: 26px 22px;
  border-radius: 32px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
}
.surface-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.surface-title{
  margin:0;
  font-size: 22px;
  letter-spacing:-0.4px;
}
.surface-sub{
  margin: 6px 0 0;
  color: var(--muted);
  line-height:1.55;
  max-width: 70ch;
}

/* Product tiles (bigger logos, closer to the reference cards) */
.product-tiles{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-tile{
  position:relative;
  overflow:hidden;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.product-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.045);
}
.product-tile__media{
  position:relative;
  height: 140px;
  background: rgba(255,255,255,0.03);
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-tile__media::after{
  content:"";
  position:absolute;
  left:-30%;
  right:-30%;
  bottom:-58px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.product-tile__logo{
  position:relative;
  z-index:1;
  width: 84%;
  height: 84%;
  object-fit:contain;
  filter: drop-shadow(0 18px 45px rgba(0,0,0,0.55));
}
.product-tile__badge{
  position:absolute;
  top:10px;
  left:10px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  z-index:2;
}
.product-tile__badge svg{width:14px; height:14px; fill: currentColor; opacity:0.9}
.product-tile__body{
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.product-tile__name{
  font-weight: 750;
  letter-spacing:-0.2px;
  font-size: 14px;
  line-height:1.2;
}
.product-tile__price{
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.product-card{
  position:relative;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  overflow:hidden;
}
.product-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 22px;
  padding:1px;
  background: linear-gradient(120deg, rgba(6,182,212,0.50), rgba(124,58,237,0.45), rgba(255,255,255,0.08));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  pointer-events:none;
}
.product-card:hover{
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.product-card .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.product-card .logo{
  width:54px; height:54px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.product-card h3{
  margin: 12px 0 6px;
  font-size: 15px;
  letter-spacing:-0.2px;
}
.product-card .tagline{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  min-height: 34px;
  line-height:1.35;
}
.product-card .price{
  margin: 12px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}
.product-card .actions{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
}
.badge svg{width:14px; height:14px; fill:currentColor; opacity:0.9}
.best-icon{
  position:absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}
.best-icon svg{width:16px; height:16px; fill: rgba(255,255,255,0.86)}

.pagination{
  margin-top: 22px;
  display:flex;
  gap: 8px;
  justify-content:center;
}
.pagination a{
  min-width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
}
.pagination a.active{
  background: rgba(6,182,212,0.18);
  border-color: rgba(6,182,212,0.28);
}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.60);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 24px;
  z-index: 100;
}
.modal.open{display:flex}
.modal-card{
  width: min(920px, 100%);
  max-height: min(88vh, 980px);
  overflow:auto;
  border-radius: 26px;
  background: rgba(12,16,28,0.96);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  position:relative;
}
.modal-head{
  padding: 18px 18px 10px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.modal-head h2{margin:0; font-size: 18px}
.modal-head p{margin:6px 0 0; color: var(--muted); font-size: 13px; line-height:1.45}
.modal-close{
  width: 42px; height: 42px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  cursor:pointer;
  color: rgba(255,255,255,0.85);
}
.modal-close:hover{background: rgba(255,255,255,0.06)}
.modal-body{
  padding: 16px 18px 18px;
}
.option-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.option{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 14px;
  position:relative;
  overflow:hidden;
}
.option.recommended{
  border-color: rgba(6,182,212,0.35);
  box-shadow: 0 0 0 1px rgba(6,182,212,0.18) inset, 0 18px 45px rgba(0,0,0,0.35);
}
.option .top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.option .top img{
  width:36px; height:36px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.option h3{margin: 10px 0 4px; font-size: 15px}
.option p{margin: 0; color: var(--muted); font-size: 13px; min-height: 32px; line-height:1.35}
.option .price{margin-top: 10px; color: rgba(255,255,255,0.86); font-size: 13px}
.option .buy{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.option .buy button{
  width: 100%;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 720;
  border:1px solid rgba(255,255,255,0.12);
  background: linear-gradient(90deg, rgba(124,58,237,0.85), rgba(6,182,212,0.78));
  color: rgba(255,255,255,0.95);
  cursor:pointer;
}
.option .buy button:hover{filter: brightness(1.05)}
.option .ribbon{
  position:absolute;
  top: 12px; right: -30px;
  background: rgba(6,182,212,0.22);
  border:1px solid rgba(6,182,212,0.35);
  color: rgba(255,255,255,0.92);
  padding: 6px 40px;
  transform: rotate(18deg);
  font-size: 12px;
}

.modal-split{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.highlight-list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.78);
  line-height:1.55;
}
.callout{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 14px;
}
.callout h4{margin:0 0 6px; font-size:14px}
.callout p{margin:0; color: var(--muted); font-size: 13px; line-height:1.5}
.callout .row{margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap}
.callout a{display:inline-flex}

.accordion{
  margin-top: 14px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow:hidden;
}
.acc-item{border-top:1px solid rgba(255,255,255,0.06)}
.acc-item:first-child{border-top:none}
.acc-btn{
  width:100%;
  text-align:left;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border:none;
  color: rgba(255,255,255,0.92);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.acc-btn span{color: rgba(255,255,255,0.70)}
.acc-panel{
  padding: 0 14px 12px;
  color: var(--muted);
  font-size: 13px;
  line-height:1.55;
  display:none;
}
.acc-item.open .acc-panel{display:block}

/* Features */
.feature-grid{
  margin-top: 20px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature{
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
}
.feature .icon{
  width:44px; height:44px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.feature .icon svg{width:22px; height:22px; fill: rgba(255,255,255,0.86)}
.feature h3{margin: 12px 0 6px; font-size: 15px}
.feature p{margin:0; color: var(--muted); line-height:1.55; font-size: 13px}

/* Support */
.support-card{
  margin-top: 20px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.support-card h2{
  margin:0;
  font-size: 22px;
}
.support-card p{margin: 8px 0 0; color: var(--muted); line-height:1.55; max-width: 70ch}
.support-actions{display:flex; gap:10px; flex-wrap:wrap}

/* Footer */
.footer{
  padding: 30px 0 46px;
  color: rgba(255,255,255,0.55);
  border-top:1px solid rgba(255,255,255,0.06);
}
.footer .row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
}
.footer-row{justify-content:center}
.footer .small{
  font-size: 13px;
}
.footer .links{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.footer .links a{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; gap: 18px}
  .hero h1{font-size: 44px}
  .grid{grid-template-columns: repeat(2, 1fr)}
  .product-tiles{grid-template-columns: repeat(2, 1fr)}
  .feature-grid{grid-template-columns: repeat(2, 1fr)}
  .modal-split{grid-template-columns: 1fr}
  .option-grid{grid-template-columns: 1fr}
}
@media (max-width: 560px){
  .header-inner{flex-wrap:wrap}
  .brand{min-width: auto}
  .nav{display:none}
  .hero h1{font-size: 38px}
  .grid{grid-template-columns: 1fr}
  .product-tiles{grid-template-columns: 1fr}
  .surface{padding: 20px 16px}
  .feature-grid{grid-template-columns: 1fr}
  .fb-card{width: 280px}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .carousel-track{animation:none}
  .rotator .rotator-inner{transition:none}
  .product-card:hover{transform:none}
  .hero-cards .card:hover{transform:none}
}


/* Added from Second Website: product card media */
.product-card .product-media{
  height: 190px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(220px 180px at 30% 30%, rgba(124,58,237,0.22), transparent 60%),
    radial-gradient(220px 180px at 80% 20%, rgba(6,182,212,0.18), transparent 55%),
    rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.10);
  overflow:hidden;
}

.product-card .product-media img{
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.35));
}
