/* ==============================================================================
   SOFT FUTURA - FOOD DELIVERY APP SOLUTION
   Product Detail Page Stylesheet
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

:root {
  --fd-navy-dark: #030712;
  --fd-navy-deep: #050d24;
  --fd-navy-card: #0b1536;
  --fd-blue-primary: #2563eb;
  --fd-blue-light: #38bdf8;
  --fd-blue-hover: #1d4ed8;
  --fd-blue-strip: #f0f7ff;
  --fd-green: #16a34a;
  --fd-green-light: #dcfce7;
  --fd-orange: #ea580c;
  --fd-purple: #9333ea;
  --fd-pink: #e11d48;
  --fd-font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --fd-font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --fd-font-script: 'Caveat', cursive;
}

/* Base Page Resets & Helpers */
body.fd-page,
.fd-page,
main#main-content {
  width: 100%;
  max-width: 100%;
  font-family: var(--fd-font-body);
  color: #1e293b;
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* All Sections Full Width 100% */
.fd-page section,
.fd-hero,
.fd-benefits-strip,
.fd-how-it-works,
.fd-features-section,
.fd-key-benefits,
.fd-biz-models,
.fd-demo-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.fd-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

.fd-text-blue {
  color: #3b82f6;
}

/* ==============================================================================
   1. HERO SECTION
   ============================================================================== */
.fd-hero {
  position: relative;
  background-color: var(--fd-navy-dark);
  background-image:
    radial-gradient(circle at 70% 40%, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #020617 0%, #06112c 100%);
  color: #ffffff;
  padding: 120px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fd-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 36px;
  align-items: center;
}

/* Left Hero Column */
.fd-hero-content {
  position: relative;
  z-index: 2;
}

.fd-hero-eyebrow {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--fd-blue-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.fd-hero-title {
  font-family: var(--fd-font-heading);
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.14;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.025em;
}

.fd-hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 520px;
  margin: 0 0 32px 0;
}

.fd-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.fd-btn-primary {
  background: var(--fd-blue-primary);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.5);
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.fd-btn-primary:hover {
  background: var(--fd-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.65);
}

.fd-btn-secondary {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.fd-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.fd-btn-secondary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* 4 Capabilities row */
.fd-hero-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fd-indicator-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fd-indicator-icon {
  width: 32px;
  height: 32px;
  color: var(--fd-blue-light);
  display: flex;
  align-items: center;
}

.fd-indicator-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.fd-indicator-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.35;
  margin: 0;
}

/* Right Hero Column: 3-Device Mockups */
.fd-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Handwritten upper-right badge */
.fd-hero-script-wrap {
  position: absolute;
  top: -60px;
  right: 15px;
  text-align: right;
  z-index: 10;
}

.fd-hero-script-text {
  font-family: var(--fd-font-script);
  font-size: 2.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  transform: rotate(-5deg);
  display: inline-block;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.fd-hero-script-curves {
  display: block;
  margin-left: auto;
  margin-top: 4px;
}

/* 3 Devices Row */
.fd-mockups-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
  width: 100%;
}

.fd-mockup-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fd-mockup-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-top: 14px;
  line-height: 1.35;
}

.fd-mockup-label strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
}

.fd-mockup-label span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: #94a3b8;
}

/* Apple Notch Component */
.fd-phone-notch-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 12;
  pointer-events: none;
}

.fd-phone-notch {
  width: 82px;
  height: 18px;
  background: #0f172a;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fd-notch-speaker {
  width: 32px;
  height: 3.5px;
  background: #273549;
  border-radius: 9999px;
}

.fd-notch-cam {
  width: 6px;
  height: 6px;
  background: #1b263b;
  border: 1px solid #334155;
  border-radius: 50%;
}

/* Status Bar */
.fd-screen-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 24px;
  padding: 4px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #0f172a;
  box-sizing: border-box;
}

.fd-status-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fd-battery-icon {
  width: 16px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 1px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.fd-battery-fill {
  width: 80%;
  height: 100%;
  background: currentColor;
  border-radius: 1px;
}

/* ==============================================================================
   Device 1: Customer App (White iPhone Mockup)
   ============================================================================== */
.fd-phone-customer {
  width: 236px;
  background: #ffffff;
  border: 6px solid #0f172a;
  border-radius: 36px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.8), 0 0 35px rgba(37, 99, 235, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 490px;
  position: relative;
  z-index: 3;
}

.fd-cust-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.fd-cust-loc-row {
  padding: 2px 14px 6px;
}

.fd-loc-label {
  font-size: 0.58rem;
  color: #64748b;
  display: block;
}

.fd-loc-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0f172a;
}

.fd-cust-search-pill {
  margin: 0 12px 8px;
  background: #f1f5f9;
  border-radius: 9999px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6rem;
  color: #94a3b8;
}

.fd-cust-banner-card {
  margin: 0 12px 10px;
  background: linear-gradient(135deg, #ff6b4a 0%, #ee4d2d 100%);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(238, 77, 45, 0.3);
}

.fd-banner-info {
  flex: 1;
}

.fd-banner-mini-tag {
  font-size: 0.52rem;
  font-weight: 700;
  opacity: 0.95;
  display: block;
}

.fd-banner-title {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 2px 0 4px;
}

.fd-banner-subtag {
  font-size: 0.52rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}

.fd-banner-img-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  margin-left: 6px;
}

.fd-banner-food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fd-cust-category-grid {
  display: flex;
  justify-content: space-between;
  padding: 0 12px 8px;
}

.fd-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fd-cat-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.fd-cat-icon-circle.cat-orange {
  background: #ea580c;
  border-color: #ea580c;
  color: #ffffff;
}

.fd-cat-name {
  font-size: 0.56rem;
  font-weight: 600;
  color: #475569;
}

.fd-cat-item.active .fd-cat-name {
  color: #ea580c;
  font-weight: 800;
}

.fd-cust-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px 6px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #0f172a;
}

.fd-cust-view-all {
  font-size: 0.56rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.fd-cust-rest-tile {
  margin: 0 12px 6px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.fd-rest-tile-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.fd-rest-tile-details {
  flex: 1;
  min-width: 0;
}

.fd-rest-tile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fd-rest-name {
  font-size: 0.66rem;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fd-rest-badge {
  font-size: 0.54rem;
  font-weight: 800;
  color: #16a34a;
  background: #f0fdf4;
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid #bbf7d0;
  white-space: nowrap;
}

.fd-rest-sub {
  font-size: 0.54rem;
  color: #64748b;
  margin-top: 2px;
  display: block;
}

.fd-cust-dock {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 6px 14px;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.fd-dock-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #94a3b8;
  font-size: 0.52rem;
  font-weight: 600;
}

.fd-dock-btn svg {
  width: 15px;
  height: 15px;
}

.fd-dock-btn.active {
  color: #ea580c;
}

/* ==============================================================================
   Device 2: Delivery Boy App (Center Mockup)
   ============================================================================== */
.fd-phone-delivery {
  width: 220px;
  background: #0f172a;
  border: 6px solid #1e293b;
  border-radius: 36px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.8), 0 0 35px rgba(22, 163, 74, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 470px;
  position: relative;
  z-index: 2;
}

.fd-delivery-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  overflow: hidden;
  position: relative;
}

.fd-delivery-topbar {
  background: #16a34a;
  color: #ffffff;
  padding: 22px 14px 10px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}

.fd-pickup-title {
  font-size: 0.72rem;
}

.fd-pickup-id {
  font-size: 0.58rem;
  background: rgba(0, 0, 0, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
}

.fd-map-area {
  flex: 1;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.fd-map-route-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fd-delivery-bottom-card {
  background: #ffffff;
  padding: 10px 12px 12px;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 5;
}

.fd-driver-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.fd-driver-avatar-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.fd-driver-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.3);
}

.fd-driver-info-text {
  flex: 1;
  margin: 0 8px;
  min-width: 0;
}

.fd-driver-name {
  font-size: 0.68rem;
  font-weight: 800;
  color: #0f172a;
  display: block;
}

.fd-driver-address {
  font-size: 0.54rem;
  color: #64748b;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.fd-driver-actions {
  display: flex;
  gap: 6px;
}

.fd-action-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fd-phone-btn {
  background: #dcfce7;
  color: #16a34a;
}

.fd-chat-btn {
  background: #e0f2fe;
  color: #0284c7;
}

.fd-btn-mark-delivered {
  width: 100%;
  background: #16a34a;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 8px 0;
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
  transition: all 0.2s ease;
}

.fd-btn-mark-delivered:hover {
  background: #15803d;
}

/* ==============================================================================
   Device 3: Admin Panel (Right Dark Dashboard)
   ============================================================================== */
.fd-phone-admin {
  width: 205px;
  background: #090e1f;
  border: 6px solid #1e293b;
  border-radius: 36px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.8), 0 0 35px rgba(56, 189, 248, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 450px;
  position: relative;
  z-index: 1;
}

.fd-admin-screen {
  flex: 1;
  background: #090e1f;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fd-admin-brand-bar {
  padding: 22px 12px 8px;
  background: #060a17;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 7px;
}

.fd-admin-brand-logo {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.52rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fd-admin-brand-name {
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.fd-admin-menu-list {
  list-style: none;
  margin: 0;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 2.5px;
}

.fd-admin-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #94a3b8;
}

.fd-admin-nav-item.active {
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.5);
}

.fd-admin-nav-item svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* ==============================================================================
   2. BENEFITS STRIP
   ============================================================================== */
.fd-benefits-strip {
  background-color: var(--fd-blue-strip);
  border-top: 1px solid #e0f2fe;
  border-bottom: 1px solid #e0f2fe;
  padding: 26px 0;
}

.fd-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.fd-benefit-col {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fd-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dbeafe;
  color: var(--fd-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fd-benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.fd-benefit-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

/* ==============================================================================
   3. HOW IT WORKS (5-Step Process)
   ============================================================================== */
.fd-how-it-works {
  background: #ffffff;
  padding: 85px 0 75px;
  text-align: center;
}

.fd-section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fd-blue-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.fd-section-heading {
  font-family: var(--fd-font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
}

.fd-heading-br {
  display: none;
}

.fd-section-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto 55px;
}

.fd-steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.fd-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.fd-step-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease;
}

.fd-step-item:hover .fd-step-icon-wrap {
  transform: scale(1.08);
}

.fd-step-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.fd-step-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.fd-step-blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.fd-step-green  { background: linear-gradient(135deg, #22c55e, #16a34a); }
.fd-step-purple { background: linear-gradient(135deg, #a855f7, #7e22ce); }
.fd-step-pink   { background: linear-gradient(135deg, #f43f5e, #e11d48); }

.fd-step-title {
  font-family: var(--fd-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.fd-step-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.fd-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  color: #cbd5e1;
  flex-shrink: 0;
}

.fd-step-arrow svg {
  width: 24px;
  height: 24px;
}

/* ==============================================================================
   4. APP FEATURES (3 Detailed Cards)
   ============================================================================== */
.fd-features-section {
  background-color: #f8fafc;
  padding: 85px 0;
  border-top: 1px solid #e2e8f0;
}

.fd-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fd-feature-card {
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.fd-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.fd-card-blue {
  background: #f0f7ff;
  border: 1px solid #dbeafe;
}

.fd-card-green {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
}

.fd-card-orange {
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.fd-feature-mockup-wrap {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: visible;
}

.fd-feature-mockup-img {
  max-height: 250px;
  width: auto;
  max-width: 95%;
  object-fit: contain;
  filter: drop-shadow(0 15px 28px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.fd-feature-card:hover .fd-feature-mockup-img {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.18));
}

.fd-feature-mockup-img.fd-mockup-laptop {
  max-height: 225px;
  max-width: 100%;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.15));
}

.fd-feature-header {
  margin-bottom: 20px;
}

.fd-feature-card-title {
  font-family: var(--fd-font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.fd-feature-card-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
}

.fd-feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fd-feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.825rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
}

.fd-check-blue { color: #2563eb; }
.fd-check-green { color: #16a34a; }
.fd-check-orange { color: #ea580c; }

/* ==============================================================================
   5. KEY BENEFITS (6 Items)
   ============================================================================== */
.fd-key-benefits {
  background: #ffffff;
  padding: 85px 0;
  text-align: center;
}

.fd-benefits-icons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.fd-benefit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  transition: transform 0.25s ease;
}

.fd-benefit-box:hover {
  transform: translateY(-4px);
}

.fd-benefit-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--fd-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.25s, color 0.25s;
}

.fd-benefit-box:hover .fd-benefit-box-icon {
  background: var(--fd-blue-primary);
  color: #ffffff;
}

.fd-benefit-box-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.fd-benefit-box-title {
  font-family: var(--fd-font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

/* ==============================================================================
   6. BUSINESS MODELS (6 Cards)
   ============================================================================== */
.fd-biz-models {
  background: #f8fafc;
  padding: 85px 0;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.fd-biz-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 45px;
}

.fd-biz-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.fd-biz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.fd-biz-thumb-wrap {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #e2e8f0;
}

.fd-biz-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fd-biz-card:hover .fd-biz-thumb {
  transform: scale(1.08);
}

.fd-biz-title {
  font-family: var(--fd-font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  color: #0f172a;
  padding: 12px 8px;
  margin: 0;
}

/* ==============================================================================
   7. GET A FREE DEMO (Full-width Dark Section)
   ============================================================================== */
.fd-demo-section {
  background-color: var(--fd-navy-dark);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, #020617 0%, #06112c 100%);
  color: #ffffff;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fd-demo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

/* Left Form */
.fd-demo-left {
  position: relative;
}

.fd-demo-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fd-blue-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: inline-block;
}

.fd-demo-heading {
  font-family: var(--fd-font-heading);
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}

.fd-demo-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #cbd5e1;
  margin: 0 0 12px 0;
  max-width: 540px;
}

.fd-demo-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fd-form-input,
.fd-form-select,
.fd-form-textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 0.8rem;
  color: #0f172a;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fd-form-input,
.fd-form-select {
  height: 36px;
}

.fd-form-input:focus,
.fd-form-select:focus,
.fd-form-textarea:focus {
  border-color: var(--fd-blue-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.fd-form-textarea {
  resize: vertical;
  min-height: 48px;
  height: 48px;
}

.fd-form-btn-submit {
  background: var(--fd-blue-primary);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 8px 22px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.fd-form-btn-submit:hover {
  background: var(--fd-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.55);
}

.fd-privacy-text {
  font-size: 0.68rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}

/* Right Visual Composition */
.fd-demo-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fd-demo-image-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fd-demo-image {
  width: 100%;
  max-height: 235px;
  display: block;
  object-fit: cover;
}

.fd-demo-script-overlay {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--fd-font-script);
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  transform: rotate(-6deg);
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

/* Form Toast/Status message */
.fd-form-status,
.form-status {
  display: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.fd-form-status.success,
.form-status.success {
  display: block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.fd-form-status.error,
.form-status.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ==============================================================================
   8. RESPONSIVE BREAKPOINTS
   ============================================================================== */
@media (max-width: 1199px) {
  .fd-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fd-hero-visual {
    align-items: center;
    justify-content: center;
  }

  .fd-mockups-row {
    justify-content: center;
  }

  .fd-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .fd-benefits-icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fd-biz-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .fd-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fd-steps-container {
    flex-wrap: wrap;
    gap: 24px 12px;
  }

  .fd-step-arrow {
    display: none;
  }

  .fd-demo-section {
    padding: 24px 0;
  }

  .fd-demo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .fd-hero {
    padding: 100px 0 45px;
  }

  .fd-hero-title {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    word-break: normal;
    overflow-wrap: break-word;
  }

  .fd-section-heading {
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .fd-heading-br {
    display: inline;
  }

  .fd-hero-script-wrap {
    position: relative;
    top: auto;
    right: auto;
    text-align: center;
    margin: 0 auto 20px;
  }

  .fd-hero-indicators {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .fd-mockups-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 10px 16px 24px;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
  }

  .fd-mockups-row::-webkit-scrollbar {
    display: none;
  }

  .fd-mockup-item {
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .fd-phone-customer {
    width: 180px;
    height: 380px;
  }

  .fd-phone-delivery {
    width: 170px;
    height: 370px;
  }

  .fd-phone-admin {
    width: 160px;
    height: 360px;
  }

  .fd-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .fd-benefits-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fd-biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fd-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fd-steps-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .fd-step-item {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .fd-hero-title {
    font-size: 1.85rem;
  }

  .fd-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .fd-btn-primary,
  .fd-btn-secondary {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .fd-benefits-grid {
    grid-template-columns: 1fr;
  }

  .fd-biz-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
