
:root {
 
  --brand-ink: var(--ink);
  --brand-muted: var(--muted);
  --brand-shadow: 36, 99, 235;     
}

/* section wrapper */
.product-hero {
  background: linear-gradient(180deg, #f6f9ff 0%, #f3f6fd 100%);
  padding: 80px 0;
}

/* layout */
.product-hero .grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

/* text */
.product-hero h1 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.product-hero .accent {
  color: var(--brand);           
  font-weight: 700;
  margin-bottom: 16px;
}

.product-hero .hero-sub {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 620px;
}

/* bullet points */
.tick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin-top: 28px;
}
.tick {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
}
.tick i {
  color: var(--brand);           
  font-size: 22px;
  margin-top: 2px;
}

/* right visual */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

/* phone  & background */
.phone {
  width: clamp(240px, 34vw, 360px);
  aspect-ratio: 10/19;
  border: 10px solid var(--brand);                        
  border-radius: 28px;
  background: var(--bg);
  box-shadow: 0 16px 50px rgba(var(--brand-shadow), .16); 
  position: relative;
  overflow: hidden;
}
.phone::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 60% -200px, rgba(var(--brand-shadow), .08), transparent 60%),
    linear-gradient(135deg, #eef5ff 0%, #eaf2ff 100%);
  opacity: 0.9;
}

/* map hints */
.pin, .block { position: absolute; border-radius: 8px; }

.block { background: rgba(var(--brand-shadow), .88); width: 40px; height: 24px; top: 25%; left: 18%; }
.block.b2 { background: rgba(var(--brand-shadow), .70); width: 32px; height: 20px; top: 48%; left: 52%; }
.block.b3 { background: rgba(var(--brand-shadow), .50); width: 28px; height: 18px; top: 68%; left: 30%; }

.pin {
  width: 20px; height: 20px;
  background: var(--brand);
  border: 3px solid #fff; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.pin.p1 { top: 30%; left: 55%; }
.pin.p2 { top: 58%; left: 28%; }

/* floating badges  */
.badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  white-space: nowrap;
}
.badge i { color: var(--brand); }  

.b-analytics { top: -16px; right: 10%; }
.b-travel    { top: 22%; left: 6%;  }
.b-multi     { top: 50%; left: 20%; }
.b-customers { top: 4%;  right: 2%; }
.b-geo       { bottom: 8%; left: 6%; }
.b-rtloc     { bottom: -10px; right: 14%; }

/* mobile */
@media (max-width: 900px) {
  .product-hero .grid { grid-template-columns: 1fr; text-align: center; }
  .tick-grid { grid-template-columns: 1fr; }
  .badge { position: static; margin: 8px; }
  .hero-visual { gap: 10px; }
}

.nav-links .is-active { color: var(--brand); font-weight: 700; }


.product-image {
  padding: 60px 0;
  text-align: center;
}

.product-img {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(17,24,39,.08);
}




/* features section */
.features-section {
  padding: 80px 0;
  background: var(--background, #f9fafb);
  text-align: center;
}

.features-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink, #0d1b2a);
  margin-bottom: 2.5rem;
}

/* grid layout */
.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr; /* mobile: 1 per row */
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); } /* tablet: 2 */
}

@media (min-width: 992px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); } /* desktop: 3 */
}


/* feature cards */
.feature-card {
  background: var(--surface, #fff);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* feature icons  */
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 80px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon img {
  transform: scale(1.08);
}

/* feature title */
.feature-card h3 {
  font-size: 1.05rem;
  color: var(--ink, #1b1f23);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* learn more  */
.learn-more {
  font-size: 0.95rem;
  color: var(--primary, #2b7bff);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}

.learn-more:hover {
  color: var(--primary-hover, #2363cc);
}
