/* ———————————— GLOBAL ———————————— */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --header-offset: 0px;
}


body {
  background: #0A0F1C;
  color: #F4F4F4;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset);
}


h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ———————————— HEADER ———————————— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 15, 28, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header nav a {
  margin: 0 15px;
  font-weight: 600;
  color: #ddd;
  transition: color 0.3s;
}

.header nav a:hover {
  color: #FFD831;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

/* ———————————— HERO ———————————— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0f1c, #1b1231 40%, #2a173a 100%);
  overflow: hidden;
  padding: 0 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 216, 49, 0.15), transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(230, 49, 38, 0.15), transparent 60%);
  filter: blur(80px);
  z-index: 0;
  animation: moveGlow 10s ease-in-out infinite alternate;
}

@keyframes moveGlow {
  from { transform: translate(0, 0); opacity: 0.8; }
  to { transform: translate(20px, -15px); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.hero-text {
  flex: 1;
  max-width: 560px;
  animation: fadeUp 1s ease forwards;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #FFD831, #E63126);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD831, #E63126);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead span {
  display: inline-block;
  background: linear-gradient(90deg, #FFD831, #E63126);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p:not(.hero-lead) {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 45px;
  line-height: 1.6;
}

/* CTA Buttons */
.cta {
  display: flex;
  gap: 18px;
}

.btn-gradient {
  background: linear-gradient(135deg, #FFD831, #E63126);
  color: #000;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(255, 200, 0, 0.25);
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 200, 0, 0.4);
}

.btn-ghost {
  border: 2px solid #FFD831;
  color: #FFD831;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: #FFD831;
  color: #000;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(120deg, #FFD831, #E63126);
  color: #0A0F1C;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 24px rgba(255, 216, 49, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 30px rgba(230, 49, 38, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Illustration */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-width: 520px;
  display: block;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
  object-fit: contain;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-lead {
    font-size: 2rem;
  }
  .hero-visual img {
    max-width: 320px;
  }
}

/* ———————————— SERVICES ———————————— */
.services {
  background: #0F1626;
}

.services h2 {
  margin-bottom: 50px;
  font-size: 2rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  width: 280px;
  transition: transform 0.3s ease, border-color 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #FFD831;
}

/* ———————————— LOCAL ———————————— */
.local-section {
  background: #0A0F1C;
}

.local-section h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.local-section .subtitle {
  max-width: 840px;
  margin: 0 auto 32px;
  color: #cfd9e7;
  line-height: 1.7;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.local-card {
  background: #0f1626;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.local-card h3 {
  color: #ffd831;
  margin-bottom: 10px;
}

.local-card p {
  color: #cfd9e7;
}

.local-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 216, 49, 0.4);
}

/* ———————————— PRICING ———————————— */
.pricing h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.pricing-card {
  background: #141C2B;
  border-radius: 16px;
  padding: 30px;
  width: 280px;
  transition: transform 0.3s ease;
}

.pricing-card.highlight {
  background: linear-gradient(135deg, #FFD831, #E63126);
  color: #000;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 15px 0;
  display: block;
}

.contact {
  background: #0F1626;
  text-align: center;
}

.contact h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.contact .subtitle {
  color: #bbb;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 8px;
  border: none;
  background: #1A2233;
  color: #fff;
  resize: none;
}

.contact-form button {
  align-self: center;
  width: 100%;
  max-width: 260px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  min-height: 1.2em;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0a3d62;
  text-align: center;
}

.form-status.is-success {
  color: #1f9254;
}

.form-status.is-error {
  color: #c0392b;
}

.alt-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #FFD831;
  font-weight: 600;
}

.alt-contact a {
  color: #FFD831;
  text-decoration: none;
  transition: color 0.2s;
}

.alt-contact a:hover {
  color: #E63126;
}

/* ———————————— FAQ ———————————— */
.faq {
  background: #0A0F1C;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #0f1626;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
  color: #ffd831;
  margin-bottom: 10px;
}

.faq-item p {
  color: #cfd9e7;
  line-height: 1.6;
}


/* ———————————— MODULES ———————————— */
.modules {
  background: #0A0F1C;
  padding: 100px 20px;
  text-align: center;
}

.modules h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.modules .subtitle {
  color: #aaa;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.demo-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin: 0 auto 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 216, 49, 0.08), rgba(230, 49, 38, 0.08));
  border: 1px solid rgba(255, 216, 49, 0.25);
  color: #f4f4f4;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  max-width: 720px;
}

.demo-banner::before {
  content: "ⓘ";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 216, 49, 0.2);
  color: #FFD831;
  font-weight: 800;
  font-size: 0.9rem;
}

.module-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  justify-items: center;
}

.module-card,
.project-card {
  background: #111a2b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  width: 100%;
  max-width: 320px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
}

.demo-pill {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 216, 49, 0.18);
  color: #FFD831;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.demo-note {
  color: #9db0c2;
  font-size: 0.95rem;
  margin-top: -4px;
}

/* Styles uniques par module */
.neon-card {
  background: #0a0f1c;
  border: 1px solid rgba(64, 224, 208, 0.3);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(64, 224, 208, 0.1);
  position: relative;
  overflow: hidden;
}

.neon-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(64, 224, 208, 0.18), transparent 40%),
              radial-gradient(circle at 85% 20%, rgba(230, 49, 38, 0.18), transparent 35%);
  pointer-events: none;
}

.neon-card h3 {
  color: #40e0d0;
}

.material-card {
  background: #141c2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  position: relative;
}

.material-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(255, 216, 49, 0.18), transparent 45%),
              radial-gradient(circle at 80% 0%, rgba(230, 49, 38, 0.14), transparent 40%);
  pointer-events: none;
}

.material-card h3 {
  color: #ffd831;
}

.material-card .mini-contact-form input,
.material-card .mini-contact-form textarea {
  border-radius: 16px;
  background: #1c2638;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.material-card .btn-gradient {
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(255, 216, 49, 0.25);
}

.morph-card {
  background: linear-gradient(145deg, #10172b, #0c1222);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    14px 14px 26px rgba(0, 0, 0, 0.55),
    -10px -10px 22px rgba(26, 35, 60, 0.3),
    inset 2px 2px 8px rgba(255, 255, 255, 0.04),
    inset -2px -2px 10px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.morph-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.morph-card .calendar {
  background: #0f1626;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    10px 10px 24px rgba(0, 0, 0, 0.4),
    -6px -6px 18px rgba(32, 43, 68, 0.25);
}

.brutal-card {
  background: #ffd831;
  color: #0a0f1c;
  border: 3px solid #0a0f1c;
  box-shadow: 10px 10px 0 #0a0f1c;
}

.brutal-card h3 {
  color: #0a0f1c;
}

.brutal-card .demo-note,
.brutal-card .cart-price,
.brutal-card .cart-name,
.brutal-card .cart-total,
.brutal-card .cart-qty {
  color: #0a0f1c;
}

.brutal-card .demo-pill {
  background: #0a0f1c;
  color: #ffd831;
}

.brutal-card .ghost-btn {
  background: #fff3b0;
  border: 2px solid #0a0f1c;
  color: #0a0f1c;
  box-shadow: 4px 4px 0 #0a0f1c;
}

.brutal-card .ghost-btn:hover {
  border-color: #e63126;
  color: #e63126;
}

.brutal-card .cart-item {
  background: #ffe782;
  border: 2px solid #0a0f1c;
  box-shadow: 6px 6px 0 #0a0f1c;
}

.brutal-card .cart-total {
  background: #fff6b5;
  border: 2px solid #0a0f1c;
  box-shadow: 6px 6px 0 #0a0f1c;
}

.automation-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0 6px;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(64, 224, 208, 0.2);
  background: rgba(64, 224, 208, 0.06);
}

.flow-step.is-active {
  border-color: rgba(255, 216, 49, 0.4);
  background: linear-gradient(135deg, rgba(255, 216, 49, 0.12), rgba(64, 224, 208, 0.08));
}

.flow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #40e0d0, #ffd831);
  box-shadow: 0 0 0 6px rgba(64, 224, 208, 0.15);
}

.flow-title {
  font-weight: 700;
}

.flow-meta {
  font-size: 0.9rem;
  color: #8bb7c0;
}

.flow-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 216, 49, 0.2);
  color: #ffd831;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 216, 49, 0.4);
}

.flow-tag.muted {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #cfd9e7;
}

.gradient-card {
  background: linear-gradient(145deg, #1a0f2b, #2c143f, #3a194f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.gradient-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 216, 49, 0.18), transparent 45%),
              radial-gradient(circle at 80% 20%, rgba(230, 49, 38, 0.18), transparent 40%);
  pointer-events: none;
}

.wire-card {
  background: #0d182b;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 6px #0a0f1c, 0 18px 30px rgba(0, 0, 0, 0.45);
  position: relative;
}

.wire-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  pointer-events: none;
}

.cyber-card {
  background: #0b0f1a;
  border: 1px solid rgba(64, 224, 208, 0.18);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.cyber-card::before,
.cyber-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(64, 224, 208, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(64, 224, 208, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.4;
  pointer-events: none;
}

.cyber-card::after {
  mix-blend-mode: screen;
  background-image:
    linear-gradient(135deg, rgba(255, 216, 49, 0.08), transparent 55%);
}

.cyber-card h3 {
  color: #7be7d7;
}

.client-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 12px 0 16px;
}

.client-column {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.column-title {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #f4f4f4;
}

.client-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.client-chip.is-new {
  background: rgba(64, 224, 208, 0.12);
  color: #7be7d7;
  border: 1px solid rgba(64, 224, 208, 0.3);
}

.client-chip.is-progress {
  background: rgba(255, 216, 49, 0.12);
  color: #ffd831;
  border: 1px solid rgba(255, 216, 49, 0.35);
}

.client-chip.is-won {
  background: rgba(123, 216, 125, 0.18);
  color: #96f5a2;
  border: 1px solid rgba(123, 216, 125, 0.35);
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 216, 49, 0.4);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.4);
}

.module-card h3,
.project-card h3 {
  color: #FFD831;
  font-size: 1.1rem;
}

.small-btn {
  padding: 10px 16px;
  border: none;
  font-size: 0.95rem;
  border-radius: 10px;
  cursor: pointer;
  width: fit-content;
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f4f4f4;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ghost-btn:hover {
  border-color: #FFD831;
  color: #FFD831;
}

.mini-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-contact-form input,
.mini-contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0F1626;
  color: #f4f4f4;
  resize: none;
}

.mini-contact-form textarea {
  min-height: 70px;
}

.mini-status {
  min-height: 1.2em;
  font-size: 0.9rem;
  color: #7dd87d;
}

.calendar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-month {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(24px, 1fr));
  gap: 6px;
}

.calendar-day {
  border-radius: 10px;
  padding: 8px 0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 0.9rem;
  color: #ddd;
  transition: all 0.2s ease;
}

.calendar-day.muted {
  opacity: 0.35;
  cursor: default;
}

.calendar-day.is-today {
  border-color: #FFD831;
}

.calendar-day.is-selected {
  background: linear-gradient(135deg, #FFD831, #E63126);
  color: #0a0f1c;
  border-color: transparent;
}

.calendar-day.is-closed {
  background: rgba(255, 255, 255, 0.05);
  color: #8a97aa;
  cursor: not-allowed;
  border-style: dashed;
}

.calendar-selected {
  margin-top: 10px;
  color: #9db0c2;
  font-size: 0.95rem;
}

.calendar-slots {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slots-title {
  font-weight: 700;
  color: #dbe6ff;
  font-size: 0.95rem;
}

.slots-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-btn {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f4f4f4;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slot-btn:hover {
  border-color: #FFD831;
  color: #FFD831;
}

.slot-btn.is-reserved {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.slot-btn.is-selected {
  background: linear-gradient(135deg, #FFD831, #E63126);
  color: #0a0f1c;
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.slots-status {
  color: #9db0c2;
  font-size: 0.9rem;
}

.mini-cart {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.cart-name {
  font-weight: 700;
}

.cart-price {
  color: #9db0c2;
  font-size: 0.9rem;
}

.cart-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-qty {
  min-width: 20px;
  text-align: center;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 216, 49, 0.15), rgba(230, 49, 38, 0.15));
  color: #f4f4f4;
}

.mini-hint {
  color: #9db0c2;
  font-size: 0.95rem;
}

.popup-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  color: #dbe6ff;
}

.popup-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD831, #E63126);
  display: inline-block;
  box-shadow: 0 0 0 6px rgba(255, 216, 49, 0.1);
}

.marketing-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
  z-index: 20;
}

.marketing-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.marketing-popup {
  background: #0F1626;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  position: relative;
}

.marketing-popup .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 216, 49, 0.15);
  color: #FFD831;
  font-weight: 700;
  margin-bottom: 10px;
}

.popup-text {
  color: #cfd9e7;
  margin: 10px 0 16px;
  line-height: 1.5;
}

.popup-form {
  display: flex;
  gap: 10px;
}

.popup-form input {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0A0F1C;
  color: #fff;
}

.close-popup {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 25;
}

.modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #0f1626;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

.modal-window .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 216, 49, 0.15);
  color: #FFD831;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-text {
  color: #cfd9e7;
  margin: 10px 0 16px;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
}

.neon-window {
  border-color: rgba(64, 224, 208, 0.4);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55), 0 0 40px rgba(64, 224, 208, 0.15);
}

.automation-preview {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  margin: 0 0 16px;
}

.automation-preview li {
  background: rgba(64, 224, 208, 0.08);
  border: 1px solid rgba(64, 224, 208, 0.25);
  border-radius: 10px;
  padding: 10px 12px;
  color: #cfecea;
  font-weight: 600;
}

.crm-window {
  background: #0d1220;
  border-color: rgba(255, 255, 255, 0.1);
}

.crm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 12px 0 16px;
}

.crm-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crm-title {
  font-weight: 800;
  color: #FFD831;
}

.crm-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #dbe6ff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 560px) {
  .preview-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.card-payment {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-visual-wrap {
  display: flex;
  justify-content: center;
}

.card-visual {
  background: linear-gradient(135deg, #1e2840, #31214a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  width: min(100%, 420px);
  min-width: 260px;
  aspect-ratio: 1.585;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 216, 49, 0.15), transparent 60%);
  top: -40px;
  right: -60px;
  filter: blur(1px);
}

.card-chip {
  width: 42px;
  height: 32px;
  background: linear-gradient(135deg, #FFD831, #E6A126);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.card-number {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.card-bottom {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.5fr;
  gap: 8px;
  align-items: end;
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #cfd9e7;
}

.card-holder,
.card-expiry {
  font-weight: 700;
}

.card-brand {
  justify-self: end;
  background: rgba(255, 255, 255, 0.08);
  color: #FFD831;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.card-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-form input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0F1626;
  color: #fff;
}

.card-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {
  .popup-form {
    flex-direction: column;
  }

  .module-card,
  .project-card {
    max-width: 100%;
  }

  .card-row {
    grid-template-columns: 1fr;
  }
}

.payment-card {
  max-width: 440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


/* ———————————— FOOTER ———————————— */
.footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
