/* Moveloraq — design v2 (chaleur + tech) — font: Outfit (link in HTML) */

:root {
  --color-primary: #ea580c;
  --color-primary-bright: #f97316;
  --color-primary-dark: #c2410c;
  --color-accent-cool: #2563eb;
  --color-accent-cool-soft: #dbeafe;
  --color-text: #0c111d;
  --color-text-muted: #5c6578;
  --color-bg: #f3f0eb;
  --color-bg-hero-mid: #ebe6df;
  --color-bg-paper: #faf8f5;
  --color-bg-alt: #e8e4dd;
  --color-border: #d4cfc6;
  --color-border-strong: #b8b2a6;
  --color-check: #ea580c;
  --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shadow: 0 2px 8px rgba(12, 17, 29, 0.06);
  --shadow-md: 0 8px 24px rgba(12, 17, 29, 0.08);
  --shadow-lg: 0 20px 50px rgba(12, 17, 29, 0.12);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.6) inset, 0 4px 24px rgba(234, 88, 12, 0.15);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 100px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

body.cookies-hidden {
  padding-bottom: 0;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* header bar accent */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 250, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid color-mix(in srgb, var(--color-border) 80%, var(--color-primary) 12%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent-cool) 100%);
  pointer-events: none;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.1;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem 1.35rem;
  flex-wrap: wrap;
}

.nav a:not(.btn-nav) {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.2rem 0;
}

.nav a:not(.btn-nav)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-cool));
  border-radius: 1px;
  transition: width 0.2s ease;
}

.nav a:not(.btn-nav):hover {
  color: var(--color-text);
}

.nav a:not(.btn-nav):hover::after {
  width: 100%;
}

.btn-nav {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-bright) 100%);
  color: white !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 12px rgba(234, 88, 12, 0.35);
  border: 1px solid color-mix(in srgb, white 20%, var(--color-primary));
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-nav::after {
  display: none;
}

.btn-nav:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.45);
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-bg-paper) 0%, var(--color-bg-hero-mid) 50%, #ddd6cb 100%);
  border-bottom: 1px solid var(--color-border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      90deg,
      rgba(12, 17, 29, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(180deg, rgba(12, 17, 29, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black 0%, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 50%, transparent 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  max-width: 480px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-primary-dark);
  border: 2px solid color-mix(in srgb, var(--color-primary) 45%, transparent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--color-primary) 35%, transparent);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.12em;
}

.hero-text {
  margin: 0 0 1.65rem;
  color: var(--color-text-muted);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 48ch;
}

.hero-buttons {
  display: flex;
  gap: 0.9rem 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.65rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.12s, box-shadow 0.2s, border-color 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ea580c 40%, #f97316 100%);
  color: white;
  border: 1px solid color-mix(in srgb, white 25%, var(--color-primary));
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  border: 2px solid var(--color-border-strong);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: white;
  border-color: var(--color-accent-cool);
  color: var(--color-accent-cool);
}

.trust-badges {
  display: flex;
  gap: 1rem 1.75rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.trust-badges .check {
  color: #15803d;
  font-weight: 700;
  margin-right: 0;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 901px) {
  .hero-image-wrap {
    perspective: 800px;
  }
}

.hero-image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transform: rotate(-1.5deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (max-width: 900px) {
  .hero-image {
    transform: none;
  }
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15), 0 25px 55px rgba(12, 17, 29, 0.15);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-placeholder {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Sections */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  text-align: center;
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 1rem;
  color: var(--color-text);
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent-cool) 100%);
}

.section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.subsection-title {
  font-size: 1.2rem;
  margin: 2rem 0 0.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--color-text);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.35rem;
}

.benefit-card {
  background: var(--color-bg-paper);
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--color-primary) 30%, var(--color-border));
}

.benefit-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  color: var(--color-text);
  font-weight: 600;
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.step {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(145deg, var(--color-accent-cool) 0%, #1d4ed8 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  box-shadow: 0 0 0 3px var(--color-accent-cool-soft);
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.15rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.35rem;
}

.review-card {
  background: var(--color-bg-paper);
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent-cool);
  transition: box-shadow 0.2s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-style: normal;
  color: var(--color-text);
  line-height: 1.6;
  font-size: 0.98rem;
}

.review-card cite {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.verified {
  font-size: 0.78rem;
  color: var(--color-accent-cool);
  margin-top: 0.5rem;
  display: block;
  font-weight: 500;
}

/* Stories */
.stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.35rem;
}

.story-card {
  background: var(--color-bg-paper);
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.story-card blockquote {
  margin: 0 0 1rem;
  font-style: normal;
  line-height: 1.6;
  color: var(--color-text);
}

.story-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* FAQ */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg-paper);
  border-radius: var(--radius);
  margin-bottom: 0.55rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: color-mix(in srgb, var(--color-primary) 25%, var(--color-border));
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 1.05rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  color: var(--color-text);
  font-size: 0.98rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.2;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--color-accent-cool);
}

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid var(--color-border);
  padding-top: 0.9rem;
}

.faq-item p a {
  color: var(--color-accent-cool);
  font-weight: 500;
}

/* Order */
.order-section {
  padding-bottom: 4.5rem;
}

.order-box {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fffefb 0%, var(--color-bg-paper) 100%);
  padding: 2.1rem 2rem 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.price {
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.price-note {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.order-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.order-features li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.order-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #15803d;
  font-weight: 700;
}

.product-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--color-text);
  text-align: left;
}

.order-box-cta {
  text-align: center;
}

.order-box-cta .order-features,
.order-box-cta .price,
.order-box-cta .price-note,
.order-box-cta .product-label {
  text-align: left;
}

.order-cta-hint {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.order-buy-btn {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 1.05rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.38);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%);
  color: #94a3b8;
  padding: 3.25rem 0 2rem;
  border-top: 1px solid rgba(234, 88, 12, 0.25);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary) 30%, var(--color-accent-cool) 70%, transparent);
  opacity: 0.5;
  pointer-events: none;
}

.footer .logo {
  color: #f8fafc;
}

.footer .logo-sub {
  color: #94a3b8;
}

.footer-tagline {
  max-width: 480px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-nav h4 {
  color: #e2e8f0;
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-nav a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-address {
  font-size: 0.84rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #84a0b2;
  max-width: 720px;
}

.footer-copy {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: color-mix(in srgb, var(--color-bg-paper) 95%, #fff);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: 1.1rem 1.5rem 1.2rem;
  box-shadow: 0 -8px 32px rgba(12, 17, 29, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  flex: 1;
  min-width: 280px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--color-accent-cool);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-buttons {
  display: flex;
  gap: 0.6rem 0.75rem;
  flex-wrap: wrap;
}

.btn-outline {
  background: white;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.btn-outline:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-border-strong);
}

.btn-cookie {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: none;
  }

  .hero-text {
    max-width: none;
  }

  .hero-buttons {
    justify-content: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .hero h1 .highlight {
    text-decoration: none;
  }
}

@media (max-width: 640px) {
  .header .container {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }

  .nav .btn-nav {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 2.75rem 0 2.5rem;
  }

  .section {
    padding: 3.25rem 0;
  }
}
