/* ============================================================
   HorecaSystems.md — Marca inregistrata.Toate drepturile sunt rezervate. Reproducerea sau folosirea totala sau partiala a informatiilor
   sub aceasta linie este strict interzisa si se pedepseste confirm legii.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@600;700;800&display=swap');

/* ── TOKENS ── */
:root {
  --navy:        #1E293B;
  --navy-mid:    #334155;
  --navy-soft:   #475569;
  --teal:        #475569;
  --teal-dark:   #334155;
  --teal-glow:   rgba(71,85,105,0.10);
  --amber:       #F59E0B;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --grey-100:    #E2E8F0;
  --grey-300:    #CBD5E1;
  --grey-500:    #94A3B8;
  --grey-700:    #475569;
  --text-main:   #0F172A;
  --text-soft:   #334155;
  --text-muted:  #64748B;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(15,23,42,0.08);
  --shadow-md:  0 4px 16px rgba(15,23,42,0.12);
  --shadow-lg:  0 12px 40px rgba(15,23,42,0.16);
  --shadow-teal:0 8px 32px rgba(71,85,105,0.20);

  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1180px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; outline:none; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.18; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
p  { font-size: 1.05rem; }

.text-teal   { color: var(--teal); }
.text-amber  { color: var(--amber); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: #fec021;
  color: #222;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: #fec021;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(71,85,105,0.30);
  color:#fff;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: #fff;
}
.btn-outline:hover {
  background: var(--teal-glow);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: #0C1A2E;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-teal { background: var(--teal-glow); color: var(--teal); border: 1px solid rgba(0,201,167,0.3); }
.badge-amber { background: rgba(245,158,11,0.12); color: var(--amber); border: 1px solid rgba(245,158,11,0.25); }
.badge-navy { background: var(--navy-soft); color: var(--grey-300); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,22,40,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  max-width: var(--max-w);
  margin: 0 auto;
  height: 68px;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-logo span { color: var(--amber); }
.navbar-logo img {width:220px;display:block}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; fill: #ffffff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--grey-300);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links .nav-product { color: var(--teal); }
.nav-links .nav-product:hover { background: var(--teal-glow); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 4px;
}
.lang-switcher a {
  color: var(--grey-500);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  transition: var(--transition);
}
.lang-switcher a.active {
  background: var(--teal);
  color: #ffffff;
}
.lang-switcher a:hover:not(.active) { color: var(--white); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 72px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,167,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,100,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge { margin-bottom: 20px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-subtitle {
  color: var(--grey-300);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content:space-around;
  text-align:center;
  flex-wrap:wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color:#f3f3f3;
}
.hero-stat span {
  font-size: 0.85rem;
  color: #fff;
}
.hero-visual {
  position: relative;
}
.hero-mockup {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(0,201,167,0.12);
}
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-screen {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px;
  min-height: 280px;
}
.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.mockup-stat-card {
  background: var(--navy-soft);
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mockup-stat-card .label {
  font-size: 0.7rem;
  color: var(--grey-500);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mockup-stat-card .value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
}
.mockup-chart {
  background: var(--navy-soft);
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mockup-chart .chart-label {
  font-size: 0.72rem;
  color: var(--grey-500);
  margin-bottom: 10px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.bar {
  flex: 1;
  background: var(--navy-soft);
  border-radius: 3px 3px 0 0;
  border: 1px solid rgba(0,201,167,0.2);
  position: relative;
  overflow: hidden;
}
.bar-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--navy), rgba(71,85,105,0.4));
  border-radius: 3px 3px 0 0;
}

/* ── CLIENTS / TRUST ── */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.trust-logos { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.trust-logo-item {
  color: var(--grey-600);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
}

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 56px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-soft); font-size: 1.1rem; max-width: 580px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--teal);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--teal-glow);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { color: var(--text-soft); font-size: 0.95rem; }

/* Dark card */
.card-dark {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.card-dark:hover { border-color: var(--teal); }
.card-dark p { color: var(--grey-300); }
.card-dark h3 { color: var(--white); }

/* ── FEATURES SECTION ── */
.features-bg { background: var(--off-white); }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal-glow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(0,201,167,0.2);
}
.feature-text h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-text p { font-size: 0.92rem; color: var(--text-soft); }

/* ── PRODUCTS GRID ── */
.products-section { background: var(--navy); padding: 96px 0; }
.product-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.product-card.shop::before { background: linear-gradient(to right, var(--teal), var(--teal-dark)); }
.product-card.cafe::before { background: linear-gradient(to right, var(--amber), #F97316); }
.product-card.pool::before { background: linear-gradient(to right, #7C3AED, #4F46E5); }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.14);
}
.product-emoji { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.product-tagline { color: var(--grey-500); font-size: 0.92rem; margin-bottom: 20px; }
.product-card ul { margin-bottom: 28px; }
.product-card ul li {
  color: var(--grey-300);
  font-size: 0.92rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.product-card ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.product-card.cafe ul li::before { color: var(--amber); }
.product-card.pool ul li::before { color: #7C3AED; }

/* ── HOW IT WORKS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--grey-100);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: #ff5254;
  color: #222;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  
}
.step-content h3 { margin-bottom: 6px; font-size: 1.1rem; }
.step-content p { color: var(--text-soft); font-size: 0.95rem; }

/* ── STATS SECTION ── */
.stats-section {
  background: var(--navy);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #f3f3f3;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.stat-label { color: var(--grey-500); font-size: 0.9rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #ffffff; font-size: clamp(1.6rem,3vw,2.2rem); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 8px; }
.cta-banner-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question .faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--teal-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  transition: var(--transition);
}
.faq-answer {
  padding: 0 28px 22px;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.75;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { background: var(--teal); color: #ffffff; transform: rotate(45deg); }
.faq-item.open { border-color: var(--teal); }

/* ── CONTACT FORM ── */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-soft); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--teal-glow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-detail span { font-size: 0.97rem; color: var(--text-main); }

.form-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-main);
  background: var(--off-white);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── STICKY CTA BAR ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}
.sticky-cta p { color: var(--grey-300); font-size: 0.92rem; }
.sticky-cta strong { color: var(--white); }
.sticky-cta-shown { display: flex; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  color: var(--grey-500);
  font-size: 0.92rem;
  margin-top: 12px;
  margin-bottom: 24px;
  max-width: 260px;
  line-height: 1.7;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-500);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover { background: var(--teal); color: #ffffff; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-500);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--grey-300);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--grey-500); font-size: 0.85rem; }

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,201,167,0.1) 0%, transparent 70%);
}
.about-hero h1 { color: var(--white); margin-bottom: 20px; }
.about-hero p { color: var(--grey-300); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--text-soft); font-size: 0.93rem; }

/* ── PRODUCT PAGE SPECIFIC ── */
.product-hero { background: var(--navy); padding: 100px 0; overflow: hidden; position: relative; }
.smartcafe-hero,.home-hero { 
  background:url('smartcafe-1.jpg'); padding:63px 0; background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; 
  transition: background-image 0.5s ease;
}
@supports (background-image: url('webp-supp.webp')) {
  .smartcafe-hero,.home-hero {
   background: url(webp-supp.webp);
    padding: 63px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
	transition: background-image 0.5s ease;
  }
}
.smartshop-hero { 
  background:url('smartshop-0.jpg'); padding:63px 0; background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; 
  transition: background-image 0.5s ease;
}
@supports (background-image: url('webp-supp.webp')) {
  .smartshop-hero {
   background: url(webp-supp.webp);
    padding: 63px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
	transition: background-image 0.5s ease;
  }
}
.ospmob-hero { 
  background:url('ospatar-mobil.jpg'); padding:63px 0; background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; 
  transition: background-image 0.5s ease;
}
@supports (background-image: url('webp-supp.webp')) {
  .ospmob-hero {
   background: url(webp-supp.webp);
    padding: 63px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
	transition: background-image 0.5s ease;
  }
}
.product-hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 60%;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300C9A7' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-hero h1 { color: var(--white); margin-bottom: 20px; }
.product-hero .subtitle { color: var(--grey-300); font-size: 1.1rem; margin-bottom: 32px; line-height: 1.75;max-width:500px; }
.product-hero .ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.product-screen {
  background: var(--navy-mid);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

/* Benefit list */
.benefit-list { display: flex; flex-direction: column; gap: 16px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.benefit-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.benefit-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--teal-glow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.benefit-content h4 { font-size: 1rem; margin-bottom: 4px; }
.benefit-content p { font-size: 0.88rem; color: var(--text-soft); }

/* ── USE CASES ── */
.usecase-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.usecase-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.usecase-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.usecase-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.usecase-card p { color: var(--grey-500); font-size: 0.9rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-100);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--teal); }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* ── ALERTS / NOTICE ── */
.notice {
  background: var(--teal-glow);
  border: 1px solid rgba(0,201,167,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--teal-dark);
  margin-bottom: 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .hero-grid, .grid-2, .contact-grid, .product-hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 4px;
    z-index: 99;
  }
  .nav-links.open a { padding: 12px 16px; }

  .hero-stats { gap: 20px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeUp; animation-duration: 0.6s; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeUp; animation-duration: 0.6s; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeUp; animation-duration: 0.6s; }

/* ── UTILITY ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--teal-glow);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   MODULE PAGES — Ospătar Mobil & Meniu QR
   ══════════════════════════════════════════════════════════════ */

/* ── Module Hero ── */
.module-hero {
  position: relative;
  overflow: hidden;
background: var(--navy);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
padding:63px 0;
}
.module-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(91,163,204,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.module-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
.module-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.module-badge--ospatar { background: rgba(232,96,90,0.15); color: var(--coral); border: 1px solid rgba(232,96,90,0.25); }
.module-badge--qr      { background: rgba(91,163,204,0.15); color: var(--teal);  border: 1px solid rgba(91,163,204,0.25); }
.module-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.module-hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width:500px;
}
.module-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 32px;
}
.module-price-amount {
  font-size: 1.4rem;
  color: var(--amber);
  font-weight:600;
  line-height: 1.2;
}
.module-price-label {
  font-size: 0.85rem;
  color: #f3f3f3;
  line-height: 1.3;
}
.module-price-coffee {
  font-size: 0.8rem;
  color: #f3f3f3;
  display: block;
}
.module-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Phone / QR mockups ── */
.phone-mockup {
  width: 240px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.phone-mockup::before {
  content: '';
  display: block;
  width: 80px; height: 22px;
  background: #111;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  min-height: 380px;
}
.phone-header {
  background: var(--coral);
  padding: 14px 16px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.phone-header--qr { background: var(--teal); }
.phone-table-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
  margin-top: 4px;
}
.phone-order-list { padding: 12px; }
.phone-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: #f9f9f9;
  font-size: 12px;
  color: #222;
}
.phone-order-item--new { background: #fff8ec; border: 1px solid #fcd34d; }
.phone-qty {
  width: 22px; height: 22px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.phone-qty--qr { background: var(--teal); }
.phone-order-name { flex: 1; padding: 0 8px; }
.phone-order-price { font-weight: 600; color: #333; }
.phone-send-btn {
  margin: 8px 12px 12px;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  width: calc(100% - 24px);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.phone-send-btn--qr { background: var(--teal); }
.phone-status {
  margin: 0 12px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 11px;
  color: #15803d;
  display: flex; align-items: center; gap: 6px;
}

/* QR menu mockup */
.qr-menu-screen { padding: 12px; }
.qr-restaurant-header {
  text-align: center;
  padding: 12px 0 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}
.qr-restaurant-name { font-size: 14px; font-weight: 700; color: #222; }
.qr-restaurant-sub { font-size: 11px; color: #999; }
.qr-category-tabs {
  display: flex; gap: 6px; overflow-x: auto;
  padding-bottom: 8px; margin-bottom: 10px;
}
.qr-tab {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.qr-tab--active { background: var(--teal); color: #fff; }
.qr-tab--inactive { background: #f3f4f6; color: #666; }
.qr-item {
  display: flex; gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f3f3;
  align-items: center;
}
.qr-item-img {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.qr-item-info { flex: 1; }
.qr-item-name { font-size: 12px; font-weight: 600; color: #222; }
.qr-item-price { font-size: 12px; color: var(--teal); font-weight: 700; margin-top: 2px; }
.qr-add-btn {
  width: 28px; height: 28px;
  background: var(--teal);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; flex-shrink: 0;
}
.qr-pay-bar {
  background: var(--teal);
  color: #fff;
  border-radius: 10px;
  margin-top: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.qr-pay-bar strong { font-size: 14px; }

/* Module visual wrapper */
.module-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.module-hero-visual::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--teal-glow);
  filter: blur(60px);
  z-index: 0;
}
.phone-mockup { position: relative; z-index: 1; }

/* ── Module Benefits Grid ── */
.module-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--grey-300);
}
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-right:10px;
}
.benefit-icon--coral { background: rgba(232,96,90,0.10); }
.benefit-icon--teal  { background: rgba(91,163,204,0.12); }
.benefit-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text-main);
}
.benefit-number--coral { color: var(--coral); }
.benefit-number--teal  { color: var(--teal); }
.benefit-card h3 { font-size: 1rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.benefit-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── How it works flow ── */
.module-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}
.module-flow::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--coral), var(--teal));
}
.module-flow--qr::before { background: linear-gradient(to right, var(--teal), var(--amber)); }
.flow-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.flow-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 2px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
}
.flow-step h3 { font-size: 0.95rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.flow-step p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* ── Integration box ── */
.integration-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.integration-box::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(91,163,204,0.08);
  pointer-events: none;
}
.integration-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.integration-box p { color: rgba(255,255,255,0.70); line-height: 1.7; margin-bottom: 24px; }
.integration-features { display: flex; flex-direction: column; gap: 12px; }
.integration-feat {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.5;
}
.integration-feat::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(91,163,204,0.2);
  color: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.feature-card {margin-bottom:20px;}
/* ── Module CTA section ── */
.module-cta {
  background: linear-gradient(135deg, var(--coral) 0%, #CF4A44 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.module-cta--qr { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }
.module-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.module-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
}
.module-cta .price-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background:  var(--navy);
  border-radius: 100px;
  padding: 8px 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}
.module-cta p { color: rgba(255,255,255,0.80); margin-bottom: 28px; position: relative; font-size: 1rem; line-height: 1.6; }
.module-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Homepage Module Cards ── */
.modules-section { padding: 96px 0; background: var(--off-white); }
.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
}
.module-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.module-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.module-card-top {
  padding: 36px 36px 28px;
  position: relative;
}
.module-card-top--coral { background: linear-gradient(135deg, #1A1A2E 0%, #2d1820 100%); }
.module-card-top--teal  { background: linear-gradient(135deg, #1A1A2E 0%, #182130 100%); }
.module-card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.module-card-icon--coral { background: rgba(232,96,90,0.15); }
.module-card-icon--teal  { background: rgba(91,163,204,0.15); }
.module-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.module-card-tagline { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.6; }
.module-card-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 700;
}
.module-card-price span { color: rgba(255,255,255,0.50); font-weight: 400; font-size: 0.8rem; }
.module-card-body { padding: 28px 36px 36px; flex: 1; display: flex; flex-direction: column; }
.module-card-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.module-card-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.module-card-features li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.module-card--coral .module-card-features li::before {
  background-color: rgba(232,96,90,0.12);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23E8605A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}
.module-card--teal .module-card-features li::before {
  background-color: rgba(91,163,204,0.12);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%235BA3CC' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ── SmartCafe upsell strip ── */
.modules-upsell {
  background: linear-gradient(135deg, var(--navy) 0%, #1e1a38 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 64px 0 0;
}
.modules-upsell-header {
  text-align: center;
  margin-bottom: 36px;
}
.modules-upsell-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.modules-upsell-header p { color: rgba(255,255,255,0.60); font-size: 0.95rem; }
.upsell-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.upsell-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.upsell-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.upsell-card-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.upsell-card-emoji {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.upsell-card-emoji--coral { background: rgba(232,96,90,0.15); }
.upsell-card-emoji--teal  { background: rgba(91,163,204,0.15); }
.upsell-card-title { font-size: 1rem; font-weight: 700; color: var(--white); }
.upsell-card-price { font-size: 0.8rem; color: var(--amber); margin-top: 2px; }
.upsell-card p { font-size: 0.87rem; color: rgba(255,255,255,0.60); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.upsell-card-features {
  list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px;
}
.upsell-card-features li {
  font-size: 0.83rem; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 8px;
}
.upsell-card-features li::before {
  content: '→';
  color: var(--teal); font-weight: 700; flex-shrink: 0;
}
.upsell-card--coral .upsell-card-features li::before { color: var(--coral); }

/* Responsive */
@media (max-width: 1024px) {
  .module-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .module-hero-visual { display: none; }
  .module-benefits { grid-template-columns: 1fr 1fr; }
  .module-flow { grid-template-columns: 1fr 1fr; }
  .module-flow::before { display: none; }
  .integration-box { grid-template-columns: 1fr; gap: 32px; padding: 25px; }
  .modules-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .upsell-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .module-benefits { grid-template-columns: 1fr; }
  .module-flow { grid-template-columns: 1fr 1fr; gap:10px; }
  .module-cta { padding: 40px 28px; }
  .modules-upsell { padding: 32px 24px; }
  .module-card-top, .module-card-body { padding-left: 24px; padding-right: 24px; }
}
.card-info {display:flex;align-items:center;margin-bottom:10px;}
.card-info div.card-icon {margin:0 10px 0 0;}
.card-info h3 {margin:0}
