/* ============================================================
   CLAREXIS — Landing Page Styles
   ============================================================ */

:root {
  --blue: #5D96F4;
  --blue-dark: #3a78e0;
  --blue-light: #EBF2FF;
  --text-dark: #0F1729;
  --text-mid: #374151;
  --text-light: #6B7280;
  --bg: #FFFFFF;
  --bg-gray: #F8FAFC;
  --border: #E5E9F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(93,150,244,0.35);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--blue);
}

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.15s;
}

.nav a:hover {
  color: var(--blue);
}

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

.header-btn-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.15s;
}

.header-btn-login:hover {
  color: var(--blue);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 80px 0 90px;
  background: var(--bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-trust span::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
}

/* Dashboard Mockup */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
}

.mockup-bar {
  background: #F1F4F8;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-bar-title {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.mockup-body {
  padding: 20px;
  background: var(--bg-gray);
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.stat-label {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.stat-value.blue {
  color: var(--blue);
}

.stat-value.green {
  color: #22c55e;
}

.stat-value.orange {
  color: #f59e0b;
}

.mockup-table {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.mockup-table-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 8px;
  padding: 8px 12px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border);
}

.th {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mockup-table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 8px;
  padding: 9px 12px;
  border-bottom: 1px solid #F3F4F6;
  align-items: center;
}

.mockup-table-row:last-child {
  border-bottom: none;
}

.td {
  font-size: 11px;
  color: var(--text-mid);
}

.td-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 11px;
}

.td-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
}

.badge-unlocked {
  background: #DCFCE7;
  color: #16a34a;
}

.badge-locked {
  background: #F3F4F6;
  color: #9CA3AF;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */

section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

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

.text-center .section-sub {
  margin: 0 auto;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */

.problem-section {
  background: var(--bg-gray);
}

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

.problem-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FFF1F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   CONCRETE SECTION
   ============================================================ */

.concrete-section {
  background: white;
}

.concrete-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.concrete-card {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.concrete-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(93,150,244,0.07), var(--shadow-sm);
}

.concrete-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.concrete-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.concrete-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */

.solution-section {
  background: var(--bg-gray);
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.solution-intro {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 4px;
}

.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.benefit-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.solution-visual {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.search-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-bar-mockup {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
}

.search-bar-mockup span {
  color: #9CA3AF;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tag {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
}

.filter-tag.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.result-count {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.result-count strong {
  color: var(--blue);
}

.prospect-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prospect-mini-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prospect-info-mini {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prospect-name-mini {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.prospect-role-mini {
  font-size: 11px;
  color: var(--text-light);
}

.unlock-btn-mini {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
  background: white;
}

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

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   TARGET SECTION
   ============================================================ */

.target-section {
  background: var(--bg-gray);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.target-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.target-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(93,150,244,0.08);
}

.target-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.target-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.target-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.howitworks-section {
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--blue), var(--border));
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: white;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.pricing-section {
  background: var(--bg-gray);
}

/* 3-card grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

/* Base card — Framer style */
.pcard {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  /* dotted background pattern */
  background-image: radial-gradient(circle, #D1D5DB 1px, transparent 1px);
  background-size: 20px 20px;
  background-color: white;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

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

/* Featured card (Pro) */
.pcard-featured {
  border: 2px solid var(--blue);
  box-shadow: 0 0 0 5px rgba(93,150,244,0.08), var(--shadow-md);
}

.pcard-featured:hover {
  box-shadow: 0 0 0 5px rgba(93,150,244,0.12), var(--shadow-lg);
}

.pcard-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* Card header zone — white overlay so dots don't bleed into text */
.pcard-header {
  background: white;
  border-radius: 12px;
  padding: 4px 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pcard-name {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.pcard-amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -2px;
  line-height: 1;
}

.pcard-period {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 400;
}

.pcard-tagline {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* CTA button */
.pcard-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  margin-bottom: 24px;
  background: var(--text-dark);
  color: white;
  border: 2px solid var(--text-dark);
}

.pcard-cta:hover {
  background: #1a2540;
  border-color: #1a2540;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.pcard-cta-featured {
  background: var(--blue);
  border-color: var(--blue);
}

.pcard-cta-featured:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(93,150,244,0.38);
}

/* Features list */
.pcard-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: white;
  border-radius: 10px;
  padding: 4px 0;
}

.pcard-features li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}

.pcard-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 13px;
}

/* Règles communes */
.pricing-rules-common {
  max-width: 520px;
  margin: 40px auto 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.pricing-rules-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  text-align: center;
}

.pricing-rules-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-rules-row:last-child {
  border-bottom: none;
}

.rule-pill {
  font-weight: 700;
  color: var(--text-dark);
  background: white;
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.pricing-rules-example {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* Packs section */
.packs-section {
  margin-top: 48px;
}

.packs-section h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pack-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
}

.pack-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.pack-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
  margin: 2px 0;
}

.pack-sub {
  font-size: 11px;
  color: var(--text-light);
}

/* ============================================================
   CREDIBILITY SECTION
   ============================================================ */

.credibility-section {
  background: var(--blue);
  padding: 80px 0;
}

.credibility-section .section-title {
  color: white;
}

.credibility-intro {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.7;
  margin: 12px auto 48px;
  text-align: center;
}

.credibility-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.credibility-point {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: background 0.2s;
}

.credibility-point:hover {
  background: rgba(255,255,255,0.15);
}

.credibility-point-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.credibility-point h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.credibility-point p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
  background: var(--bg-gray);
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--blue);
  font-weight: 700;
  transition: transform 0.25s, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.finalcta-section {
  background: white;
  text-align: center;
}

.finalcta-section .section-title {
  max-width: 600px;
  margin: 0 auto 16px;
}

.finalcta-section .section-sub {
  max-width: 540px;
  margin: 0 auto 40px;
}

/* ============================================================
   PRESENTATION — CALENDLY SECTION
   ============================================================ */

.calendly-section {
  background: white;
  padding: 80px 0;
}

.calendly-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.calendly-card-left {
  flex: 1;
}

.calendly-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.calendly-card-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.calendly-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.calendly-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}

.calendly-meta-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.calendly-open-btn {
  padding: 16px 36px;
  font-size: 16px;
  white-space: nowrap;
}

.calendly-hint {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

@media (max-width: 700px) {
  .calendly-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }

  .calendly-card-right {
    width: 100%;
  }

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

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--text-dark);
  padding: 48px 0 32px;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-brand .logo {
  color: white;
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}

.footer-links ul a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-btn-main {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mockup-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .concrete-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-inner {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .steps-grid::before {
    display: none;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credibility-points {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  section {
    padding: 56px 0;
  }

  .hero {
    padding: 48px 0 56px;
  }


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

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

  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mockup-table-header,
  .mockup-table-row {
    grid-template-columns: 2fr 1.5fr 1fr;
  }

  .th:last-child,
  .td:last-child {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
