/* ==============================================================================
   Soft Futura - Products Page Stylesheet (products.css)
   Recreated to match the reference design: Clean White + Soft Pastel Cards + Deep Navy
   ============================================================================== */

/* Base Page Overrides */
.products-page {
  background-color: #ffffff;
  color: #334155;
  font-family: var(--font-body, 'Inter', sans-serif);
  -webkit-font-smoothing: antialiased;
}


.products-page h1,
.products-page h2,
.products-page h3,
.products-page h4 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
}

.prod-container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

section,
.prod-hero,
.prod-intro-section,
.prod-grid-section,
.prod-cta-section,
.prod-section {
  width: 100%;
  box-sizing: border-box;
}

/* Common Section Headers */
.prod-section {
  padding: 80px 0;
  position: relative;
}

.prod-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.prod-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 12px;
}

.prod-section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0b1528;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.prod-title-underline {
  width: 54px;
  height: 3px;
  background: #2563eb;
  border-radius: 9999px;
  margin: 0 auto 16px;
}

.prod-section-desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 auto;
}

/* Buttons */
.prod-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2563eb;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
}

.prod-btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.prod-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  transition: transform 0.2s ease;
}

.prod-btn-primary:hover svg {
  transform: translateX(2px);
}

.prod-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #1e293b !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  transition: all 0.2s ease;
  cursor: pointer;
}

.prod-btn-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a !important;
  transform: translateY(-1px);
}

/* ==============================================================================
/* ==============================================================================
   SECTION 1 — HERO SECTION (Dark Enterprise Navy Atmosphere with Full Panoramic Visual)
   ============================================================================== */
.prod-hero {
  position: relative;
  background-color: #001338;
  background-image:
    linear-gradient(90deg, #001338 0%, #001338 28%, rgba(0, 19, 56, 0.7) 40%, transparent 54%),
    url('../images/hero/products-hero-bg.webp');
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right 40px center;
  background-size: 100% 100%, auto 64%;
  padding-top: 110px;
  padding-bottom: 45px;
  min-height: 490px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f1f5f9;
}

/* Atmospheric subtle gradient on left to guarantee crisp text contrast */
.prod-hero::before {
  display: none;
}

.prod-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.prod-hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.prod-hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 12px;
}

.prod-hero-title {
  font-size: clamp(2.1rem, 3.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.prod-hero-title span {
  color: #38bdf8;
}

.prod-hero-desc {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 24px;
  max-width: 530px;
}

/* 4 Value Points Row Under Description */
.prod-value-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 600px;
}

.prod-value-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prod-value-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #38bdf8;
}

.prod-value-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.prod-value-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.35;
  margin: 0;
}

.prod-value-sub {
  font-size: 0.775rem;
  color: #94a3b8;
  line-height: 1.35;
  margin: 0;
}

/* Hero Right: Seamless desktop display via background */
.prod-hero-visual-wrap {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {

  .prod-hero-visual-container,
  .prod-hero-dots,
  .prod-hero-blob,
  .prod-script-badge {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .prod-hero {
    background-color: #001338;
    background-image:
      radial-gradient(circle at 50% 18%, rgba(37, 99, 235, 0.28) 0%, transparent 65%),
      linear-gradient(180deg, #001338 0%, #011b48 50%, #001338 100%);
    background-position: center;
    background-size: 100% 100%;
    padding-top: 100px;
    padding-bottom: 45px;
    min-height: auto;
  }

  .prod-hero::before {
    display: none !important;
  }

  .prod-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .prod-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .prod-hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }

  .prod-hero-title {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .prod-hero-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 20px;
    color: #94a3b8;
  }

  .prod-value-points {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
  }

  .prod-value-item {
    gap: 8px;
  }

  .prod-value-title {
    font-size: 0.725rem;
    line-height: 1.3;
  }

  .prod-value-icon {
    width: 32px;
    height: 32px;
  }

  .prod-value-icon svg {
    width: 16px;
    height: 16px;
  }

  .prod-hero-visual-wrap,
  .prod-hero-visual-container,
  .prod-hero-dots,
  .prod-hero-blob,
  .prod-script-badge {
    display: none !important;
  }
}

.prod-hero-visual-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.14));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.prod-hero-devices-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.prod-devices-composition {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Desktop Monitor Screen in Background */
.prod-monitor-mockup {
  position: absolute;
  top: 10px;
  right: 40px;
  width: 380px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  border: 1px solid #cbd5e1;
  overflow: hidden;
  z-index: 2;
}

.prod-mockup-bar {
  height: 22px;
  background: #0f172a;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}

.prod-mockup-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #475569;
}

.prod-mockup-screen {
  padding: 10px;
  background: #f8fafc;
}

/* Laptop Mockup in Front Left */
.prod-laptop-mockup {
  position: relative;
  width: 320px;
  background: #0f172a;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
  border: 1px solid #334155;
  overflow: hidden;
  z-index: 3;
  margin-right: 140px;
}

.prod-laptop-inner {
  padding: 10px;
  background: #ffffff;
}

.prod-mini-dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.prod-mini-dash-head span {
  font-size: 0.7rem;
  color: #0f172a;
  font-weight: 700;
}

.prod-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.prod-mini-stat {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px;
}

.prod-mini-stat span {
  display: block;
  font-size: 0.55rem;
  color: #64748b;
  font-weight: 600;
}

.prod-mini-stat strong {
  font-size: 0.8rem;
  color: #0f172a;
  font-weight: 800;
}

.prod-mini-chart-lines {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 48px;
  padding: 4px;
  background: #f1f5f9;
  border-radius: 6px;
}

.prod-mini-chart-lines div {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #38bdf8 0%, #2563eb 100%);
}

/* Smartphone Mockup on the Right */
.prod-phone-mockup {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 140px;
  height: 250px;
  background: #0f172a;
  border: 3px solid #1e293b;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  z-index: 4;
  display: flex;
  flex-direction: column;
}

.prod-phone-top {
  height: 14px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-phone-notch {
  width: 36px;
  height: 4px;
  background: #334155;
  border-radius: 9999px;
}

.prod-phone-screen {
  flex: 1;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 40%, #ffffff 40%);
  padding: 8px;
  display: flex;
  flex-direction: column;
}

.prod-phone-hero {
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.prod-phone-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prod-phone-row {
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
}

/* ==============================================================================
   SECTION 2 — PRODUCTS INTRO (White Section)
   ============================================================================== */
.prod-intro-section {
  background: #ffffff;
  padding: 60px 0 20px;
}

/* ==============================================================================
   SECTION 3 — 8 PRODUCT CARDS GRID
   ============================================================================== */
.prod-grid-section {
  background: #ffffff;
  padding: 20px 0 90px;
}

.prod-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Single Product Card */
.prod-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.1);
}

/* Top Image Area (Fixed 180px height) */
.prod-card-top-image {
  height: 180px;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #f1f5f9;
}

.prod-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-card:hover .prod-card-thumb {
  transform: scale(1.06);
}

/* Distinct pastel backgrounds */
.prod-bg-pharma {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.prod-bg-loan-mgmt {
  background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
}

.prod-bg-loan-coll {
  background: linear-gradient(135deg, #ffedd5 0%, #fff7ed 100%);
}

.prod-bg-insurance {
  background: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 100%);
}

.prod-bg-posp {
  background: linear-gradient(135deg, #ffe4e6 0%, #fff1f2 100%);
}

.prod-bg-whatsapp {
  background: linear-gradient(135deg, #dcfce7 0%, #ecfdf5 100%);
}

.prod-bg-ecommerce {
  background: linear-gradient(135deg, #e0f2fe 0%, #eff6ff 100%);
}

.prod-bg-grocery {
  background: linear-gradient(135deg, #fef9c3 0%, #fefce8 100%);
}

/* Card Mockup Device Container Inside Pastel Area */
.prod-card-visual-device {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Laptop Mockup Inside Card */
.prod-card-laptop {
  width: 175px;
  background: #0f172a;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.prod-card-laptop-screen {
  background: #ffffff;
  padding: 8px;
  height: 95px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Phone Mockup Inside Card */
.prod-card-phone {
  width: 80px;
  height: 135px;
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prod-card-phone-screen {
  flex: 1;
  background: #ffffff;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Floating Accessory / 3D Element Inside Pastel Area */
.prod-card-accessory {
  position: absolute;
  bottom: 10px;
  right: 14px;
  z-index: 3;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.prod-acc-pill {
  background: #2563eb;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
}

.prod-acc-shield {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #8b5cf6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-acc-shield svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.prod-acc-cart {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-acc-cart svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.prod-acc-wa {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.prod-acc-wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.prod-acc-coins {
  display: flex;
  align-items: center;
  gap: -6px;
}

.prod-coin {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  border: 1.5px solid #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
}

/* Card Content Area */
.prod-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Product Icon + Title Header */
.prod-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.prod-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

/* Distinct Icon Pill Colors */
.icon-pharma {
  background: #eff6ff;
  color: #2563eb;
}

.icon-loan {
  background: #f0fdf4;
  color: #16a34a;
}

.icon-collection {
  background: #fff7ed;
  color: #ea580c;
}

.icon-insurance {
  background: #f5f3ff;
  color: #7c3aed;
}

.icon-posp {
  background: #fff1f2;
  color: #e11d48;
}

.icon-whatsapp {
  background: #f0fdf4;
  color: #16a34a;
}

.icon-ecommerce {
  background: #eff6ff;
  color: #0284c7;
}

.icon-grocery {
  background: #fefce8;
  color: #ca8a04;
}

.prod-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
}

.prod-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 16px;
  min-height: 58px;
}

/* Feature Checklist with blue circle check icons */
.prod-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.prod-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
}

.prod-check-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-check-icon svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.8;
  fill: none;
}

/* Card Buttons Fixed at Bottom */
.prod-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.prod-card-actions .prod-btn-primary,
.prod-card-actions .prod-btn-secondary {
  flex: 1;
  padding: 9px 12px;
  font-size: 0.8125rem;
  text-align: center;
}

/* ==============================================================================
   SECTION 4 — CUSTOM SOLUTION CTA (Slim Floating Card with Clear Separation)
   ============================================================================== */
.prod-cta-section {
  background: #f8fafc;
  padding: 32px 0 40px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.prod-cta-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.prod-cta-flex {
  background: linear-gradient(135deg, #050f24 0%, #0a1e45 60%, #0c2860 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 26px 40px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.prod-cta-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.prod-cta-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.prod-cta-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

.prod-cta-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #060f22 !important;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.prod-cta-pill-btn:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.prod-cta-pill-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.2s ease;
}

.prod-cta-pill-btn:hover svg {
  transform: translateX(3px);
}

/* ==============================================================================
   DEMO REQUEST MODAL
   ============================================================================== */
.prod-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.prod-modal-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.prod-modal-backdrop.is-open .prod-modal-card {
  transform: translateY(0) scale(1);
}

.prod-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.1rem;
}

.prod-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.prod-modal-header {
  margin-bottom: 22px;
}

.prod-modal-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.prod-modal-header p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.prod-form-group {
  margin-bottom: 14px;
}

.prod-form-input,
.prod-form-select,
.prod-form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.prod-form-input:focus,
.prod-form-select:focus,
.prod-form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.prod-form-textarea {
  min-height: 75px;
  resize: vertical;
}

.prod-form-btn {
  width: 100%;
  padding: 13px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 6px;
  font-family: var(--font-body);
}

.prod-form-btn:hover {
  background: #1d4ed8;
}

.prod-form-status {
  margin-top: 12px;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.825rem;
  display: none;
}

.prod-form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.prod-form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================== */
@media (max-width: 1199px) {
  .prod-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .prod-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prod-hero-desc {
    max-width: 100%;
  }

  .prod-devices-composition {
    max-width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .prod-hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .prod-value-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .prod-cta-flex {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .prod-section {
    padding: 50px 0;
  }

  .prod-cards-grid {
    grid-template-columns: 1fr;
  }

  .prod-value-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .prod-monitor-mockup {
    display: none;
  }

  .prod-laptop-mockup {
    margin-right: 0;
    width: 100%;
  }

  .prod-script-badge {
    left: 10px;
    top: -25px;
  }

  .prod-modal-card {
    padding: 24px 20px;
  }
}