/* Super Assistante — landing */

@font-face {
  font-family: "Quicksand";
  src: url("/fonts/Quicksand_Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("/fonts/Quicksand_Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Folks";
  src: url("/fonts/Folks-Normal.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Folks";
  src: url("/fonts/Folks-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0a2757;
  --navy-deep: #071b3d;
  --blue: #1a56c4;
  --blue-mid: #2f6fd6;
  --blue-soft: #5b8fe0;
  --blue-pale: #e8f0fb;
  --ink: #1a2332;
  --muted: #5a6577;
  --line: #d4e0f0;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 12px 40px rgba(10, 39, 87, 0.1);
  --container: 80%;
  --header-h: 76px;
  --font-display: "Folks", "Quicksand", system-ui, sans-serif;
  --font-body: "Quicksand", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  max-width: 1600px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-mid);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.5rem;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  margin-bottom: 0.4em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(26, 86, 196, 0.28);
}

.btn-primary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue-pale);
  color: var(--navy);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(7, 27, 61, 0.2);
}

.btn-light:hover {
  background: var(--blue-pale);
  color: var(--navy);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 224, 240, 0.7);
  height: var(--header-h);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a.nav-cta,
.nav a.btn-primary {
  margin-left: 0.5rem;
  color: #ffffff !important;
  background: var(--blue);
}

.nav a.nav-cta:hover,
.nav a.btn-primary:hover {
  color: #ffffff !important;
  background: var(--navy);
  text-decoration: none;
}

.nav a.nav-cta::after,
.nav a.btn-primary::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: 0.25s var(--ease);
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 85% 40%, var(--blue-pale) 0%, transparent 65%),
    linear-gradient(180deg, #fafcfe 0%, var(--white) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 0.85rem;
}

.hero-lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-mid);
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue);
}

.hero-tagline svg {
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -8% -8% 18%;
  background: linear-gradient(145deg, #c5d8f5 0%, #e8f0fb 55%, #dfeaf8 100%);
  border-radius: 28% 42% 32% 48% / 40% 30% 50% 35%;
  z-index: 0;
  animation: blob-shift 12s ease-in-out infinite alternate;
}

.hero-photo {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-height: 560px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@keyframes blob-shift {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(6deg) scale(1.04);
  }
}

/* Benefits */
.benefits {
  padding: 4.5rem 0;
  background: var(--bg-soft);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.benefits-illus {
  display: flex;
  justify-content: center;
}

.benefits-illus svg {
  width: min(100%, 280px);
  height: auto;
}

.benefits-copy h2 {
  margin-bottom: 1rem;
}

.benefits-copy p {
  color: var(--muted);
}

.benefits-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.benefit-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue);
}

.benefit-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Services */
.services {
  padding: 4.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.service-card:hover {
  border-color: var(--blue-soft);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--blue);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.services-cta {
  text-align: center;
}

/* About / Why */
.about {
  padding: 4.5rem 0;
  background: var(--bg-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.why-item .icon {
  width: 40px;
  height: 40px;
  color: var(--blue);
}

.why-item h3 {
  font-size: 1rem;
  margin: 0;
}

.why-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.about-card .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.5rem;
}

.about-bio {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: start;
  margin: 1.25rem 0 1.5rem;
}

.about-bio img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--blue-pale);
}

.about-bio p {
  color: var(--muted);
  font-size: 0.95rem;
}

.bni-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.bni-badge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.bni-badge span {
  font-weight: 400;
  color: var(--muted);
}

/* Testimonials */
.testimonials {
  padding: 4.5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.testimonial {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--white);
  position: relative;
}

.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--blue-soft);
  opacity: 0.5;
  margin-bottom: 0.25rem;
}

.testimonial blockquote {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: 1rem;
}

.testimonial footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.stars {
  display: flex;
  gap: 0.15rem;
  color: var(--blue);
}

/* FAQ */
.faq {
  padding: 3rem 0 4.5rem;
  background: var(--bg-soft);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--blue);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .answer {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact CTA band */
.cta-band {
  --cta-blue: #1f5ec9;
  width: min(100% - 2.5rem, var(--container));
  max-width: 1600px;
  margin: 2.5rem auto 3rem;
  background: var(--cta-blue);
  color: var(--white);
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: stretch;
  min-height: 280px;
}

.cta-band-photo {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.cta-band-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-band-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 94, 201, 0) 0%,
    rgba(31, 94, 201, 0) 58%,
    rgba(31, 94, 201, 0.4) 82%,
    var(--cta-blue) 100%
  );
  pointer-events: none;
}

.cta-band-body {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2.5rem 2.5rem 2.5rem 0.5rem;
}

.cta-band-copy h2 {
  color: var(--white);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.3;
  margin: 0 0 0.85rem;
  max-width: 28rem;
}

.cta-band-copy > p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.35rem;
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.5rem;
}

.cta-contacts a,
.cta-contacts .cta-geo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.35;
}

.cta-contacts a:hover {
  text-decoration: underline;
}

.cta-contacts .cta-geo {
  font-weight: 400;
}

.cta-contacts .cta-geo svg {
  flex-shrink: 0;
}

.cta-band-aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: start;
  column-gap: 1.5rem;
  row-gap: 1rem;
}

.cta-band-aside .script {
  font-family: "Caveat", "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin: 0;
  color: var(--white);
  line-height: 1;
  position: relative;
  display: inline-block;
  grid-column: 1;
  grid-row: 1;
}

.cta-band-aside .script::after {
  content: "";
  display: block;
  width: 85%;
  height: 10px;
  margin-top: 0.15rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' fill='none'%3E%3Cpath d='M2 8c18-6 38-6 56 0s38 6 58 0' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.cta-band-aside .btn-cta-band {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.btn-cta-band {
  background: var(--white);
  color: var(--cta-blue);
  border: 2px solid var(--white);
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
  box-shadow: none;
  white-space: nowrap;
}

.btn-cta-band:hover {
  background: var(--blue-pale);
  color: var(--navy);
  border-color: var(--blue-pale);
}

/* Contact form section */
.contact {
  padding: 4.5rem 0;
}

.contact-page {
  padding: 3.5rem 0 5rem;
}

.contact-page h1 {
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-list .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: grid;
  place-items: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
}

.contact-list a,
.contact-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 196, 0.15);
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.alert-success {
  background: #e6f7ed;
  color: #0d6b3a;
  border: 1px solid #b7e4c7;
}

.alert-error {
  background: #fdecea;
  color: #a31b14;
  border: 1px solid #f5c2c0;
}

/* Footer */
.site-footer {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 224, 240, 0.7);
  color: var(--muted);
  padding: 2.5rem 0 1.75rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-brand {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-pale);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--blue);
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}

.footer-copy {
  border-top: 1px solid rgba(212, 224, 240, 0.7);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Legal pages */
.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-page h3 {
  margin-top: 1.25rem;
  font-size: 1.1rem;
}

.legal-page .content {
  max-width: 760px;
  color: var(--muted);
}

.legal-page .content a {
  word-break: break-word;
}

.cgv-updated {
  color: var(--muted);
  font-size: 0.95rem;
}

.cgv-identity {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin: 1.5rem 0 2rem;
}

.cgv-identity p {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.cgv-identity p:last-child {
  margin-bottom: 0;
}

.cgv article {
  margin-bottom: 1.75rem;
}

.cgv article h2 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.cgv-emphasis {
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.cgv-download {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.cgv-download a {
  font-weight: 700;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .benefits-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    margin: 1.5rem auto 2rem;
    border-radius: 14px;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .cta-band-photo {
    max-height: 200px;
  }

  .cta-band-photo::after {
    background: linear-gradient(
      180deg,
      rgba(31, 94, 201, 0) 0%,
      rgba(31, 94, 201, 0.4) 55%,
      var(--cta-blue) 100%
    );
  }

  .cta-band-body {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.5rem 2.25rem;
  }

  .cta-band-aside {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
  }

  .benefits-illus {
    order: -1;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a::after {
    display: none;
  }

  .nav-cta {
    margin: 1rem 0 0;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .hero-visual {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .cta-band {
    width: min(100% - 1.5rem, 100%);
  }

  .hero {
    padding: 2.25rem 0 3rem;
  }

  .benefits,
  .services,
  .about,
  .testimonials,
  .faq,
  .contact {
    padding: 3rem 0;
  }

  .services-grid,
  .testimonials-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-bio {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .logo-img {
    height: 44px;
  }

  .logo-text {
    font-size: 0.7rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .hero-photo {
    max-height: 420px;
    aspect-ratio: 3 / 4;
  }

  .contact-form-wrap {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-visual::before {
    animation: none;
  }

  .btn:hover,
  .service-card:hover,
  .benefit-card:hover {
    transform: none;
  }
}
