/* ===== Reset & base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #10192b;
  --navy-light: #1b2740;
  --accent: #ff6b4a;
  --accent-dark: #e85535;
  --cream: #fff8f2;
  --text-dark: #1a1f2b;
  --text-muted: #5c6478;
  --border: #e8e4de;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(16, 25, 43, 0.08);
  --shadow-lg: 0 20px 50px rgba(16, 25, 43, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent-dark);
  width: 100%;
  margin-top: 8px;
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; margin-top: 8px; }
.btn-nav {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
}
.logo span { color: var(--accent); }
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a:not(.btn) {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav a:not(.btn):hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero { padding: 80px 0 60px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(255, 107, 74, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.highlight { color: var(--accent); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.stars { color: #ffb400; letter-spacing: 2px; }

.hero-visual { position: relative; }
.mock-browser {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.mock-bar {
  background: #f1ede7;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
}
.mock-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d8d2c8;
}
.mock-content { padding: 24px; }
.mock-hero {
  height: 120px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #ffb199);
  margin-bottom: 16px;
}
.mock-line {
  height: 10px;
  border-radius: 6px;
  background: #ece7e0;
  margin-bottom: 10px;
}
.w60 { width: 60%; }
.w40 { width: 40%; }
.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.mock-card {
  height: 60px;
  border-radius: 8px;
  background: #f6f2ec;
  border: 1px solid var(--border);
}
.floaty {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  animation: floaty 3.5s ease-in-out infinite;
}
.floaty-1 { top: -10px; right: -10px; }
.floaty-2 { bottom: 20px; left: -20px; animation-delay: 1.2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Strip ===== */
.strip { padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-alt { background: #fff; }
.section-eyebrow {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section h2 {
  font-size: 2.2rem;
  max-width: 700px;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
  margin-bottom: 56px;
}

/* ===== Cards (services) ===== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.card-featured h3, .card-featured p { color: #fff; }
.card-featured .check-list li { color: #d6dae5; }
.card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: rgba(255, 107, 74, 0.12);
  border-radius: 14px;
  margin-bottom: 20px;
}
.card-featured .card-icon { background: rgba(255,255,255,0.12); }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card > p { color: var(--text-muted); margin-bottom: 20px; }
.badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}
.check-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Two col (pourquoi / contact) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.feature-list { margin-top: 36px; display: flex; flex-direction: column; gap: 28px; }
.feature { display: flex; gap: 20px; }
.feature-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
  min-width: 40px;
}
.feature h4 { font-size: 1.05rem; margin-bottom: 4px; }
.feature p { color: var(--text-muted); font-size: 0.95rem; }

.two-col-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stat-1 { transform: translateX(10%); }
.stat-2 { background: var(--navy); }
.stat-2 .stat-number, .stat-2 .stat-label { color: #fff; }
.stat-3 { transform: translateX(10%); }
.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Portfolio ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-thumb { height: 160px; }
.thumb-1 { background: linear-gradient(135deg, #ffd9a0, #ff9d6c); }
.thumb-2 { background: linear-gradient(135deg, #b6c9ff, #7b93e0); }
.thumb-3 { background: linear-gradient(135deg, #ffb199, #ff6b4a); }
.thumb-4 { background: linear-gradient(135deg, #c9d6df, #7a92a3); }
.portfolio-info { padding: 18px 20px; }
.portfolio-info h4 { font-size: 1rem; margin-bottom: 4px; }
.portfolio-info p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.price { margin-bottom: 24px; }
.price-amount {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.price-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}
.price-combo {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-combo .price-amount { font-size: 1.7rem; }
.price-amount-recurring { color: var(--accent-dark); }
.price-sep {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.price-sep::before,
.price-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.price-card .check-list { flex-grow: 1; margin-bottom: 12px; }
.price-featured {
  border: 2px solid var(--accent);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 32px;
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial p { margin: 16px 0 20px; font-size: 1rem; }
.testi-author { font-weight: 600; color: var(--navy); font-size: 0.9rem; }

/* ===== CTA band ===== */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-inner h2 { color: #fff; margin-bottom: 12px; max-width: 100%; }
.cta-inner p { color: #c4cbdb; margin-bottom: 30px; font-size: 1.1rem; }

/* ===== Contact ===== */
.contact-infos { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; font-size: 0.95rem; }
.contact-info-item span { font-size: 1.4rem; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--accent-dark);
  font-weight: 600;
  min-height: 20px;
}

/* ===== Footer ===== */
.footer { background: var(--navy); color: #c4cbdb; padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; max-width: 280px; }
.footer-links h5 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-links a { display: block; margin-bottom: 10px; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding: 24px 0;
  font-size: 0.85rem;
  text-align: center;
  color: #8b93a8;
}

/* ===== Floating CTA (mobile) ===== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(255,107,74,0.4);
  z-index: 99;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .two-col { grid-template-columns: 1fr; }
  .cards-3, .pricing-grid, .testimonials { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .price-featured { transform: none; }
}

@media (max-width: 720px) {
  .nav { position: fixed; top: 76px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: stretch; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--border); transform: translateY(-150%); opacity: 0; transition: all 0.3s ease; }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav .btn-nav { width: 100%; }
  .burger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .cards-3, .pricing-grid, .testimonials, .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .strip-inner { justify-content: flex-start; overflow-x: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .floating-cta { display: block; }
  .stat-1, .stat-3 { transform: none; }
  .section { padding: 70px 0; }
}
