/* ── Variables ──────────────────────────────────────────── */
:root {
  --navy: #001F3F;
  --navy-dark: #00152B;
  --navy-light: #002D5C;
  --gold: #C5A059;
  --gold-light: #D4B87A;
  --gold-dark: #A6843D;
  --white: #FFFFFF;
  --light: #F8F9FA;
  --lighter: #F1F3F5;
  --gray: #6B7280;
  --gray-dark: #374151;
  --border: #E5E7EB;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 31, 63, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 31, 63, 0.12);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--navy-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Utility ────────────────────────────────────────────── */
.font-body { font-family: 'Montserrat', sans-serif; }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }

/* ── Buttons ────────────────────────────────────────────── */
.btn-gold, .btn-outline, .btn-sm {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 2rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; transition: all .25s ease;
  cursor: pointer; border: none; font-family: 'Montserrat', sans-serif;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(197, 160, 89, 0.45); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 31, 63, .06);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto; padding: .85rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--navy); white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--gray); transition: color .2s; }
.nav-links a:hover { color: var(--navy); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 66px);
  display: flex; align-items: center;
  padding: 8rem 2rem 6rem;
  background: linear-gradient(170deg, var(--white) 0%, var(--lighter) 40%, #EDF0F5 100%);
  position: relative; overflow: hidden;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800;
  line-height: 1.12; letter-spacing: -.03em; margin-bottom: 1.25rem;
  color: var(--navy-dark);
}
.hero-sub {
  font-size: 1.1rem; color: var(--gray-dark); line-height: 1.6;
  max-width: 500px; margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--gray);
  background: var(--white); padding: .5rem 1rem;
  border-radius: 100px; border: 1px solid var(--border);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #10B981;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* Chat mockup */
.hero-chat { display: flex; justify-content: center; }
.chat-mockup {
  width: 100%; max-width: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.chat-header {
  display: flex; align-items: center; gap: .65rem;
  padding: .85rem 1rem;
  background: var(--navy); color: var(--white);
  font-size: .85rem; font-weight: 600;
}
.chat-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.chat-body {
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column; gap: .85rem;
  background: #F0F4F8;
  min-height: 240px;
}
.chat-bubble {
  font-size: .82rem; line-height: 1.45; padding: .65rem .9rem;
  border-radius: 14px; max-width: 82%;
  word-break: break-word;
}
.chat-bubble.user {
  align-self: flex-end;
  background: #E2E8F0; color: var(--gray-dark);
  border-bottom-right-radius: 4px;
}
.chat-bubble.ora {
  align-self: flex-start;
  background: var(--navy); color: var(--white);
  border-bottom-left-radius: 4px;
}
.chat-bubble.ora strong { color: var(--gold-light); }
.chat-input {
  padding: .65rem 1rem;
  background: var(--white); border-top: 1px solid var(--border);
  font-size: .78rem; color: var(--gray);
}

/* ── Sections ───────────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-navy { background: var(--navy); color: var(--white); }
.section-light { background: var(--lighter); }
.section-header {
  text-align: center; max-width: 640px; margin: 0 auto 4rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700;
  letter-spacing: -.02em; margin-bottom: .85rem;
}
.section-header p { color: var(--gray); font-size: 1.05rem; line-height: 1.5; }
.section-navy .section-header p { color: rgba(255,255,255,.55); }

/* ── Product cards ──────────────────────────────────────── */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.75rem; max-width: 1150px; margin: 0 auto;
}
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.75rem; position: relative;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-highlight { border-color: var(--gold); border-width: 2px; }
.card-badge {
  position: absolute; top: -12px; left: 2rem;
  background: var(--gold); color: var(--navy);
  font-size: .72rem; font-weight: 700;
  padding: .2rem .85rem; border-radius: 20px;
}
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.card-icon-business { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.card-icon-social { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy); }
.card-icon-quartier { background: linear-gradient(135deg, #059669, #10B981); }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .3rem; }
.card-price {
  font-size: .82rem; color: var(--gold-dark); font-weight: 600;
  margin-bottom: .75rem;
}
.card-desc { font-size: .88rem; color: var(--gray-dark); line-height: 1.55; }
.card-list { margin-top: 1.25rem; }
.card-list li {
  font-size: .84rem; color: var(--gray-dark); padding: .4rem 0;
  padding-left: 1.5rem; position: relative;
}
.card-list li::before {
  content: ''; position: absolute; left: 0; top: .75rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* ── Steps ──────────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem; max-width: 900px; margin: 0 auto;
}
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.15rem;
}
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; }
.step p { font-size: .88rem; color: rgba(255,255,255,.6); max-width: 280px; margin: 0 auto; }

/* ── Ora POS ─────────────────────────────────────────────── */
.pos-showcase {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.pos-features { display: flex; flex-direction: column; gap: 1.25rem; }
.pos-feature {
  padding: 1.25rem 1.35rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--white);
  transition: box-shadow .25s;
}
.pos-feature:hover { box-shadow: var(--shadow); }
.pos-feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; color: var(--navy); }
.pos-feature p { font-size: .85rem; color: var(--gray-dark); line-height: 1.5; }

/* POS Mockups */
.pos-mockups { display: flex; flex-direction: column; gap: 1.25rem; }
.pos-mockup {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow);
}
.mockup-bar {
  display: flex; gap: 6px; padding: .65rem .85rem;
  background: #F1F3F5; border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border);
}
.mockup-dot:first-child { background: #EF4444; }
.mockup-dot:nth-child(2) { background: #F59E0B; }
.mockup-dot:last-child { background: #10B981; }

.mockup-body {
  display: flex; padding: .75rem; gap: .75rem;
  min-height: 140px;
}
.mockup-sidebar {
  display: flex; flex-direction: column; gap: 8px;
  width: 40px; padding-right: .55rem;
  border-right: 1px solid var(--border);
}
.mockup-nav-item {
  width: 100%; height: 8px; border-radius: 4px;
  background: var(--border);
}
.mockup-nav-item.active {
  background: var(--navy); height: 10px;
}
.mockup-grid {
  flex: 1; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
}
.mockup-card {
  height: 48px; border-radius: 8px;
  background: var(--lighter); border: 1px solid var(--border);
}
.mockup-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem .85rem; border-top: 1px solid var(--border);
  background: var(--navy);
}
.mockup-total { font-size: .82rem; color: rgba(255,255,255,.7); }
.mockup-total strong { color: var(--white); margin-left: .5rem; }
.mockup-pay {
  background: var(--gold); color: var(--navy);
  font-size: .78rem; font-weight: 700;
  padding: .35rem .9rem; border-radius: 8px;
}

/* Dashboard mockup */
.pos-mockup-dash { max-width: 320px; align-self: flex-end; }
.mockup-dash-body { flex-direction: column; gap: .65rem; }
.mockup-kpi {
  font-size: .78rem; color: var(--gray);
  display: flex; align-items: center; gap: .5rem;
}
.mockup-kpi strong { color: var(--navy); font-size: .92rem; }
.mockup-trend { font-size: .7rem; font-weight: 600; }
.mockup-trend.up { color: #10B981; }
.mockup-chart {
  height: 48px; border-radius: 8px; background: var(--lighter);
  border: 1px solid var(--border); display: flex; align-items: flex-end;
  padding: 4px; gap: 4px;
}
.mockup-bar-chart {
  flex: 1; height: 100%; border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--navy), var(--navy-light));
}

@media (max-width: 900px) {
  .pos-showcase { grid-template-columns: 1fr; gap: 2rem; }
  .pos-mockup-dash { max-width: 100%; }
}

/* ── Cas clients ────────────────────────────────────────── */
.clients {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem; max-width: 1050px; margin: 0 auto;
}
.client-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: box-shadow .25s;
}
.client-card:hover { box-shadow: var(--shadow); }
.client-initial {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem;
}
.client-initial-alt { background: var(--gold); color: var(--navy); }
.client-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .25rem; }
.client-type { font-size: .8rem; color: var(--gold-dark); font-weight: 600; margin-bottom: .65rem; }
.client-card p { font-size: .85rem; color: var(--gray-dark); line-height: 1.5; }

/* ── Pricing ────────────────────────────────────────────── */
.pricing {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem; max-width: 1050px; margin: 0 auto;
}
.pricing-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center; position: relative;
  display: flex; flex-direction: column;
}
.pricing-card-featured {
  border-color: var(--navy); border-width: 2px;
  box-shadow: 0 4px 20px rgba(0, 31, 63, .12);
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .75rem; }
.pricing-amount { font-size: 2.5rem; font-weight: 800; color: var(--navy); }
.pricing-currency { font-size: .85rem; font-weight: 400; color: var(--gray); }
.pricing-card ul { margin: 1.5rem 0 2rem; text-align: left; }
.pricing-card li {
  font-size: .85rem; color: var(--gray-dark); padding: .4rem 0;
  padding-left: 1.5rem; position: relative;
}
.pricing-card li::before {
  content: ''; position: absolute; left: 0; top: .7rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.pricing-card .btn-gold, .pricing-card .btn-outline { margin-top: auto; }
.pricing-note {
  text-align: center; font-size: .8rem; color: var(--gray);
  max-width: 600px; margin: 2rem auto 0;
}

/* ── Contact ────────────────────────────────────────────── */
.contact-wrapper {
  max-width: 540px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
.contact-form {
  width: 100%; display: flex; flex-direction: column; gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.5); }
.form-group input,
.form-group textarea {
  padding: .7rem .9rem; border-radius: 8px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06); color: var(--white);
  font-size: .95rem; font-family: 'Montserrat', sans-serif;
  transition: border-color .25s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }
.contact-form .btn-gold { align-self: flex-start; }
.contact-telegram { text-align: center; }
.contact-telegram p { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: .5rem; }
.tg-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--gold); font-weight: 600; font-size: 1rem;
  transition: color .2s;
}
.tg-link:hover { color: var(--gold-light); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark); padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem;
}
.footer-brand strong { font-size: 1.05rem; color: var(--white); }
.footer-brand p { font-size: .8rem; color: rgba(255,255,255,.35); margin-top: .35rem; }
.footer-small { margin-top: .75rem !important; font-size: .72rem !important; }
.footer-links { display: flex; gap: 3rem; }
.footer-links div { display: flex; flex-direction: column; gap: .55rem; }
.footer-links strong { font-size: .82rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .05em; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-sub { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-badge { margin: 0 auto; }
  .hero-chat { max-width: 340px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links a:not(.btn-sm) { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 6rem 1.5rem 4rem; }
  .section { padding: 4rem 1.5rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-gold, .hero-cta .btn-outline { width: 100%; text-align: center; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
}
