/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1a56db;
  --blue-dark:  #1e40af;
  --blue-light: #3b82f6;
  --blue-pale:  #eff6ff;
  --sky:        #e0f2fe;
  --dark:       #0f172a;
  --dark2:      #1e293b;
  --text:       #374151;
  --text-light: #6b7280;
  --border:     #e5e7eb;
  --bg:         #f9fafb;
  --white:      #ffffff;
  --radius:     16px;
  --shadow:     0 2px 16px rgba(0,0,0,.07);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 96px 0; }

/* - TYPOGRAPHY - */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 52px;
  line-height: 1.75;
}
.section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -- BUTTONS -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,86,219,.30);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,86,219,.38); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-pale); }
.btn-white { background: #fff; color: var(--blue); font-weight: 700; }
.btn-white:hover { background: #f0f7ff; transform: translateY(-2px); }
.full-width { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.navbar.scrolled { border-color: var(--border); box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.logo strong { color: var(--blue); }
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-brand .logo-img {
  height: 120px;
  background: rgba(191, 219, 254, 0.15);
  border-radius: 12px;
  padding: 8px 14px;
  margin-left: 25px;
  display: block;
  border: 1px solid rgba(147, 197, 253, 0.25);
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta { padding: 9px 20px; font-size: 13.5px; border-radius: 8px; background: var(--dark); color: #fff; }
.nav-cta:hover { background: var(--dark2); transform: none; box-shadow: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 28px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu a { padding: 10px 0; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, #bfdbfe 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 100%, #e0f2fe 0%, transparent 55%),
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}
.shape-1 { width: 480px; height: 480px; background: #bfdbfe; top: -140px; right: -60px; }
.shape-2 { width: 320px; height: 320px; background: #bae6fd; bottom: -40px; left: -60px; }
.shape-3 { width: 160px; height: 160px; background: #e0e7ff; top: 55%; left: 38%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 72px 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: #dbeafe;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid #bfdbfe;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Visual — Browser Frame Product Preview */
.hero-visual { position: relative; display: flex; justify-content: flex-end; align-items: center; }

.hero-browser {
  width: 460px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(26,86,219,.18), 0 4px 20px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.08);
  position: relative;
  z-index: 2;
}

/* Browser top bar */
.hb-bar {
  background: #1e293b;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hb-dots { display: flex; gap: 6px; flex-shrink: 0; }
.hb-dot { width: 11px; height: 11px; border-radius: 50%; }
.hb-dot.r { background: #f87171; }
.hb-dot.y { background: #fbbf24; }
.hb-dot.g { background: #34d399; }
.hb-url {
  flex: 1;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
  color: rgba(255,255,255,.5);
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hb-url svg { width: 10px; height: 10px; color: #34d399; flex-shrink: 0; }
.hb-actions { display: flex; gap: 5px; flex-shrink: 0; }
.hb-actions span {
  width: 22px; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.12);
}

/* Screenshot */
.hb-screen { position: relative; line-height: 0; }
.hb-img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  max-height: 260px;
}
.hb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(255,255,255,.06) 100%);
  pointer-events: none;
}

/* Product tab strip */
.hb-tabs {
  background: #fff;
  display: flex;
  border-top: 1px solid var(--border);
}
.hb-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  border-right: 1px solid var(--border);
  cursor: default;
  transition: background .2s, color .2s;
}
.hb-tab:last-child { border-right: none; }
.hb-tab svg { width: 13px; height: 13px; flex-shrink: 0; }
.hb-tab.active {
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 700;
}

/* Floating chips */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.fc1 { top: -16px; right: -20px; animation-delay: 0s; }
.fc2 { bottom: -16px; left: -20px; animation-delay: 1.5s; }
.fc-icon { width: 34px; height: 34px; background: var(--blue-pale); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-icon svg { width: 16px; height: 16px; color: var(--blue); }
.fc-title { font-size: 12px; font-weight: 700; color: var(--dark); }
.fc-sub { font-size: 10px; color: var(--text-light); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ── BRANDS ── */
.brands {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}
.brand-track {
  display: flex;
  gap: 64px;
  animation: slide 22s linear infinite;
  white-space: nowrap;
}
.brand-track span {
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes slide { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── ABOUT ── */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.img-stack { position: relative; }
.img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  object-fit: cover;
}
.img-placeholder {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #bfdbfe 0%, #e0f2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
}
.img-secondary {
  position: absolute;
  width: 52%;
  bottom: -22px;
  right: -22px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
  object-fit: cover;
}

.tab-group {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 22px;
  width: fit-content;
}
.tab {
  padding: 8px 16px;
  border: none;
  background: transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all .2s;
}
.tab.active { background: #fff; color: var(--blue); box-shadow: 0 1px 6px rgba(0,0,0,.08); }
.tab-content { display: none; margin-bottom: 28px; color: var(--text-light); line-height: 1.8; font-size: 14.5px; }
.tab-content.active { display: block; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.stat-box {
  text-align: center;
  padding: 16px 8px;
  background: var(--blue-pale);
  border-radius: 12px;
  border: 1px solid #dbeafe;
}
.big-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
}
.stat-box span:last-child { font-size: 10px; color: var(--text-light); font-weight: 500; margin-top: 3px; display: block; }

/* ── VALUES ── */
.values { background: var(--bg); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .25s;
  border-radius: 20px 20px 0 0;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.10); border-color: transparent; }
.value-card:hover::before { opacity: 1; }

/* Per-color theming */
.value-card[data-color="blue"]   .value-icon { background: #eff6ff; }
.value-card[data-color="blue"]   .value-icon svg { color: #1a56db; }
.value-card[data-color="blue"]::before   { background: linear-gradient(90deg,#1a56db,#3b82f6); }

.value-card[data-color="indigo"] .value-icon { background: #eef2ff; }
.value-card[data-color="indigo"] .value-icon svg { color: #4f46e5; }
.value-card[data-color="indigo"]::before { background: linear-gradient(90deg,#4f46e5,#818cf8); }

.value-card[data-color="cyan"]   .value-icon { background: #ecfeff; }
.value-card[data-color="cyan"]   .value-icon svg { color: #0891b2; }
.value-card[data-color="cyan"]::before   { background: linear-gradient(90deg,#0891b2,#22d3ee); }

.value-card[data-color="amber"]  .value-icon { background: #fffbeb; }
.value-card[data-color="amber"]  .value-icon svg { color: #d97706; }
.value-card[data-color="amber"]::before  { background: linear-gradient(90deg,#d97706,#fbbf24); }

.value-card[data-color="rose"]   .value-icon { background: #fff1f2; }
.value-card[data-color="rose"]   .value-icon svg { color: #e11d48; }
.value-card[data-color="rose"]::before   { background: linear-gradient(90deg,#e11d48,#fb7185); }

.value-card[data-color="green"]  .value-icon { background: #f0fdf4; }
.value-card[data-color="green"]  .value-icon svg { color: #16a34a; }
.value-card[data-color="green"]::before  { background: linear-gradient(90deg,#16a34a,#4ade80); }

.value-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 24px; height: 24px; }

.value-body { flex: 1; }
.value-body h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-body p  { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

/* ── PRODUCTS ── */
.products { background: #fff; }
.product-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 48px;
  border: 1px solid #dbeafe;
}
.screenshot-stack { position: relative; }
.ss-back {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.ss-front {
  position: absolute;
  width: 52%;
  bottom: -18px;
  right: -18px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
}
.ss-placeholder {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.product-badge {
  display: inline-block;
  background: #dbeafe;
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.product-featured-info h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.product-featured-info > p { color: var(--text-light); margin-bottom: 18px; font-size: 14px; line-height: 1.75; }
.feature-list { margin-bottom: 24px; }
.feature-list li {
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.feature-list li::before {
  content: '✓';
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #dbeafe;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #bfdbfe; }
.product-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.product-icon svg { width: 24px; height: 24px; color: var(--blue); }
.product-card h3 { font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 9px; }
.product-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.card-link { font-size: 13px; font-weight: 600; color: var(--blue); }
.card-link:hover { text-decoration: underline; }

/* Selector cards */
.product-card--selector {
  cursor: pointer;
  border: 2px solid var(--border);
  transition: all .22s ease;
  user-select: none;
}
.product-card--selector:hover {
  border-color: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.product-card--selector.active-product {
  border-color: var(--blue);
  background: var(--blue-pale);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.product-card--selector.active-product .product-icon {
  background: var(--blue);
}
.product-card--selector.active-product .product-icon svg {
  color: #fff;
}
.product-card--selector.active-product h3 { color: var(--blue); }

/* Featured panel transition */
#product-featured-panel {
  transition: opacity .22s ease, transform .22s ease;
}

/* Product card with screenshot preview */
.product-card--img { padding: 0; overflow: hidden; }
.product-card-screenshot {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.product-card-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .4s ease;
}
.product-card--img:hover .product-card-screenshot img { transform: scale(1.05); }
.product-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,23,42,.35) 100%);
}
.product-card-body { padding: 22px; }
.product-card--img .product-icon { margin-bottom: 12px; }
.product-card--img h3 { font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 9px; }
.product-card--img p { font-size: 13px; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }

/* ── SERVICES ── */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1.5px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .25s;
  border-radius: 20px 20px 0 0;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.10); border-color: transparent; }
.service-card:hover::before { opacity: 1; }

/* Wide card spans 2 columns */
.service-card--wide { grid-column: span 2; }

/* Per-color theming — icon bg, icon color, top bar */
.service-card[data-color="blue"]   .service-icon { background: #eff6ff; }
.service-card[data-color="blue"]   .service-icon svg { color: #1a56db; }
.service-card[data-color="blue"]::before   { background: linear-gradient(90deg,#1a56db,#3b82f6); }

.service-card[data-color="indigo"] .service-icon { background: #eef2ff; }
.service-card[data-color="indigo"] .service-icon svg { color: #4f46e5; }
.service-card[data-color="indigo"]::before { background: linear-gradient(90deg,#4f46e5,#818cf8); }

.service-card[data-color="rose"]   .service-icon { background: #fff1f2; }
.service-card[data-color="rose"]   .service-icon svg { color: #e11d48; }
.service-card[data-color="rose"]::before   { background: linear-gradient(90deg,#e11d48,#fb7185); }

.service-card[data-color="cyan"]   .service-icon { background: #ecfeff; }
.service-card[data-color="cyan"]   .service-icon svg { color: #0891b2; }
.service-card[data-color="cyan"]::before   { background: linear-gradient(90deg,#0891b2,#22d3ee); }

.service-card[data-color="green"]  .service-icon { background: #f0fdf4; }
.service-card[data-color="green"]  .service-icon svg { color: #16a34a; }
.service-card[data-color="green"]::before  { background: linear-gradient(90deg,#16a34a,#4ade80); }

.service-icon {
  width: 52px; min-width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 24px; height: 24px; }

.service-body { flex: 1; }
.service-body h3 { font-size: 15.5px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-body p  { font-size: 13.5px; color: var(--text-light); line-height: 1.75; }

/* Service list */
.service-list { margin: 0; padding: 0; }
.service-list li {
  font-size: 13px;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}

/* Service tags (wide card) */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.service-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  border: 1px solid #bfdbfe;
}

/* ── SHOWCASE ── */
.showcase { background: var(--bg); }
.showcase .section-label { background: var(--blue-pale); color: var(--blue); }
.showcase .section-title { color: var(--dark); }
.showcase .section-sub { color: var(--text-light); }

/* Browser frame */
.browser-frame {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
  transition: transform .3s ease, box-shadow .3s ease;
}
.browser-frame:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,.14); }
.browser-bar {
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.b-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}
.b-dot:nth-child(1) { background: #fca5a5; }
.b-dot:nth-child(2) { background: #fcd34d; }
.b-dot:nth-child(3) { background: #6ee7b7; }
.b-url {
  margin-left: 10px;
  font-size: 11px;
  color: var(--text-light);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  flex: 1;
  max-width: 320px;
}
.browser-screen img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}

/* Featured block */
.showcase-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
}
.showcase-featured-badge { padding: 8px 0; }
.sf-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.sf-tag.blue   { background: #dbeafe; color: #1a56db; }
.sf-tag.indigo { background: #eef2ff; color: #4f46e5; }
.sf-tag.cyan   { background: #ecfeff; color: #0891b2; }
.sf-tag.amber  { background: #fffbeb; color: #d97706; }
.sf-tag.rose   { background: #fff1f2; color: #e11d48; }
.sf-tag.green  { background: #f0fdf4; color: #16a34a; }

.showcase-featured-badge h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.showcase-featured-badge p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}
.sf-stats {
  display: flex;
  gap: 24px;
}
.sf-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sf-stat strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
}
.sf-stat span {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Thumbnail row */
.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sc-thumb { display: flex; flex-direction: column; gap: 14px; }
.browser-frame.mini .browser-bar { padding: 7px 10px; }
.browser-frame.mini .b-dot { width: 7px; height: 7px; }
.browser-frame.mini .b-url { display: none; }
.sc-thumb-label { padding: 0 4px; }
.sc-thumb-label strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin: 6px 0 4px;
}
.sc-thumb-label p { font-size: 12.5px; color: var(--text-light); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #1e40af 0%, var(--blue) 50%, #0369a1 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-shape.s1 { width: 360px; height: 360px; top: -120px; right: 10%; }
.cta-shape.s2 { width: 220px; height: 220px; bottom: -80px; left: 8%; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-text { flex: 1; min-width: 280px; }
.cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.cta-text h2 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.cta-sub { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.6; max-width: 400px; }
.cta-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.cta-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 13px 18px;
  backdrop-filter: blur(8px);
  width: 240px;
}
.cta-card-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-card-icon svg { width: 17px; height: 17px; color: #fff; }
.cta-card-title { font-size: 11px; color: rgba(255,255,255,.65); font-weight: 600; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .05em; }
.cta-card-val { font-size: 14px; font-weight: 700; color: #fff; }
.cta-btn { margin-top: 6px; align-self: stretch; text-align: center; }

/* ── CONTACT ── */
.contact { background: var(--blue-pale); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(26,86,219,.13);
}

/* Left panel */
.contact-panel {
  background: linear-gradient(145deg, #1e40af 0%, var(--blue) 55%, #0369a1 100%);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.cp-shapes { position: absolute; inset: 0; pointer-events: none; }
.cp-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.cp-shape.s1 { width: 280px; height: 280px; top: -100px; right: -80px; }
.cp-shape.s2 { width: 180px; height: 180px; bottom: -60px; left: -40px; }
.cp-content { position: relative; z-index: 1; }
.cp-content h2 { font-size: 30px; font-weight: 900; color: #fff; line-height: 1.25; margin: 14px 0 12px; }
.cp-desc { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 32px; }
.cp-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.cp-item { display: flex; align-items: center; gap: 14px; }
.cp-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cp-icon svg { width: 17px; height: 17px; color: #fff; }
.cp-item-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.cp-item-val { font-size: 14px; font-weight: 600; color: #fff; }
.cp-socials { display: flex; gap: 10px; }
.cp-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s;
}
.cp-socials a:hover { background: rgba(255,255,255,.28); }
.cp-socials a svg { width: 16px; height: 16px; }

/* Right panel */
.contact-form-wrap {
  background: #fff;
  padding: 52px 44px;
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.contact-form-wrap form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.08);
  background: #fff;
}
.form-group textarea { resize: vertical; }
.btn.full-width { width: 100%; justify-content: center; display: flex; align-items: center; gap: 8px; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: #6b7280; line-height: 1.7; max-width: 230px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .06em; text-transform: uppercase; }
.footer-col a { display: block; font-size: 13px; color: #6b7280; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #93c5fd; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; font-size: 12.5px; color: #4b5563; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--wide { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .img-stack { display: none; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .product-featured { grid-template-columns: 1fr; }
  .screenshot-stack { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-cards { width: 100%; }
  .cta-card { width: 100%; }
  .contact-panel, .contact-form-wrap { padding: 36px 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
  .section-pad { padding: 64px 0; }
}
