/* ============================================================
   OSPL Ecommerce Software Solution — Originate Soft
   Bootstrap 5 + custom design system
   ============================================================ */

:root {
  /* Brand palette sampled from Originate Soft logo: orange #f05020 + navy #102030 */
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #4ade80;
  --secondary: #102030;
  --accent: #1f3a5f;
  --gradient: linear-gradient(135deg, #16a34a 0%, #4ade80 100%);
  --gradient-soft: linear-gradient(135deg, #f0fdf4 0%, #f7fef9 100%);
  --gradient-btn: linear-gradient(135deg, #16a34a 0%, #4ade80 100%);
  --dark: #102030;
  --dark-2: #16263c;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-violet: #f0fdf4;
  --border: #dcefe2;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 12px rgba(16, 32, 48, 0.07);
  --shadow: 0 8px 30px rgba(22, 163, 74, 0.08);
  --shadow-lg: 0 20px 50px rgba(22, 163, 74, 0.16);
  --shadow-primary: 0 10px 30px rgba(22, 163, 74, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

a { text-decoration: none; transition: all 0.25s ease; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Buttons ── */
.btn {
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}
.btn-lg { padding: 14px 34px; font-size: 1rem; }
.btn-primary {
  background: var(--gradient-btn);
  border: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
  background: var(--gradient-btn);
  color: #fff;
}
.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-light-ghost {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-light-ghost:hover { background: #fff; color: var(--primary); transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--primary);
  border: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); color: var(--primary-dark); }

/* ── Navbar ── */
.navbar {
  padding: 0.85rem 0;
  transition: all 0.3s ease;
  z-index: 1030;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(16,32,48,0.10) !important; padding: 0.6rem 0; }
.navbar-brand img { transition: all 0.3s ease; }
.navbar .nav-link {
  font-weight: 500;
  color: var(--text) !important;
  margin: 0 2px;
  padding: 0.5rem 0.9rem !important;
  border-radius: 8px;
  font-size: 0.94rem;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--primary) !important; background: var(--bg-violet); }
.btn-demo { padding: 9px 22px; color: #fff !important; }
.btn-demo:hover { color: #fff !important; }

/* ── Section commons ── */
section { position: relative; }
.py-section { padding: 90px 0; }
.section-header { max-width: 760px; margin: 0 auto; }
.section-badge {
  display: inline-block;
  background: var(--bg-violet);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.bg-light-violet { background: var(--bg-violet); }
.bg-soft { background: var(--bg-light); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  padding-top: 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(22, 163, 74, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(16, 32, 48, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #effdf5 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(22,163,74,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.hero-badge i { color: var(--secondary); }
.hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.12;
  font-weight: 800;
}
.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
}
.hero-supporting {
  font-size: 1rem;
  color: var(--text-muted);
  background: #fff;
  border-left: 4px solid var(--primary-light);
  padding: 14px 20px;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-sm);
  display: inline-block;
}
.hero-cta .btn { margin: 6px 10px 6px 0; }

/* Hero visual grid */
.hero-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 460px;
  margin-left: auto;
}
.hero-icon-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  animation: floatUp 0.6s ease backwards;
}
.hero-icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.hero-icon-wrapper {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  transition: all 0.3s ease;
}
.hero-icon-card:hover .hero-icon-wrapper { background: var(--gradient-btn); color: #fff; transform: scale(1.05); }
.hero-icon-card span { font-weight: 600; font-size: 0.92rem; color: var(--dark); }
@keyframes floatUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   INTRO PROSE BLOCK
   ============================================================ */
.intro-section { padding: 80px 0; }
.intro-lead {
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.7;
}
.intro-body p {
  color: var(--text-muted);
  font-size: 1.04rem;
  margin-bottom: 1.1rem;
}
.intro-body p strong, .intro-body .hl { color: var(--primary); font-weight: 600; }
.intro-divider {
  width: 64px; height: 4px; border-radius: 4px;
  background: var(--gradient-btn);
  margin: 0 0 26px;
}

/* ============================================================
   SOLUTIONS (E-commerce Solution We Provide)
   ============================================================ */
.solution-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-btn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.solution-card:hover::before { transform: scaleX(1); }
.solution-icon {
  width: 66px; height: 66px;
  border-radius: 18px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: 22px;
  transition: all 0.3s ease;
}
.solution-card:hover .solution-icon { background: var(--gradient-btn); color: #fff; }
.solution-card h3 { font-size: 1.35rem; margin-bottom: 14px; }
.solution-card p { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 20px; }
.solution-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: capitalize;
}
.solution-link i { transition: transform 0.25s ease; }
.solution-link:hover { color: var(--primary-dark); }
.solution-link:hover i { transform: translateX(4px); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-intro {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.industry-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.industry-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.industry-card:hover .industry-icon { background: var(--gradient-btn); color: #fff; transform: rotate(-6deg); }
.industry-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.industry-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; line-height: 1.55; }

/* ============================================================
   WHAT YOU'LL RECEIVE
   ============================================================ */
.receive-section { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.receive-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(22,163,74,0.28), transparent 70%);
  border-radius: 50%;
}
.receive-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(74,222,128,0.16), transparent 70%);
  border-radius: 50%;
}
.receive-section .section-title, .receive-section .section-subtitle { color: #fff; }
.receive-section .section-subtitle { color: #bbf7d0; }
.receive-section .section-badge { background: rgba(255,255,255,0.1); color: #bbf7d0; border-color: rgba(255,255,255,0.15); }
.receive-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.receive-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-5px); border-color: var(--primary-light); }
.receive-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gradient-btn);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 16px;
}
.receive-card h4 { color: #fff; font-size: 1.12rem; margin-bottom: 10px; }
.receive-card p { color: #cbd5e1; font-size: 0.92rem; margin-bottom: 0; }
.receive-closing {
  text-align: center;
  margin-top: 46px;
  font-size: 1.1rem;
  color: #d1fae5;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CORE PLATFORM FEATURES (3 grouped columns)
   ============================================================ */
.feature-group {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.feature-group:hover { box-shadow: var(--shadow-lg); }
.feature-group-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 2px solid var(--border);
}
.feature-group-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gradient-btn);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  flex-shrink: 0;
}
.feature-group-head h3 { font-size: 1.25rem; margin: 0; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.feature-list-text strong { display: block; font-weight: 600; color: var(--dark); font-size: 0.96rem; }
.feature-list-text span { color: var(--text-muted); font-size: 0.86rem; line-height: 1.45; }

/* Single feature cards (alt features grid if needed) */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--primary);
  margin-bottom: 16px;
}
.feature-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  gap: 18px;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-check {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--primary);
}
.why-card:hover .why-check { background: var(--gradient-btn); color: #fff; }
.why-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { background: var(--bg-violet); }
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-number {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-primary);
}
.step-card h4 { font-size: 1.18rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 0; }
.step-connector {
  position: absolute;
  top: 60px; right: -14px;
  font-size: 1.4rem;
  color: var(--primary-light);
  z-index: 2;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-section .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--dark);
  padding: 20px 24px;
  background: #fff;
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--bg-violet);
  box-shadow: none;
}
.faq-section .accordion-button:focus { box-shadow: none; border-color: var(--border); }
.faq-section .accordion-button::after {
  background-image: none;
  content: '\F64D';
  font-family: 'bootstrap-icons';
  font-size: 1rem;
  width: auto; height: auto;
  color: var(--primary);
  transition: transform 0.3s ease;
}
.faq-section .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.faq-section .accordion-body { padding: 4px 24px 22px; color: var(--text-muted); font-size: 0.97rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section { background: var(--dark); position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(22,163,74,0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(74,222,128,0.22), transparent 50%);
}
.cta-box {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}
.cta-box h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.cta-box p { color: #d1fae5; font-size: 1.1rem; margin-bottom: 14px; }
.cta-box .cta-buttons { margin-top: 14px; }
.cta-box .cta-buttons .btn { margin: 6px 8px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-light); }
.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

/* ════════════════════════════════════════════════════════════
   Angular (Materialize-based) contact form
   Scoped so it can't touch Bootstrap; re-implements the
   Materialize responsive grid + aligned floating labels.
   ════════════════════════════════════════════════════════════ */
.contact-form-wrapper app-root,
.contact-form-wrapper app-contactus,
.contact-form-wrapper router-outlet { display: block; }

/* Responsive flex grid (replaces missing Materialize .row/.col) */
.contact-form-wrapper .row {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  gap: 0 18px; margin: 0; width: 100%;
}
.contact-form-wrapper .row .row { margin: 0; }
.contact-form-wrapper .row .row .input-field { padding: 0; }
.contact-form-wrapper .col { box-sizing: border-box; min-width: 0; }
.contact-form-wrapper .col.s12 { flex: 1 1 100%; max-width: 100%; }
.contact-form-wrapper .col.s8  { flex: 1 1 calc(66.6667% - 9px); }
.contact-form-wrapper .col.s4  { flex: 1 1 calc(33.3333% - 9px); }
@media (min-width: 601px) {
  .contact-form-wrapper .col.m6 { flex: 1 1 calc(50% - 9px); max-width: calc(50% - 9px); }
  .contact-form-wrapper .col.m5 { flex: 1 1 calc(41% - 9px); max-width: calc(41% - 9px); }
  .contact-form-wrapper .col.m7 { flex: 1 1 calc(59% - 9px); max-width: calc(59% - 9px); }
  /* The phone-group column wraps a nested row — let it span full width so
     the country code + phone number have room (its pair field is hidden). */
  .contact-form-wrapper .col:has(.row) { flex-basis: 100%; max-width: 100%; }
}
@media (max-width: 600px) {
  .contact-form-wrapper .col { flex: 1 1 100% !important; max-width: 100% !important; }
}

/* Field container + aligned floating label */
.contact-form-wrapper .input-field { position: relative; margin: 0 0 24px; }
.contact-form-wrapper .input-field > label {
  position: absolute; top: 14px; left: 16px;
  color: var(--text-light); font-size: 0.95rem; font-weight: 500;
  pointer-events: none; transition: all 0.18s ease; transform-origin: left top;
}
.contact-form-wrapper .input-field > label.active,
.contact-form-wrapper .input-field > input:focus + label,
.contact-form-wrapper .input-field > textarea:focus + label {
  top: -9px; left: 12px; font-size: 0.74rem; font-weight: 600;
  color: var(--primary); background: #fff; padding: 0 6px;
}

/* Inputs / textarea */
.contact-form-wrapper input:not([type='checkbox']):not([type='radio']):not([type='submit']),
.contact-form-wrapper textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text);
  outline: none;
  box-shadow: none;
  transition: all 0.25s ease;
  margin: 0;
  box-sizing: border-box;
  height: auto;
  line-height: 1.4;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}
.contact-form-wrapper textarea { min-height: 120px; resize: vertical; }

/* ng-select country dropdown — match the inputs */
.contact-form-wrapper .ng-select .ng-select-container {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  min-height: 50px !important;
  box-shadow: none !important;
  padding-left: 6px;
}
.contact-form-wrapper .ng-select.ng-select-focused .ng-select-container {
  border-color: var(--primary-light) !important;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15) !important;
}
.contact-form-wrapper .ng-select .ng-dropdown-panel {
  border-radius: var(--radius-sm); box-shadow: var(--shadow); border-color: var(--border);
}
.contact-form-wrapper .ng-select .ng-option.ng-option-marked,
.contact-form-wrapper .ng-select .ng-option.ng-option-selected {
  background: var(--bg-violet) !important; color: var(--primary) !important;
}

/* reCAPTCHA spacing */
.contact-form-wrapper re-captcha,
.contact-form-wrapper .g-recaptcha { display: block; margin: 6px 0 20px; }

/* Submit button */
.contact-form-wrapper .btn,
.contact-form-wrapper button[type='submit'] {
  background: var(--gradient-btn);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 34px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(22,163,74,0.28);
  transition: all 0.25s ease;
  text-transform: none;
  letter-spacing: normal;
  width: 100%;
  height: auto;
  line-height: normal;
}
.contact-form-wrapper button[type='submit']:disabled { opacity: 0.55; cursor: not-allowed; box-shadow: none; }
.contact-form-wrapper .btn:hover:not(:disabled),
.contact-form-wrapper button[type='submit']:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}
.contact-form-wrapper .helper-text,
.contact-form-wrapper .red-text { color: #dc3545 !important; font-size: 0.82rem; }
.contact-form-wrapper .green-text { color: #198754 !important; }
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.3s ease;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-info-icon {
  width: 58px; height: 58px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--primary);
}
.contact-info-card h5 { font-size: 1.05rem; margin-bottom: 6px; }
.contact-info-card p { margin-bottom: 0; }
.contact-info-card a { color: var(--text-muted); font-weight: 500; }
.contact-info-card a:hover { color: var(--primary); }
#formMessage .alert { border-radius: var(--radius-sm); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: #cbd5e1; padding: 70px 0 0; }
.footer-about p { color: #9aa7b8; font-size: 0.94rem; margin-top: 14px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  margin-right: 8px;
  font-size: 1.05rem;
}
.social-links a:hover { background: var(--gradient-btn); transform: translateY(-3px); }
.footer-title { color: #fff; font-size: 1.05rem; margin-bottom: 18px; font-family: 'Poppins', sans-serif; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #9aa7b8; font-size: 0.92rem; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 50px 0 24px; }
.footer-bottom { padding-bottom: 26px; }
.footer-bottom p { color: #7d8a9e; font-size: 0.88rem; margin: 0; text-align: center; }

/* ── Scroll reveal (keyframe-based — reliable, never leaves content hidden) ── */
.reveal { opacity: 0; }
.reveal.visible { animation: revealUp 0.6s ease forwards; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Safety net: if JS/observer never runs, show everything */
.no-js .reveal { opacity: 1; }

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-primary);
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1040;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); color: #fff; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .navbar-collapse { background: #fff; padding: 18px; border-radius: 16px; margin-top: 12px; box-shadow: var(--shadow); }
  .hero-section { padding-top: 70px; }
  .hero-icons-grid { margin: 40px auto 0; }
  .py-section { padding: 64px 0; }
  .step-connector { display: none; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .contact-form-wrapper { padding: 26px; }
  .feature-group, .solution-card { padding: 26px 22px; }
  .hero-cta .btn { width: 100%; margin-right: 0; }
}

/* ════════════════════════════════════════════════════════════
   CATEGORY PAGES (grocery, fashion, …) — shared components
   Reuses the orange #16a34a + navy #102030 brand system.
   ════════════════════════════════════════════════════════════ */

/* ── Category hero ── */
.cat-hero { position: relative; overflow: hidden; padding: 120px 0 70px;
  background:
    radial-gradient(circle at 12% 18%, rgba(22,163,74,0.13) 0%, transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(16,32,48,0.08) 0%, transparent 45%),
    linear-gradient(180deg, #effdf5 0%, #ffffff 100%); }
.cat-hero::before { content:''; position:absolute; inset:0; pointer-events:none;
  background-image: radial-gradient(rgba(22,163,74,0.05) 1px, transparent 1px); background-size: 30px 30px; }
.cat-hero .container { position: relative; z-index: 2; }
.cat-eyebrow { display:inline-flex; align-items:center; gap:8px; background:#fff; color:var(--primary);
  font-weight:600; font-size:0.8rem; letter-spacing:0.05em; padding:8px 18px; border-radius:50px;
  box-shadow:var(--shadow-sm); border:1px solid var(--border); margin-bottom:22px; }
.cat-eyebrow i { font-size:1rem; }
.cat-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); font-weight:800; line-height:1.12; margin-bottom:20px; }
.cat-hero .lead { font-size:1.18rem; color:var(--text); font-weight:500; line-height:1.6; max-width:760px; }
.cat-hero-cta { margin-top:30px; }
.cat-hero-cta .btn { margin:6px 12px 6px 0; }
.cat-hero-points { display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:28px; }
.cat-hero-points span { display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:0.92rem; color:var(--dark); }
.cat-hero-points i { color:var(--primary); font-size:1.1rem; }

/* ── Intro / prose ── */
.cat-prose p { font-size:1.05rem; color:var(--text-muted); line-height:1.8; margin-bottom:1.1rem; }
.cat-prose .hl { color:var(--primary); font-weight:600; }
.cat-prose strong { color:var(--dark); }
.cat-benchmark { background:var(--bg-violet); border-left:4px solid var(--primary); border-radius:0 14px 14px 0;
  padding:22px 26px; font-size:1rem; color:var(--text); line-height:1.7; }
.cat-benchmark b { color:var(--primary); }

/* ── "Why X needs its own software" — problem list ── */
.reason-item { display:flex; gap:16px; background:#fff; border:1px solid var(--border); border-radius:14px;
  padding:22px 24px; box-shadow:var(--shadow-sm); height:100%; transition:all .25s ease; }
.reason-item:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); border-color:var(--primary-light); }
.reason-num { flex-shrink:0; width:38px; height:38px; border-radius:10px; background:var(--gradient-soft);
  color:var(--primary); font-family:'Poppins',sans-serif; font-weight:700; display:flex; align-items:center; justify-content:center; }
.reason-item:hover .reason-num { background:var(--gradient-btn); color:#fff; }
.reason-item p { margin:0; color:var(--text-muted); font-size:0.97rem; line-height:1.6; }
.reason-item p strong { color:var(--dark); display:block; margin-bottom:2px; }

/* ── Two-ways-to-launch / model cards ── */
.launch-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:34px;
  height:100%; box-shadow:var(--shadow-sm); transition:all .3s ease; position:relative; overflow:hidden; }
.launch-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-6px); }
.launch-card.is-primary { border:2px solid var(--primary); }
.launch-badge { display:inline-block; background:var(--gradient-btn); color:#fff; font-size:0.72rem; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase; padding:5px 14px; border-radius:50px; margin-bottom:16px; }
.launch-badge.ghost { background:var(--bg-violet); color:var(--primary); }
.launch-card h3 { font-size:1.4rem; margin-bottom:14px; }
.launch-card > p { color:var(--text-muted); font-size:0.98rem; line-height:1.7; margin-bottom:18px; }
.launch-best { background:var(--bg-light); border-radius:12px; padding:14px 18px; font-size:0.9rem; color:var(--text-muted); }
.launch-best b { color:var(--dark); }

/* ── Numbered feature grid (platform includes / core features) ── */
.feat-num-card { background:#fff; border:1px solid var(--border); border-radius:16px; padding:26px 24px;
  height:100%; box-shadow:var(--shadow-sm); transition:all .28s ease; position:relative; }
.feat-num-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-5px); border-color:var(--primary-light); }
.feat-num-top { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.feat-num-badge { width:46px; height:46px; flex-shrink:0; border-radius:12px; background:var(--gradient-soft);
  color:var(--primary); display:flex; align-items:center; justify-content:center; font-size:1.4rem; transition:all .28s ease; }
.feat-num-card:hover .feat-num-badge { background:var(--gradient-btn); color:#fff; }
.feat-num-badge i { font-size:1.4rem; }
.feat-num-card h4 { font-size:1.06rem; margin:0; line-height:1.3; }
.feat-num-card p { color:var(--text-muted); font-size:0.92rem; line-height:1.6; margin:0; }
.feat-link { display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-size:0.85rem; font-weight:600; color:var(--primary); }
.feat-link i { transition:transform .2s ease; }
.feat-link:hover i { transform:translateX(4px); }

/* ── Model-grouped feature band ── */
.feat-band-head { display:flex; align-items:center; gap:14px; margin-bottom:8px; }
.feat-band-tag { display:inline-flex; align-items:center; gap:8px; font-size:0.78rem; font-weight:700; letter-spacing:0.06em;
  text-transform:uppercase; padding:6px 16px; border-radius:50px; }
.feat-band-tag.sv { background:rgba(22,163,74,0.12); color:var(--primary); }
.feat-band-tag.mv { background:rgba(16,32,48,0.10); color:var(--secondary); }
.feat-band-tag.both { background:#e6f7ee; color:#1a7d4b; }
.feat-band-desc { color:var(--text-muted); font-size:1rem; max-width:760px; margin:10px auto 36px; }

/* ── Comparison table ── */
.compare-wrap { overflow-x:auto; border-radius:var(--radius-lg); box-shadow:var(--shadow); border:1px solid var(--border); }
.compare-table { width:100%; border-collapse:collapse; background:#fff; min-width:680px; }
.compare-table th, .compare-table td { padding:18px 22px; text-align:left; vertical-align:top; border-bottom:1px solid var(--border); font-size:0.95rem; }
.compare-table thead th { font-family:'Poppins',sans-serif; font-weight:700; font-size:1.02rem; color:#fff; }
.compare-table thead th:first-child { background:var(--secondary); border-top-left-radius:0; }
.compare-table thead th.sv-col { background:linear-gradient(135deg,#16a34a,#4ade80); }
.compare-table thead th.mv-col { background:linear-gradient(135deg,#16263c,#2a3f5f); }
.compare-table tbody th { background:var(--bg-violet); font-weight:700; color:var(--dark); width:190px; font-family:'Inter',sans-serif; }
.compare-table tbody td { color:var(--text-muted); }
.compare-table tbody tr:nth-child(even) td { background:#fcfaf8; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom:none; }

/* ── Deliverables ── */
.deliver-card { display:flex; gap:18px; background:#fff; border:1px solid var(--border); border-radius:14px;
  padding:24px; height:100%; box-shadow:var(--shadow-sm); transition:all .25s ease; }
.deliver-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.deliver-icon { width:50px; height:50px; flex-shrink:0; border-radius:12px; background:var(--gradient-btn);
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.4rem; }
.deliver-card h4 { font-size:1.05rem; margin-bottom:6px; }
.deliver-card p { color:var(--text-muted); font-size:0.9rem; line-height:1.6; margin:0; }

/* ── Tech stack ── */
.tech-section { background:var(--dark); color:#fff; position:relative; overflow:hidden; }
.tech-section::before { content:''; position:absolute; top:-140px; right:-100px; width:420px; height:420px;
  background:radial-gradient(circle, rgba(22,163,74,0.22), transparent 70%); border-radius:50%; }
.tech-section .section-title, .tech-section .lead-light { color:#fff; }
.tech-section .section-badge { background:rgba(255,255,255,0.08); color:#bbf7d0; border-color:rgba(255,255,255,0.14); }
.tech-section .lead-light { color:#cbd5e1; position:relative; z-index:1; }
.tech-row { display:flex; gap:18px; align-items:flex-start; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1);
  border-radius:14px; padding:22px 24px; height:100%; transition:all .25s ease; position:relative; z-index:1; }
.tech-row:hover { background:rgba(255,255,255,0.09); border-color:var(--primary-light); }
.tech-row .ti { width:46px; height:46px; flex-shrink:0; border-radius:12px; background:var(--gradient-btn);
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.3rem; }
.tech-row h5 { color:#fff; font-size:0.95rem; margin:0 0 4px; }
.tech-row p { color:#cbd5e1; font-size:0.88rem; margin:0; line-height:1.55; }
.tech-note { position:relative; z-index:1; color:#9aa7b8; font-size:0.95rem; text-align:center; margin-top:36px; max-width:780px; margin-left:auto; margin-right:auto; }

/* ── Category CTA + breadcrumb ── */
.cat-breadcrumb { font-size:0.85rem; color:var(--text-light); margin-bottom:16px; }
.cat-breadcrumb a { color:var(--text-muted); }
.cat-breadcrumb a:hover { color:var(--primary); }
.cat-breadcrumb .sep { margin:0 8px; color:var(--border); }

/* ── Linked industry cards (landing → category pages) ── */
.industry-link { display:block; color:inherit; }
.industry-link:hover { color:inherit; }
.industry-explore { display:inline-flex; align-items:center; gap:6px; margin-top:14px;
  font-size:0.85rem; font-weight:600; color:var(--primary); opacity:0; transform:translateY(4px); transition:all .25s ease; }
.industry-link:hover .industry-explore { opacity:1; transform:translateY(0); }
.industry-link .industry-explore i { transition:transform .2s ease; }
.industry-link:hover .industry-explore i { transform:translateX(4px); }
@media (max-width: 991px){ .industry-explore { opacity:1; transform:none; } }

/* Fix: keep deliverable icons square inside flex-row receive cards */
.receive-card .receive-icon { flex-shrink: 0; align-self: flex-start; }
/* ════════════════════════════════════════════════════════════
   CATEGORY-PAGE VISUAL IDENTITY
   Deliberately distinct from the main ecommerce landing page:
   filled accent chips, section-title underlines, structured cards,
   a bolder hero. Uses var(--primary) so each page keeps its colour.
   ════════════════════════════════════════════════════════════ */

/* Hero — cleaner two-tone backdrop + soft accent corner (no dot grid) */
.cat-hero {
  background: linear-gradient(115deg, var(--bg-violet) 0%, #ffffff 62%);
  border-bottom: 1px solid var(--border);
}
.cat-hero::before { display: none; }
.cat-hero::after {
  content: ''; position: absolute; top: -10%; right: -6%; width: 46%; height: 120%;
  background: radial-gradient(circle at 70% 35%, var(--primary-light) 0%, transparent 62%);
  opacity: 0.18; pointer-events: none;
}

/* Eyebrow → filled accent chip */
.cat-eyebrow { background: var(--gradient-btn); color: #fff; border: none; box-shadow: 0 8px 22px rgba(0,0,0,0.12); }
.cat-eyebrow i { color: #fff; }

/* Hero icon tiles → accent-filled (landing uses soft-tinted) */
.cat-hero .hero-icon-card { border-color: transparent; box-shadow: 0 10px 30px rgba(16,32,48,0.08); }
.cat-hero .hero-icon-wrapper { background: var(--gradient-btn); color: #fff; }
.cat-hero .hero-icon-card:hover .hero-icon-wrapper { transform: scale(1.08); }

/* Section titles → accent underline signature */
.section-header .section-title::after {
  content: ''; display: block; width: 58px; height: 4px; border-radius: 4px;
  background: var(--gradient-btn); margin: 18px auto 0;
}

/* Section badges → solid accent on light sections (landing uses tinted) */
.section-badge { background: var(--primary); color: #fff; border-color: transparent; }

/* Structured cards — sharper, with a persistent accent edge */
.feat-num-card { border-top: 3px solid var(--primary); border-radius: 14px; }
.reason-item { border-left: 4px solid var(--primary); }
.launch-card, .deliver-card, .industry-card { border-radius: 16px; }

/* ── Hero stack (grocery) — app-style platform-suite preview ── */
.hero-stack { background:#fff; border:1px solid var(--border); border-radius:20px; padding:12px;
  box-shadow:var(--shadow-lg); max-width:460px; margin-left:auto; }
.hero-stack-head { display:flex; align-items:center; gap:8px; font-family:'Poppins',sans-serif; font-weight:700;
  color:var(--dark); font-size:.86rem; padding:12px 14px 8px; }
.hero-stack-head i { color:var(--primary); font-size:1.05rem; }
.hero-stack-row { display:flex; align-items:center; gap:14px; padding:12px 14px; border-radius:13px;
  transition:all .2s ease; animation:floatUp .6s ease backwards; }
.hero-stack-row:hover { background:var(--bg-violet); }
.hsr-ic { width:44px; height:44px; flex-shrink:0; border-radius:12px; background:var(--gradient-btn); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.2rem; }
.hsr-tx strong { display:block; font-size:.92rem; color:var(--dark); line-height:1.2; }
.hsr-tx small { color:var(--text-muted); font-size:.79rem; }
@media(max-width:991px){ .hero-stack { margin:36px auto 0; } }

/* ── App showcase (grocery) — bold device frames ── */
.app-showcase { background: var(--bg-light); }
.phone-slider { overflow:hidden; position:relative;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.phone-track { display:flex; width:max-content; animation:phone-scroll 42s linear infinite; will-change:transform; }
.phone-slider:hover .phone-track { animation-play-state:paused; }
@keyframes phone-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.phone { margin:0 26px 0 0; text-align:center; flex:0 0 auto; width:228px; }
.phone-screen { aspect-ratio:412/917; border-radius:26px; overflow:hidden; border:7px solid var(--dark);
  background:var(--dark); box-shadow:var(--shadow-lg); transition:all .25s ease; }
.phone:hover .phone-screen { transform:translateY(-6px) scale(1.02); box-shadow:0 26px 50px rgba(22,163,74,0.28); }
.phone-screen img { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; }
.phone figcaption { margin-top:14px; font-size:.82rem; font-weight:600; color:var(--text-muted); }
@media(max-width:575px){ .phone { width:185px; margin-right:18px; } }
/* ════════════════════════════════════════════════════════════
   MOBILE APP SECTION — layered 3-phone mockup + sliding screen
   ════════════════════════════════════════════════════════════ */
.mobile-app-section { background:var(--dark); color:#fff; position:relative; overflow:hidden; }
.mobile-app-section::before { content:''; position:absolute; top:-25%; right:-12%; width:520px; height:520px;
  background:radial-gradient(circle, var(--primary) 0%, transparent 62%); opacity:0.22; pointer-events:none; }
.mobile-app-section::after { content:''; position:absolute; bottom:-25%; left:-12%; width:460px; height:460px;
  background:radial-gradient(circle, var(--primary-light) 0%, transparent 62%); opacity:0.14; pointer-events:none; }
.mobile-app-section .container { position:relative; z-index:1; }
.app-eyebrow { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.16); color:#fff; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  font-size:.72rem; padding:8px 18px; border-radius:50px; margin-bottom:20px; }
.app-eyebrow i { color:var(--primary-light); }
.mobile-app-section .section-title { color:#fff; text-align:left; }
.mobile-app-section .section-title::after { display:none; }
.app-desc { color:#cbd5e1; font-size:1.05rem; line-height:1.7; margin:18px 0 24px; max-width:540px; }
.app-pills { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px; }
.app-pill { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.15); color:#fff; padding:9px 16px; border-radius:50px; font-size:.85rem; font-weight:500; }
.app-pill i { color:var(--primary-light); }
.app-badges { display:flex; gap:14px; flex-wrap:wrap; }
.store-badge { display:inline-flex; align-items:center; gap:12px; background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.22); border-radius:14px; padding:10px 20px; color:#fff; transition:all .2s ease; }
.store-badge:hover { background:rgba(255,255,255,0.12); color:#fff; transform:translateY(-2px); }
.store-badge i { font-size:1.7rem; }
.store-badge span { display:flex; flex-direction:column; line-height:1.12; }
.store-badge small { font-size:.62rem; opacity:.85; }
.store-badge strong { font-size:1.02rem; font-weight:700; }

/* Phone mockup */
.phone-mockup { position:relative; min-height:580px; display:flex; align-items:center; justify-content:center; }
.os-badge { position:absolute; top:18px; left:50%; transform:translateX(-46%); z-index:6;
  display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25);
  color:#fff; font-weight:600; font-size:.85rem; padding:9px 18px; border-radius:50px; backdrop-filter:blur(8px); }
.os-badge .bi-android2 { color:#3ddc84; }
.device { border-radius:34px; border:9px solid #0b0f17; background:#0b0f17; box-shadow:0 34px 70px rgba(0,0,0,.55); overflow:hidden; }
.device.main { position:relative; z-index:3; width:264px; aspect-ratio:412/917; }
.device-screen { position:relative; width:100%; height:100%; overflow:hidden; border-radius:24px; background:#fff; }
.device-slides { display:flex; height:100%; }
.phone-mockup:hover .device-slides { animation-play-state:paused; }
.device-slides img { flex:0 0 100%; width:100%; height:100%; object-fit:cover; object-position:top center; display:block; }
.device.ghost { position:absolute; width:216px; aspect-ratio:412/917; opacity:.92; }
.device.ghost img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.device.ghost.left { left:2%; bottom:5%; transform:rotate(-10deg); z-index:1; }
.device.ghost.right { right:2%; top:7%; transform:rotate(10deg); z-index:2; }
@media(max-width:991px){ .phone-mockup { min-height:520px; margin-top:24px; } .device.ghost { display:none; } .device.main { width:248px; } }
/* ════════ Web Platform Preview (browser-frame gallery) ════════ */
.webshowcase-section .browser-frame { background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; box-shadow:var(--shadow); transition:transform .3s ease, box-shadow .3s ease; height:100%; }
.webshowcase-section .browser-frame:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.webshowcase-section .browser-bar { display:flex; align-items:center; gap:7px; padding:11px 16px; background:#f1f5f9; border-bottom:1px solid var(--border); }
.webshowcase-section .browser-bar .bdot { width:11px; height:11px; border-radius:50%; background:#cbd5e1; flex-shrink:0; }
.webshowcase-section .browser-bar .bdot:nth-child(1){ background:#ff5f57; }
.webshowcase-section .browser-bar .bdot:nth-child(2){ background:#febc2e; }
.webshowcase-section .browser-bar .bdot:nth-child(3){ background:#28c840; }
.webshowcase-section .browser-url { margin-left:10px; font-size:.78rem; color:var(--text-muted); background:#fff; border:1px solid var(--border); border-radius:7px; padding:4px 14px; flex:1; max-width:340px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.webshowcase-section .browser-shot { overflow:hidden; background:#fff; }
.webshowcase-section .browser-shot img { width:100%; display:block; object-fit:cover; object-position:top; }
.webshowcase-section .browser-frame.featured .browser-shot { height:clamp(360px,52vh,600px); }
.webshowcase-section .browser-frame.featured .browser-shot img { height:100%; }
.webshowcase-section .shot-card .browser-shot { height:250px; }
.webshowcase-section .shot-card .browser-shot img { height:100%; }
.webshowcase-section .shot-cap { padding:14px 18px; font-weight:600; font-size:.95rem; color:var(--dark); display:flex; align-items:center; gap:9px; border-top:1px solid var(--border); }
.webshowcase-section .shot-cap i { color:var(--primary); font-size:1.1rem; }
@media(max-width:575px){ .webshowcase-section .shot-card .browser-shot { height:200px; } }
