@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/* =========================================================
   TravauxPresto — clean & pro
   ========================================================= */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F7FA;
  --bg-dark: #0F172A;
  --ink: #0F172A;
  --ink-2: #1E293B;
  --text: #334155;
  --muted: #64748B;
  --line: #E5E7EB;
  --line-2: #CBD5E1;
  --primary: #1E3A8A;
  --primary-2: #1E40AF;
  --primary-3: #2563EB;
  --primary-bg: #EFF3FB;
  --success: #059669;
  --danger: #B91C1C;

  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1);

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1200px;
  --gutter: clamp(1rem, 3vw, 2rem);
}

/* =========================================================
   Reset & base
   ========================================================= */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--primary-2); }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.015em;
}

p { margin: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

::selection { background: var(--primary); color: #FFFFFF; }

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-2);
  border-color: var(--primary-2);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-outline:hover {
  background: var(--bg-alt);
  border-color: var(--ink);
  color: var(--ink);
}

.btn-white {
  background: #FFFFFF;
  color: var(--primary);
  border-color: #FFFFFF;
}
.btn-white:hover { background: var(--primary-bg); color: var(--primary-2); }

.btn-lg { padding: 1.05rem 1.9rem; font-size: 1rem; }

.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-weight: 800;
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.logo-tag {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav > a, .nav > .has-submenu > a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav > a:hover, .nav > a.active,
.nav > .has-submenu > a:hover, .nav > .has-submenu.active > a { color: var(--ink); }
.nav > a.active, .nav > .has-submenu.active > a { color: var(--primary); font-weight: 600; }

/* Submenu (dropdown) */
.has-submenu { position: relative; }
.has-submenu > a::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.has-submenu:hover > a::after,
.has-submenu:focus-within > a::after { transform: rotate(-135deg) translateY(0); }
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 90;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu li { margin: 0; }
.submenu a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.submenu a:hover, .submenu a.active {
  background: var(--primary-bg);
  color: var(--primary);
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--success);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s var(--ease);
}
.header-phone:hover { background: #047857; color: #FFFFFF; }
.header-phone::before {
  content: "";
  width: 14px; height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  position: relative;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.08), transparent 60%),
    var(--bg);
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.hero h1 .accent { color: var(--primary); }

.hero-lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 1.75rem;
  max-width: 540px;
  line-height: 1.55;
}

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.trust-bar div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}
.trust-bar .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Hero form card */
.hero-form {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-form-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.hero-form-head h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-weight: 700;
}
.hero-form-head p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* =========================================================
   Form
   ========================================================= */

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-card .btn, .hero-form .btn { width: 100%; margin-top: 0.5rem; }

/* =========================================================
   Section framework
   ========================================================= */

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #CBD5E1; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #FFFFFF; }
.section-dark .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #93C5FD;
}
.section-dark .eyebrow::before { background: #93C5FD; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.section-header.left { text-align: left; max-width: none; margin-left: 0; margin-right: auto; }
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.85rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
.section-header.left p { margin: 0; }
.section-dark .section-header p { color: #CBD5E1; }

/* =========================================================
   Stats
   ========================================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0;
}
.stat {
  text-align: center;
  padding: 1rem;
}
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.section:not(.section-dark) .stat-num { color: var(--primary); }
.stat-num .suffix {
  font-size: 0.6em;
  margin-left: 0.08em;
  color: #93C5FD;
}
.section:not(.section-dark) .stat-num .suffix { color: var(--primary-3); }
.stat-label {
  font-size: 0.95rem;
  color: var(--text);
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.5;
}
.section-dark .stat-label { color: #94A3B8; }

/* =========================================================
   Process steps
   ========================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step {
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-weight: 700;
}
.step p { font-size: 0.94rem; color: var(--text); }

/* =========================================================
   Cards (pillars / services / features)
   ========================================================= */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 22px; height: 22px; stroke-width: 2; }
.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-weight: 700;
}
.card p { font-size: 0.94rem; color: var(--text); line-height: 1.55; }

/* Service card (domaines) */
.service-card {
  padding: 1.5rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: all 0.2s var(--ease);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card .card-icon { margin-bottom: 1rem; }
.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
.service-card p { font-size: 0.9rem; color: var(--muted); flex: 1; }

/* =========================================================
   Duo panels
   ========================================================= */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.duo-panel {
  padding: 2.25rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.duo-panel.dark {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #CBD5E1;
}
.duo-panel.dark h3 { color: #FFFFFF; }
.duo-panel.dark p { color: #CBD5E1; }
.duo-panel .card-icon { margin-bottom: 1.25rem; }
.duo-panel.dark .card-icon {
  background: rgba(147, 197, 253, 0.12);
  color: #93C5FD;
}
.duo-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.duo-panel p { margin-bottom: 0.75rem; font-size: 0.98rem; }
.duo-panel .btn { margin-top: 1.25rem; align-self: flex-start; }
.duo-panel.dark .btn-outline { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.3); }
.duo-panel.dark .btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: #FFFFFF; color: #FFFFFF; }

/* =========================================================
   Page header (inner pages)
   ========================================================= */

.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.06), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-header .container { position: relative; }

/* Hero illustration (top of inner pages) */
.page-hero-image {
  width: 100%;
  height: clamp(220px, 32vw, 380px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow);
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Inline content image (article) */
.article-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
}
.article-image img { width: 100%; height: auto; display: block; }

/* Discreet inline link to Aides page */
.aides-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 1.25rem 0 0;
  padding: 0.55rem 0.9rem;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
}
.aides-link:hover { background: #DCE7F8; color: var(--primary-2); }
.aides-link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}
.aides-link:hover::after { transform: translateX(3px); }
.page-header .eyebrow { margin-bottom: 1.25rem; }
.page-header h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  max-width: 720px;
  margin-bottom: 1rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.page-header .lead {
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
}

/* =========================================================
   Article / long-form content
   ========================================================= */

.article {
  max-width: 780px;
  margin: 0 auto;
}
.article > * + * { margin-top: 1.1rem; }
.article h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.article h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.article h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.article p { color: var(--text); line-height: 1.65; }
.article strong { color: var(--ink); font-weight: 700; }
.article ul { padding-left: 1.25rem; margin: 1rem 0; }
.article ul li { margin-bottom: 0.5rem; color: var(--text); line-height: 1.55; }
.article ul li::marker { color: var(--primary); }

.info-card {
  background: var(--primary-bg);
  border-left: 3px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.info-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.info-card p { margin: 0; color: var(--ink-2); }
.info-card p + p { margin-top: 0.5rem; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.feature-item {
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.feature-item h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.feature-item p { margin: 0; font-size: 0.92rem; color: var(--text); }
.feature-item ul { margin: 0.5rem 0 0; padding-left: 1rem; font-size: 0.92rem; }

/* =========================================================
   CTA banner
   ========================================================= */

.cta-band {
  background: var(--bg-dark);
  color: #CBD5E1;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.22), transparent 55%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  color: #FFFFFF;
  margin: 0 auto 0.85rem;
  max-width: 620px;
}
.cta-band p {
  max-width: 560px;
  margin: 0 auto 1.75rem;
  color: #CBD5E1;
  font-size: 1.02rem;
}

/* =========================================================
   Contact
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  color: var(--ink);
}
.contact-info > p {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 1.02rem;
  line-height: 1.6;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:first-child { border-top: 1px solid var(--line); }
.contact-item .icon {
  width: 40px; height: 40px;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-item .icon svg { width: 18px; height: 18px; stroke-width: 2; }
.contact-item .label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.contact-item .value {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}
.contact-item a.value { color: var(--primary); }
.contact-item a.value:hover { color: var(--primary-2); }

.form-card {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.form-card .form-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--bg-dark);
  color: #94A3B8;
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-name { color: #FFFFFF; }
.footer-brand .logo-tag { color: #94A3B8; }
.footer-brand p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 320px;
}
.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; font-size: 0.95rem; line-height: 1.55; color: #94A3B8; }
.footer-col a {
  color: #CBD5E1;
  transition: color 0.2s;
}
.footer-col a:hover { color: #FFFFFF; }
.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748B;
}
.footer-bottom a { color: #94A3B8; }
.footer-bottom a:hover { color: #FFFFFF; }

/* =========================================================
   Scroll reveal (subtle)
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 0.06s; }
[data-reveal][data-delay="2"] { transition-delay: 0.12s; }
[data-reveal][data-delay="3"] { transition-delay: 0.18s; }
[data-reveal][data-delay="4"] { transition-delay: 0.24s; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  :root { --gutter: 1.1rem; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 1rem var(--gutter);
    gap: 0.25rem;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav > a, .nav > .has-submenu > a { padding: 0.8rem 0.5rem; border-bottom: 1px solid var(--line); }
  .nav > a:last-child { border-bottom: 0; }
  /* Mobile submenu : accordion in-flow */
  .has-submenu { display: block; width: 100%; }
  .has-submenu > a { width: 100%; justify-content: space-between; }
  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: var(--bg-alt);
    padding: 0.25rem 0.5rem 0.5rem 1.25rem;
    min-width: 0;
    border-bottom: 1px solid var(--line);
    margin: 0;
  }
  .submenu a { padding: 0.55rem 0.5rem; font-size: 0.9rem; border-radius: 6px; }
  .header-phone { display: none; }
  .menu-toggle { display: inline-flex; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-bar { gap: 0.75rem 1.25rem; }
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
