/* ===== TOKENS ===== */
:root {
  --bg: #ffffff;
  --bg-card: #f5f5f5;
  --bg-elevated: #ebebeb;
  --fg: #071525;
  --fg-muted: #071525;
  --fg-subtle: #071525;
  --accent: #2F84FF;
  --dark: #071525;
  --dark-fg: #ffffff;
  --dark-muted: rgba(255, 255, 255, 0.7);
  --border: rgba(0, 0, 0, 0.08);
  --radius: 5px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font: 'Manrope', -apple-system, sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
strong { font-weight: 600; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

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

/* ===== LABELS ===== */
.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.label--dark { color: var(--dark-muted); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.5s var(--ease);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.3s var(--ease);
}

.nav-link:hover {
  color: var(--fg);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-cta:hover {
  transform: scale(1.04);
  opacity: 0.88;
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('hero-bg.webp') center/cover no-repeat;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(47, 132, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 120px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: #0E376D;
  text-align: center;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-left {
  max-width: 560px;
  text-align: center;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  font-weight: bold;
  color: #0E376D;
  margin-bottom: 32px;
}

.hero-sub strong {
  color: var(--fg);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-note {
  font-size: 13px;
  color: var(--fg-subtle);
}

.hero-right {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  display: block;
  margin-top: 8px;
}

/* ===== BUTTONS ===== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(47, 132, 255, 0.15);
}

.btn-pill--large {
  padding: 20px 48px;
  font-size: 17px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: #fff;
  border: 1.5px solid var(--fg-subtle);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-muted);
  transition: all 0.3s var(--ease);
}

.btn-outline:hover {
  border-color: var(--fg);
  color: var(--fg);
}

button.btn-outline {
  background: none;
  cursor: pointer;
  font-family: var(--font);
}

.hero .btn-outline {
  background: #fff;
  color: var(--fg);
  border-color: #fff;
}

.btn-outline--large {
  padding: 20px 48px;
  font-size: 17px;
}

/* ===== HERO TRUST ===== */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-stars {
  color: #facc15;
  font-size: 18px;
  letter-spacing: 2px;
}

.hero-trust-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
}

/* ===== MODAL ===== */
.modal {
  border: none;
  border-radius: 20px;
  padding: 0;
  max-width: 480px;
  width: calc(100% - 48px);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  margin: auto;
}

.modal::backdrop {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-content {
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--fg-subtle);
  transition: color 0.2s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--fg);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: #0E376D;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.modal-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.modal-input {
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}

.modal-input:focus {
  border-color: var(--accent);
}

.modal-input::placeholder {
  color: var(--fg-subtle);
}

.modal-submit {
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 14px 24px;
  font-size: 15px;
}

.modal-separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--fg-subtle);
  font-size: 13px;
}

.modal-separator::before,
.modal-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--fg-subtle);
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.section--dark {
  background: var(--dark);
  color: var(--dark-fg);
}

.section--dark h2 { color: var(--dark-fg); }
.section--dark p { color: var(--dark-muted); }
.section--dark strong { color: var(--dark-fg); }


.section--blue {
  background: var(--accent);
  color: #fff;
}

.section--blue h2 { color: #fff; }
.section--blue p { color: #fff; }
.section--blue strong { color: #fff; }
.section--blue .label { color: #fff; }
.section--blue .pain-point { border-bottom-color: rgba(255,255,255,0.12); }
.section--blue .pain-num { color: #fff; }
.section--blue .stats { border-top-color: rgba(255,255,255,0.12); }
.section--blue .stat-desc { color: #fff; }

.section--accent {
  background: var(--accent);
  color: #fff;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: #0E376D;
}

.h2--dark { color: #fff; }

/* ===== RÉASSURANCE ===== */
.reassurance {
  padding: 64px 0;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.reassurance-item {
  text-align: center;
}

.reassurance-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 16px;
}

.reassurance-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--fg);
}

.reassurance-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}

@media (max-width: 768px) {
  .reassurance-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== MANIFESTO ===== */
.section--manifesto {
  background: #0E376D;
  padding: 60px 0;
}

.section--manifesto .label {
  color: #fff;
}

.manifesto-intro {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 8px;
}

.manifesto {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.manifesto-body {
  margin-top: 40px;
}

.manifesto-body p {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 24px;
}

.manifesto-body strong {
  color: #fff;
}

.manifesto-highlight {
  font-size: 20px !important;
  font-weight: 700;
  color: #fff !important;
  margin: 36px 0 !important;
}

.manifesto-closing {
  font-size: 20px !important;
  font-weight: 700;
  color: #fff !important;
  margin-top: 36px !important;
  font-style: italic;
}

/* ===== PROBLÈME — SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.split-left { position: sticky; top: 120px; align-self: start; }

.pain-point {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pain-point:first-child { padding-top: 0; }

.pain-num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 12px;
}

.pain-point p {
  font-size: 17px;
  line-height: 1.7;
  color: #fff;
}

.pain-point strong { color: var(--dark-fg); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-unit { font-size: 0.6em; }

.stat-desc {
  font-size: 13px;
  color: var(--dark-muted);
  line-height: 1.5;
}

/* ===== CUSTOM / SUR-MESURE ===== */
.custom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.custom-text p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.custom-text p:last-child { margin-bottom: 0; }
.custom-text strong { color: var(--fg); }

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.custom-thumb {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.custom-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease);
}

.custom-thumb:hover img {
  transform: scale(1.06);
}

.custom-caption {
  text-align: center;
  font-size: 13px;
  color: var(--fg-subtle);
  margin-top: 16px;
  font-style: italic;
}

@media (max-width: 900px) {
  .custom-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===== BENEFITS ===== */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.benefits-left {
  position: sticky;
  top: 120px;
}

.benefits-text p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.benefits-text p:last-child { margin-bottom: 0; }
.benefits-text strong { color: var(--fg); }

.benefit-card {
  padding: 32px;
  background: #F8FBFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
}

.benefit-card:last-child { margin-bottom: 0; }

.benefit-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-subtle);
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits-left {
    position: static;
  }
}

/* ===== OFFRE ===== */
.offer-header {
  margin-bottom: 60px;
}

.offer-price-card {
  margin-top: 28px;
  background: var(--accent);
  border-radius: 12px;
  padding: 28px 32px;
  color: #fff;
}

.offer-price-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.offer-old {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.offer-new {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.offer-tag {
  font-size: 15px;
  color: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.offer-item {
  padding: 36px 32px;
  background: #F8FBFF;
}

.offer-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-subtle);
  margin-bottom: 16px;
}

.offer-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.offer-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.offer-explain {
  font-size: 14px;
  color: var(--fg-subtle);
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== PRICING ===== */
.section--pricing {
  background: var(--bg);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pricing-left {
  position: sticky;
  top: 120px;
}

.pricing-desc {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 360px;
}

.pricing-card {
  background: #F8FBFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  color: var(--fg);
}

.pricing-card-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
  color: #0E376D;
}

.pricing-period {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  background: var(--accent);
  color: #fff;
}

.pricing-cta:hover {
  box-shadow: 0 12px 40px rgba(47, 132, 255, 0.3);
}

@media (max-width: 900px) {
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-left {
    position: static;
  }
}

@media (max-width: 640px) {
  .pricing-card {
    padding: 36px 28px;
  }

  .pricing-amount {
    font-size: 48px;
  }
}

/* ===== PROCESS ===== */
.section--accent .label { color: #fff; }
.section--accent h2 { color: #fff; }
.section--accent p { color: #fff; }
.section--accent strong { color: #fff; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 48px 0;
}

.process-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 15px;
  line-height: 1.6;
}

.process-note {
  font-size: 15px;
  font-style: italic;
}

/* ===== PORTFOLIO ===== */
.section--portfolio {
  padding-bottom: 0;
}

.portfolio-header {
  margin-bottom: 48px;
}

.portfolio-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px clamp(80px, 10vw, 140px);
  scrollbar-width: none;
}

.portfolio-scroll::-webkit-scrollbar { display: none; }

.portfolio-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.portfolio-card {
  width: 340px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: transform 0.5s var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

.portfolio-img {
  overflow: hidden;
  height: 220px;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s var(--ease);
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.05);
}

.portfolio-meta {
  padding: 20px;
}

.portfolio-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.portfolio-meta span {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ===== TESTIMONIALS ===== */
.section--testimonial {
  background: #F8FBFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--fg-muted);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-img img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.testimonial-info {
  flex: 1;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--fg);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--fg-muted);
}

.testimonial-stars {
  color: #facc15;
  font-size: 14px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ROI ===== */
.roi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.roi-subtitle {
  font-size: 20px;
  color: var(--fg-muted);
  font-style: italic;
  font-family: var(--font-display);
}

.roi-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--fg-muted);
}

.roi-val {
  font-weight: 700;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.roi-line--accent {
  border-bottom: none;
  padding: 24px 28px;
  margin-top: 8px;
  background: var(--accent);
  border-radius: 12px;
  color: #fff;
}

.roi-val--big {
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
}

.roi-footnote {
  margin-top: 20px;
  font-size: 14px;
  color: var(--fg-subtle);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-header { margin-bottom: 48px; }

.faq-list {
  max-width: 680px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: opacity 0.3s;
  color: var(--dark-fg);
}

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

.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--dark-fg);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; transition: transform 0.4s var(--ease); }

.faq-item[open] .faq-toggle { transform: rotate(45deg); }

.faq-item p {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  max-width: 560px;
}

/* ===== CTA FINAL ===== */
.section--cta {
  text-align: center;
  padding: clamp(100px, 14vw, 200px) 0;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note {
  font-size: 13px;
  color: var(--fg-subtle);
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.footer-by {
  display: block;
  font-size: 13px;
  color: var(--fg-subtle);
  margin-top: 2px;
}

.footer-right {
  font-size: 12px;
  color: var(--fg-subtle);
  display: flex;
  gap: 16px;
}

.footer-right a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: transform 0.3s var(--ease);
}

.sticky-btn:active { transform: scale(0.96); }
.sticky-wa { background: #25d366; }
.sticky-tel { background: var(--dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-left {
    position: static;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .roi-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-right { text-align: left; }

  .portfolio-card { width: 280px; }
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .offer-new {
    font-size: 40px;
  }

  .offer-price-block {
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-pill--large {
    width: 100%;
    justify-content: center;
  }

  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .sticky-cta {
    display: flex;
  }

  .footer {
    padding-bottom: 80px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .portfolio-card {
    width: 260px;
  }

  .portfolio-img {
    height: 170px;
  }
}
