/* ===== VARIABLES ===== */
:root {
  --navy: #0f2b46;
  --navy-light: #163a5c;
  --blue: #1a6fb5;
  --blue-light: #e8f2fb;
  --orange: #f4a261;
  --orange-dark: #e08c4a;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #eef1f5;
  --gray-200: #dce1e8;
  --gray-400: #9aa5b4;
  --gray-600: #5a6577;
  --gray-800: #2d3748;
  --text: #1a202c;
  --text-light: #4a5568;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.1);
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--white); }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-dark .section-label { color: var(--orange); }
.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--gray-100); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1fb855; }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.nav-logo img {
  height: 160px;
  width: auto;
  margin: -40px 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-cta .btn { padding: 10px 22px; font-size: 14px; }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle svg { display: block; }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--navy) 0%, #1a3a5c 50%, #1e4470 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,162,97,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
}
.hero-badge svg { flex-shrink: 0; }
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero-trust-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== FICHE GOOGLE ===== */
.fiche-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3e2 100%);
  border-bottom: 1px solid #f4e6d0;
}
.fiche-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.fiche-icon {
  flex-shrink: 0;
  width: 80px; height: 80px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.fiche-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.fiche-content h2 span { color: var(--orange); }
.fiche-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}
.fiche-content p strong { color: var(--text); }

/* ===== PROBLEM ===== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.problem-stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.problem-stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.problem-stat-label {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
}
.problem-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.problem-content h2 span { color: var(--orange); }
.problem-content p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.problem-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}
.problem-highlight p {
  font-size: 15px;
  color: var(--navy);
  margin: 0;
  font-weight: 500;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.step-card:hover { background: rgba(255,255,255,0.08); }
.step-number {
  width: 52px; height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.portfolio-grid .portfolio-card:last-child {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}
.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.portfolio-browser {
  background: var(--gray-100);
  padding: 12px 16px 0;
}
.portfolio-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.portfolio-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}
.portfolio-preview {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  overflow: hidden;
}
.portfolio-preview img {
  width: 100%;
  height: auto;
  object-position: top;
  display: block;
}
.portfolio-info { padding: 20px; }
.portfolio-info h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.portfolio-info p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.portfolio-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.pricing-card.popular {
  border-color: var(--orange);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light);
}
.pricing-recurrence {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.pricing-features {
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
}
.pricing-feature svg { flex-shrink: 0; color: #22c55e; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== REASSURANCE ===== */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.reassurance-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.reassurance-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue);
}
.reassurance-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.reassurance-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: var(--text);
  transition: var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,181,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-info-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.contact-whatsapp-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.contact-whatsapp-big h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-whatsapp-big p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.5;
}
.contact-whatsapp-big .btn { font-size: 16px; padding: 14px 32px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-logo img {
  height: 144px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image img { height: 300px; }
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 30px; }
  .fiche-inner { flex-direction: column; text-align: center; gap: 20px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .step-arrow { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .portfolio-card:last-child { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    gap: 16px;
  }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-trust { gap: 20px; }
  .section { padding: 60px 0; }
  .reassurance-grid { grid-template-columns: 1fr; }
}
