:root {
  --blue-950: #071a38;
  --blue-900: #0e2f63;
  --blue-700: #1f5fbf;
  --blue-500: #4f86e8;
  --red-700: #b3122a;
  --red-500: #d1344b;
  --white-100: #ffffff;
  --white-200: #f4f8ff;
  --white-300: #e8eef8;
  --ink-900: #101c32;
  --ink-700: #33435e;
  --ink-500: #596a87;
  --shadow-strong: 0 26px 70px rgba(10, 31, 67, 0.28);
  --shadow-soft: 0 14px 35px rgba(9, 24, 52, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --container: min(1160px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white-100);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -42px;
  left: 12px;
  background: var(--white-100);
  color: var(--ink-900);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 20, 43, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white-100);
  text-decoration: none;
  white-space: nowrap;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-menu a {
  color: var(--white-100);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: #b9cdf6;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--white-100);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(86, 140, 238, 0.3) 0%, rgba(11, 33, 72, 0) 42%),
    radial-gradient(circle at 13% 74%, rgba(189, 27, 59, 0.26) 0%, rgba(189, 27, 59, 0) 36%),
    linear-gradient(102deg, #06122d 0%, #0a2d66 54%, #102645 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.14;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.8rem;
  min-height: calc(100svh - 76px);
  padding: 0;
  align-items: stretch;
}

.hero-copy {
  align-self: center;
  margin-top: 0;
}

.eyebrow {
  margin: 0;
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red-500);
}

.eyebrow-dark {
  color: var(--red-700);
}

h1,
h2,
h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin: 0;
  color: var(--ink-900);
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 5.3vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white-100);
  max-width: 12ch;
}

.hero-lead {
  margin-top: 1rem;
  max-width: 56ch;
  color: #d4e1fb;
  font-size: 1rem;
}

.hero-cta-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1;
  padding: 0.78rem 1.25rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: rgba(16, 47, 99, 0.82);
  border-color: #4e76b8;
  color: var(--white-100);
  box-shadow: 0 12px 28px rgba(12, 36, 76, 0.35);
}

.contact-cta {
  background: rgba(179, 18, 42, 0.72);
  border-color: rgba(227, 106, 124, 0.7);
  box-shadow: 0 12px 28px rgba(140, 20, 42, 0.32);
}

.button-secondary {
  background: rgba(79, 134, 232, 0.16);
  color: #d7e7ff;
  border-color: rgba(127, 168, 235, 0.58);
}

.button-secondary-light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white-100);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-nav {
  background: rgba(179, 18, 42, 0.7);
  border-color: rgba(227, 106, 124, 0.68);
  padding-inline: 1rem;
}

.hero-points {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.hero-points li {
  color: #d5e2fb;
  font-size: 0.96rem;
  padding-left: 1.65rem;
  position: relative;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(120, 159, 228, 0.22);
}

.hero-visual {
  position: relative;
  align-self: stretch;
}

.hero-image-shell {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  width: 100%;
  max-width: 420px;
  height: 100%;
  min-height: 100%;
  max-height: none;
  margin: 0 auto;
}

.hero-image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 35, 84, 0.28) 0%, rgba(10, 35, 84, 0.82) 100%),
    linear-gradient(140deg, rgba(35, 112, 240, 0.46) 0%, rgba(16, 70, 168, 0.36) 100%);
  pointer-events: none;
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

section {
  padding-block: 5rem;
}

.section-light {
  background: var(--white-200);
}

h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.65rem, 4.8vw, 2.7rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.section-copy {
  margin-top: 1.05rem;
  max-width: 56ch;
  font-size: 1.03rem;
  color: #d8e4ff;
}

.section-copy-dark {
  color: var(--ink-700);
}

.services-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: rgba(20, 83, 175, 0.06);
  border: 1px solid #2f6fda;
  color: #101c32;
  border-radius: var(--radius-md);
  padding: 0 1.3rem 1.3rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-card-title {
  min-height: 72px;
  margin: 0 -1.3rem 0.8rem;
  padding: 0.82rem 1.3rem;
  background: rgba(47, 111, 218, 0.24);
  color: #071a38;
  font-size: 1.04rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-card p {
  margin: 0.65rem 0 0;
  color: #1f2d45;
  font-size: 0.95rem;
}

.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.service-card li {
  color: #1f2d45;
  font-size: 0.93rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 390px;
  box-shadow: var(--shadow-soft);
  background-size: cover;
  background-position: center;
}

.feature-online {
  background-image: url("jacques2.jpeg?v=2");
  background-position: center 30%;
}

.feature-personal {
  background-image: url("jacques1.jpeg?v=2");
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 41, 0.44);
}

.feature-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.6rem;
}

.feature-tag {
  margin: 0;
  color: #d1e1ff;
  text-transform: uppercase;
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.feature-content h3 {
  margin-top: 0.6rem;
  color: var(--white-100);
  font-size: 1.5rem;
  line-height: 1.08;
}

.feature-content p {
  margin-top: 0.85rem;
  color: #e8eeff;
  max-width: 42ch;
}

.feature-content .button {
  margin-top: 1rem;
  width: fit-content;
  margin-left: auto;
}

.free-session {
  background: linear-gradient(110deg, #0a2148, #102f63 48%, #8f1128 100%);
  color: var(--white-100);
}

.free-session h2,
.free-session h3 {
  color: var(--white-100);
}

.free-session-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card-alt {
  background: rgba(255, 255, 255, 0.1);
}

.price {
  margin-top: 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 1.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-sub {
  margin-top: 0.18rem;
  color: #d7e4ff;
  font-weight: 600;
}

.pricing-card ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-card li {
  color: #eef4ff;
}

.process {
  background: var(--white-200);
}

.process h2,
.process h3 {
  color: var(--ink-900);
}

.process .eyebrow {
  color: var(--red-700);
}

.process .section-copy {
  color: var(--ink-700);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.1rem;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.process-steps li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  min-height: 164px;
  border-radius: 13px;
  background: var(--white-100);
  border: 1px solid #d7e2f5;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #102f63;
  border-right: 2px solid var(--red-500);
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.process-steps h3 {
  font-size: 1.07rem;
}

.process-steps li > div {
  padding: 1.05rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-steps p {
  margin: 0.35rem 0 0;
  color: var(--ink-700);
}

.newsletter {
  background: #0a1730;
  color: var(--white-100);
}

.newsletter h2 {
  color: var(--white-100);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.contact-methods {
  display: grid;
  gap: 1rem;
  width: fit-content;
  justify-items: start;
  justify-self: center;
}

.contact-method {
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  column-gap: 0.9rem;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  text-decoration: none;
  background: transparent;
  font-weight: 600;
  width: auto;
  justify-self: start;
  text-align: left;
}

.contact-method:hover,
.contact-method:focus-visible {
  opacity: 0.9;
}

.contact-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  justify-self: center;
}

.site-footer {
  background: #060f20;
  color: rgba(233, 238, 247, 0.72);
  padding: 1.3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: inherit;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  padding: 0;
  box-shadow: 0 16px 28px rgba(10, 70, 35, 0.28);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  display: block;
  margin: auto;
}

:focus-visible {
  outline: 3px solid #7db0ff;
  outline-offset: 2px;
}

@media (max-width: 1280px) {
  .hero-grid {
    gap: 2rem;
  }

  h1 {
    font-size: clamp(2rem, 5.2vw, 3.6rem);
  }
}

@media (max-width: 1060px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .free-session-grid {
    grid-template-columns: 1fr 1fr;
  }

  .free-session-grid > :first-child {
    grid-column: 1 / -1;
  }

  .process-grid {
    gap: 2rem;
  }

}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 1.6rem;
  }

  .hero-copy {
    padding-block: 1rem;
  }

  .feature-card {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #071b3a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 4vw;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .site-menu.open {
    display: flex;
  }

  .hero-grid,
  .process-grid,
  .newsletter-inner,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 1.1rem;
    gap: 1.4rem;
  }

  .hero {
    background: linear-gradient(110deg, rgba(10, 35, 84, 0.72), rgba(35, 112, 240, 0.92)) !important;
  }

  .hero::before {
    opacity: 0.04;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("jacquescanva.jpg") center 38% / cover no-repeat;
    opacity: 1;
  }

  .hero-image-shell {
    max-width: min(92vw, 520px);
    min-height: clamp(420px, 70vw, 620px);
    height: clamp(420px, 70vw, 620px);
  }

  .feature-card {
    min-height: 340px;
  }

  .feature-content .button {
    margin-left: 0;
  }

  .process-steps li {
    min-height: 148px;
  }

  .contact-methods {
    width: 100%;
    justify-self: start;
  }

  .hero-visual {
    display: none;
  }

}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0.78rem 0;
  }

  .brand {
    font-size: 1.02rem;
    letter-spacing: 0.05em;
  }

  .hero-grid {
    gap: 1.15rem;
  }

  .hero-copy {
    margin-bottom: 0.2rem;
  }

  .hero-image-shell {
    min-height: 460px;
    height: 460px;
  }

  .services-grid {
    gap: 1rem;
  }

  .free-session-grid {
    gap: 1rem;
  }

  .process-grid {
    gap: 1.3rem;
  }

  .newsletter-inner {
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 0.92rem;
    letter-spacing: 0.01em;
  }

  section {
    padding-block: 3.8rem;
  }

  .hero {
    padding-bottom: 0.8rem;
  }

  .services-grid,
  .free-session-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    position: relative;
    gap: 1rem;
    min-height: calc(100svh - 76px);
    align-content: end;
  }

  .hero-copy {
    align-self: end;
    padding-bottom: 1.3rem;
    padding-top: 0;
  }

  .hero-copy .eyebrow {
    display: block;
    margin: 0 0 0.35rem 0;
  }

  h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.2rem);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 0.95rem;
    margin-top: 0.8rem;
  }

  .hero-points {
    display: none;
  }

  .hero-image-shell {
    max-width: 100%;
    min-height: 420px;
    height: 420px;
  }

  .service-card-title {
    min-height: 64px;
    font-size: 0.98rem;
  }

  .feature-card {
    min-height: 300px;
  }

  .process-steps li {
    grid-template-columns: 72px 1fr;
    min-height: 132px;
  }

  .step-number {
    font-size: 1.7rem;
  }

  .process-steps li > div {
    padding: 0.9rem 0.8rem;
  }

  .contact-method {
    grid-template-columns: 26px auto;
    column-gap: 0.7rem;
    font-size: 0.96rem;
  }

  .contact-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .whatsapp-icon {
    width: 36px;
    height: 36px;
  }

  .hero-lead,
  .section-copy,
  .section-copy-dark,
  p,
  li {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .hero-cta-row .button-secondary {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }

  h1 {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .hero-image-shell {
    min-height: 360px;
    height: 360px;
  }

  .process-steps li {
    grid-template-columns: 64px 1fr;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(1160px, 94vw);
  }

  .hero-image-shell {
    min-height: 330px;
    height: 330px;
  }

  .service-card {
    padding: 0 1rem 1rem;
  }

  .service-card-title {
    margin: 0 -1rem 0.75rem;
    padding: 0.72rem 1rem;
    min-height: 60px;
    font-size: 0.93rem;
  }

  .pricing-card {
    padding: 1rem;
  }

  .process-steps li {
    min-height: 120px;
  }

  .contact-method {
    font-size: 0.92rem;
  }
}

@media (min-width: 391px) and (max-width: 405px) {
  .hero-image-shell {
    min-height: 350px;
    height: 350px;
  }

  .service-card-title {
    min-height: 62px;
    font-size: 0.95rem;
  }

  .contact-method {
    font-size: 0.94rem;
  }
}

@media (min-width: 406px) and (max-width: 430px) {
  .hero-image-shell {
    min-height: 372px;
    height: 372px;
  }

  .hero-cta-row {
    gap: 0.65rem;
  }

  .service-card-title {
    min-height: 64px;
  }

  .process-steps li {
    min-height: 126px;
  }

  .contact-method {
    font-size: 0.95rem;
  }
}
