:root {
  --navy: #041a35;
  --navy-2: #07274b;
  --blue: #0864b4;
  --blue-light: #e9f4ff;
  --green: #25b864;
  --green-dark: #128247;
  --gold: #ffc44d;
  --ink: #092b50;
  --body: #34536f;
  --muted: #6f8498;
  --line: #d9e5ef;
  --paper: #f4f8fb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(3, 29, 61, .13);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
main { overflow: hidden; }
[id] { scroll-margin-top: 92px; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 12px 16px; color: var(--white); border-radius: 8px; background: var(--blue); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 76px;
  padding: 12px max(22px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  color: var(--navy);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(9, 43, 80, .1);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand-name { font-size: 25px; font-weight: 900; letter-spacing: -.04em; }
.brand-by { margin-top: 4px; color: var(--green-dark); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(15px, 2vw, 30px); }
.desktop-nav a, .login-link { text-decoration: none; font-size: 14px; font-weight: 750; }
.desktop-nav a { color: #416078; }
.desktop-nav a:hover, .login-link:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.mobile-menu { display: none; }

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 14px; }
.button-primary { color: var(--white); background: var(--green); box-shadow: 0 10px 25px rgba(37, 184, 100, .25); }
.button-primary:hover { background: #1ba758; box-shadow: 0 14px 30px rgba(37, 184, 100, .32); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.27); background: rgba(255,255,255,.07); }
.button-ghost:hover { background: rgba(255,255,255,.13); }

.hero {
  position: relative;
  color: var(--white);
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 500px; height: 500px; top: -260px; left: 4%; background: radial-gradient(circle, rgba(8,100,180,.36), transparent 70%); }
.hero-glow-two { width: 460px; height: 460px; right: -150px; bottom: 0; background: radial-gradient(circle, rgba(37,184,100,.18), transparent 68%); }
.hero-inner {
  position: relative;
  width: min(1240px, calc(100% - 44px));
  margin: auto;
  padding: clamp(62px, 8vw, 100px) 0 56px;
}
.hero-copy { max-width: 920px; }
.eyebrow { margin: 0 0 17px; color: var(--green-dark); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 24px; height: 2px; margin: 0 8px 3px 0; background: currentColor; }
.eyebrow.light { color: #75e29e; }
h1, h2, h3, p { letter-spacing: -.01em; }
h1 { margin: 0; font-size: clamp(43px, 5.5vw, 76px); line-height: .99; letter-spacing: -.055em; }
h1 em { color: var(--gold); font-style: normal; }
h2 { margin: 0; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.04; letter-spacing: -.045em; }
h3 { margin: 0; font-size: 21px; line-height: 1.2; }
.hero-lead { max-width: 680px; margin: 27px 0 0; color: #d3dfeb; font-size: clamp(17px, 2vw, 21px); line-height: 1.58; }
.hero-lead strong { color: var(--white); }
.hero-price-line { margin: 18px 0 0; color: var(--gold); font-size: 17px; font-weight: 900; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts { margin-top: 38px; padding-top: 25px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.15); }
.hero-facts div { padding-right: 18px; display: grid; gap: 4px; }
.hero-facts div + div { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.15); }
.hero-facts strong { font-size: 22px; }
.hero-facts span { color: #92aac0; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.journey-overview { position: relative; width: min(1240px, calc(100% - 44px)); margin: 0 auto; padding-bottom: 70px; }
.journey-heading { margin-bottom: 26px; text-align: center; }
.journey-heading h2 { font-size: clamp(30px, 4vw, 48px); }
.journey-visual { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: #061e3c; box-shadow: 0 30px 85px rgba(0,0,0,.32); }
.journey-visual > a { display: block; }
.journey-visual img { width: 100%; height: auto; }
.journey-visual figcaption { min-height: 50px; padding: 12px 20px; display: flex; align-items: center; gap: 16px; color: #aebfd0; border-top: 1px solid rgba(255,255,255,.1); background: #03152b; font-size: 12px; }
.journey-visual figcaption strong { margin-left: auto; color: var(--white); }
.system-journey { margin: 0; padding: 0; display: none; grid-template-columns: repeat(5, 1fr); gap: 10px; list-style: none; }
.system-journey li { position: relative; min-height: 230px; padding: 24px 20px; color: var(--ink); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: #f5fafc; box-shadow: 0 22px 55px rgba(0,0,0,.2); }
.system-journey li + li::before { content: ""; position: absolute; z-index: 2; top: 40px; left: -11px; width: 12px; border-top: 2px dashed #7796ad; }
.journey-number { width: 38px; height: 38px; margin-bottom: 26px; display: grid; place-items: center; color: var(--white); border-radius: 50%; background: var(--blue); font-size: 13px; font-weight: 950; }
.system-journey li:nth-child(4) .journey-number { background: #ef8234; }
.system-journey li:nth-child(5) .journey-number { background: var(--green-dark); }
.system-journey small { color: var(--green-dark); font-size: 9px; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.system-journey h3 { margin-top: 7px; font-size: 18px; }
.system-journey p { margin: 11px 0 0; color: var(--body); font-size: 13px; line-height: 1.5; }
.hero-ribbon { position: relative; min-height: 58px; padding: 14px 24px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; color: #b9c9d8; background: #03152b; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-ribbon i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }

.quick-nav { width: min(1240px, calc(100% - 44px)); margin: 26px auto 0; padding: 14px 18px; display: flex; align-items: center; gap: 10px; overflow-x: auto; white-space: nowrap; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: 0 10px 35px rgba(3,29,61,.06); }
.quick-nav span { margin-right: 7px; color: var(--muted); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.quick-nav a { padding: 9px 13px; color: var(--ink); border-radius: 999px; background: var(--blue-light); text-decoration: none; font-size: 13px; font-weight: 800; }
.quick-nav a:hover { color: var(--white); background: var(--blue); }

.partner-section { width: min(1120px, calc(100% - 44px)); margin: 65px auto; text-align: center; }
.partner-section > h2 { margin: 0 0 25px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.partner-logos { display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; gap: clamp(18px, 3.5vw, 44px); }
.partner-logos img { width: 100%; max-height: 55px; object-fit: contain; filter: grayscale(1); opacity: .58; mix-blend-mode: multiply; }
.partner-logos img:last-child { transform: scale(1.55); }

.section { width: min(1180px, calc(100% - 44px)); margin: clamp(70px, 9vw, 120px) auto; }
.section-heading { max-width: 800px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { max-width: 650px; margin: 18px auto 0; color: var(--body); font-size: 18px; line-height: 1.6; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar-grid article { position: relative; min-height: 330px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 14px 45px rgba(3,29,61,.06); }
.pillar-grid article:nth-child(2) { color: var(--white); border-color: var(--blue); background: var(--blue); transform: translateY(-14px); }
.pillar-icon { display: block; margin-bottom: 38px; color: var(--green-dark); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.pillar-grid article:nth-child(2) .pillar-icon { color: #a6e9c0; }
.pillar-grid h3 { margin-bottom: 15px; font-size: 25px; }
.pillar-grid p { margin: 0 0 24px; color: var(--body); line-height: 1.6; }
.pillar-grid article:nth-child(2) p { color: #e7f3fc; }
.pillar-grid a { position: absolute; right: 32px; bottom: 28px; left: 32px; color: var(--blue); text-decoration: none; font-size: 13px; font-weight: 850; }
.pillar-grid article:nth-child(2) a { color: var(--gold); }

.terrain-section { color: var(--white); background: linear-gradient(125deg, #061e3c, #07335a); }
.terrain-inner { width: min(1120px, calc(100% - 44px)); margin: auto; padding: clamp(70px, 9vw, 110px) 0; }
.terrain-copy { max-width: 940px; }
.terrain-copy h2 { max-width: 760px; }
.terrain-copy > p:not(.eyebrow) { color: #c8d7e4; font-size: 18px; line-height: 1.65; }
.terrain-scenarios { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.terrain-scenarios-heading { grid-column: 1 / -1; margin-bottom: 5px; display: flex; align-items: baseline; justify-content: space-between; gap: 24px; }
.terrain-scenarios-heading strong { color: var(--white); font-size: 21px; }
.terrain-scenarios-heading span { max-width: 560px; color: #9fb6c8; line-height: 1.5; text-align: right; }
.terrain-scenarios article { position: relative; min-height: 315px; padding: 27px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.06); }
.scenario-number { position: absolute; top: 24px; right: 24px; color: rgba(255,255,255,.28); font-size: 25px; font-weight: 900; }
.terrain-scenarios small { color: #75e29e; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.terrain-scenarios h3 { margin-top: 30px; font-size: 23px; }
.terrain-scenarios p { color: #aebfd0; line-height: 1.55; }
.scenario-flow { margin-top: auto; padding-top: 17px; color: #dce8f1; border-top: 1px solid rgba(255,255,255,.11); font-size: 13px; font-weight: 750; line-height: 1.45; }
.scenario-flow b { padding-inline: 4px; color: var(--gold); }
.terrain-note { grid-column: 1 / -1; padding: 20px 22px; display: grid; gap: 5px; color: #bcd0df; border-left: 3px solid var(--gold); background: rgba(255,255,255,.05); }
.terrain-note strong { color: var(--white); font-size: 18px; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.problem-grid article { position: relative; min-height: 300px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 14px 45px rgba(3,29,61,.06); }
.problem-grid article:nth-child(2) { color: var(--white); background: var(--blue); border-color: var(--blue); transform: translateY(-14px); }
.problem-grid article:nth-child(2) h3, .problem-grid article:nth-child(2) p { color: inherit; }
.card-number { display: block; margin-bottom: 38px; color: var(--green-dark); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.problem-grid article:nth-child(2) .card-number { color: #9ce4ba; }
.problem-grid h3 { margin-bottom: 15px; font-size: 24px; }
.problem-grid p { margin: 0; color: var(--body); line-height: 1.6; }

.steps-section { padding: 70px max(30px, 5vw); max-width: 1240px; border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
.steps article { text-align: center; }
.step-number { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.step-icon { width: 74px; height: 74px; margin: 15px auto 20px; display: grid; place-items: center; color: var(--blue); border: 2px solid #cfe3f3; border-radius: 20px; background: var(--blue-light); font-size: 20px; font-weight: 950; }
.step-done { color: var(--white); border-color: var(--green); background: var(--green); }
.steps h3 { margin-bottom: 10px; }
.steps p { margin: 0 auto; max-width: 250px; color: var(--body); font-size: 15px; line-height: 1.55; }
.step-line { width: clamp(35px, 6vw, 85px); margin-top: 63px; border-top: 2px dashed #bfd0de; }
.connection-note { max-width: 900px; margin: 48px auto 0; padding: 22px 25px; display: grid; gap: 7px; color: var(--body); border-left: 4px solid var(--green); border-radius: 0 12px 12px 0; background: var(--blue-light); line-height: 1.55; }
.connection-note strong { color: var(--ink); font-size: 18px; }

.experience-section { color: var(--white); background: var(--navy); }
.experience-inner { width: min(1120px, calc(100% - 44px)); margin: auto; padding: clamp(70px, 9vw, 115px) 0; display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.experience-copy > p:not(.eyebrow) { margin: 22px 0; color: #c5d3e0; font-size: 18px; line-height: 1.6; }
.client-points { margin: 27px 0 30px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.client-points article { padding: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.05); }
.client-points strong, .client-points span { display: block; }
.client-points strong { margin-bottom: 6px; color: var(--white); }
.client-points span { color: #9fb4c6; font-size: 13px; line-height: 1.45; }
.experience-copy ul, .pricing-copy ul { margin: 25px 0 30px; padding: 0; list-style: none; }
.experience-copy li, .pricing-copy li { position: relative; margin: 13px 0; padding-left: 26px; line-height: 1.45; }
.experience-copy li::before, .pricing-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 950; }
.real-screen { margin: 0; text-align: center; }
.phone-frame { position: relative; width: min(350px, 100%); aspect-ratio: 9 / 18.5; margin: auto; padding: 22px 9px 9px; overflow: hidden; border: 8px solid #142c45; border-radius: 42px; background: #142c45; box-shadow: 0 35px 80px rgba(0,0,0,.45); }
.phone-speaker { position: absolute; z-index: 2; top: 8px; left: 50%; width: 58px; height: 5px; border-radius: 20px; background: #496073; transform: translateX(-50%); }
.phone-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 28px; }
.real-screen figcaption { margin-top: 20px; color: #7f9aaf; font-size: 12px; }

.result-section { color: var(--white); background: linear-gradient(120deg, #0871bf, #07569c); }
.result-inner { width: min(1120px, calc(100% - 44px)); margin: auto; padding: clamp(70px, 9vw, 110px) 0; display: grid; grid-template-columns: .85fr 1fr; align-items: center; gap: clamp(45px, 8vw, 100px); }
.result-chart { min-width: 0; margin: 0; }
.result-impact { display: flex; align-items: center; gap: 17px; margin-bottom: 28px; }
.result-impact strong { color: var(--gold); font-size: clamp(68px, 8vw, 106px); line-height: .78; letter-spacing: -.08em; }
.result-impact span { color: var(--white); font-size: clamp(17px, 2vw, 23px); font-weight: 900; line-height: 1.08; text-transform: uppercase; letter-spacing: -.02em; }
.rate-comparison { display: grid; gap: 24px; }
.rate-row > div:first-child { margin-bottom: 8px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.rate-row > div:first-child > span { color: #d4e7f6; font-size: 13px; font-weight: 800; }
.rate-row > div:first-child strong { color: var(--white); font-size: 21px; white-space: nowrap; }
.rate-row > div:first-child small { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.rate-track { height: 13px; overflow: hidden; border-radius: 20px; background: rgba(0,0,0,.18); }
.rate-track i { height: 100%; display: block; border-radius: inherit; }
.rate-before .rate-track i { width: 2.5%; background: #b9d8ef; }
.rate-after .rate-track i { width: 100%; background: linear-gradient(90deg, var(--green), var(--gold)); box-shadow: 0 0 20px rgba(255,196,77,.48); }
.rate-row p { margin: 8px 0 0; color: #d4e7f6; font-size: 11px; }
.rate-after > div:first-child strong, .rate-after p { color: var(--gold); }
.result-chart figcaption { margin-top: 23px; padding-top: 13px; color: #b8d3e8; border-top: 1px solid rgba(255,255,255,.2); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.result-copy > p:not(.eyebrow) { color: #e2eff9; font-size: 18px; line-height: 1.6; }
.result-note { padding: 17px 19px; border-left: 3px solid var(--gold); background: rgba(0,0,0,.12); }
.result-equivalent { color: var(--gold) !important; font-weight: 850; }

.structure-section { padding: clamp(42px, 7vw, 80px); display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(45px, 7vw, 85px); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.structure-intro { position: sticky; top: 115px; }
.structure-intro h2 { font-size: clamp(34px, 3.8vw, 52px); }
.structure-intro > p:not(.eyebrow) { margin: 24px 0; color: var(--body); font-size: 18px; line-height: 1.65; }
.text-link { color: var(--blue); font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.structure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.structure-grid article { min-height: 205px; padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); }
.structure-grid article > span { color: var(--green-dark); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.structure-grid h3 { margin-top: 24px; font-size: 20px; }
.structure-grid p { margin: 10px 0 0; color: var(--body); font-size: 14px; line-height: 1.55; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-grid article { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.feature-label { margin-bottom: 28px; color: var(--green-dark); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.feature-grid h3 { margin-bottom: 12px; font-size: 23px; }
.feature-grid p { margin: 0; color: var(--body); line-height: 1.6; }

.communication-section { color: var(--white); background: #061e3c; }
.communication-inner { width: min(1120px, calc(100% - 44px)); margin: auto; padding: clamp(70px, 9vw, 110px) 0; display: grid; grid-template-columns: .9fr 1fr; gap: clamp(50px, 8vw, 100px); }
.communication-inner > div:first-child > p:last-child { color: #c3d1df; font-size: 18px; line-height: 1.65; }
.communication-list { display: grid; gap: 12px; }
.communication-list article { padding: 22px; display: grid; grid-template-columns: 38px 1fr; gap: 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.05); }
.communication-list article > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--navy); border-radius: 50%; background: var(--gold); font-weight: 950; }
.communication-list strong { font-size: 17px; }
.communication-list p { margin: 6px 0 0; color: #aebfd0; font-size: 14px; line-height: 1.55; }
.communication-list b { color: var(--white); }
.communication-signature { margin-top: 30px; padding: 20px; color: #b8cad9; border-left: 3px solid var(--gold); background: rgba(255,255,255,.05); font-size: 20px; line-height: 1.4; }
.communication-signature strong { color: var(--gold); }

.proof-section { width: min(1180px, calc(100% - 44px)); margin: clamp(70px, 9vw, 120px) auto; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.proof-photo { position: relative; min-height: 680px; background: linear-gradient(to top, rgba(4,26,53,.58), transparent 55%), url('/pro/Assets/installation-tablettes.jpg') center 28%/cover; }
.proof-caption { position: absolute; left: 32px; right: 32px; bottom: 30px; padding: 18px; color: var(--white); border-left: 3px solid var(--green); background: rgba(4,26,53,.8); }
.proof-caption strong, .proof-caption span { display: block; }
.proof-caption span { margin-top: 4px; color: #c8d5e1; }
.proof-copy { padding: clamp(38px, 6vw, 72px); }
.proof-copy blockquote { margin: 32px 0 0; padding: 0; }
.proof-copy blockquote > p { margin: 0; color: var(--ink); font-size: 21px; font-weight: 700; line-height: 1.55; }
.proof-copy blockquote footer { margin-top: 19px; display: flex; align-items: center; gap: 12px; }
.proof-copy blockquote footer > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); border-radius: 50%; background: var(--blue); font-size: 12px; font-weight: 900; }
.proof-copy blockquote strong, .proof-copy blockquote small { display: block; }
.proof-copy blockquote small { margin-top: 3px; color: var(--muted); }
.secondary-quote { padding-top: 30px !important; border-top: 1px solid var(--line); }

.pricing-section { padding: clamp(40px, 7vw, 80px); display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: clamp(45px, 8vw, 100px); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.pricing-copy > p:not(.eyebrow) { color: var(--body); font-size: 18px; line-height: 1.6; }
.pricing-copy li { color: var(--body); }
.pricing-copy h3 { margin-top: 30px; }
.included-grid { columns: 2; column-gap: 25px; }
.included-grid li { break-inside: avoid; }
.price-card { padding: 38px; color: var(--white); border-radius: 22px; background: var(--navy); box-shadow: 0 25px 60px rgba(3,29,61,.25); }
.price-label { color: #7fe0a5; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.price { margin: 18px 0 8px; display: flex; align-items: end; gap: 9px; }
.price strong { color: var(--gold); font-size: clamp(64px, 8vw, 92px); line-height: .9; letter-spacing: -.07em; }
.price span { padding-bottom: 9px; color: #c7d5e2; font-weight: 800; }
.price-card > p { color: #b7c8d7; line-height: 1.5; }
.price-divider { margin: 25px 0; border-top: 1px solid rgba(255,255,255,.15); }
.price-card dl { margin: 0 0 28px; }
.price-card dl div { padding: 10px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.09); }
.price-card dt { color: #8fa6ba; }
.price-card dd { margin: 0; text-align: right; font-weight: 800; }
.price-detail { margin-bottom: 25px; color: #91a8bb !important; font-size: 13px; }
.price-card .button { width: 100%; }

.faq-section { max-width: 960px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.faq-list summary { min-height: 68px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 25px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--body); line-height: 1.6; }

.contact-section { position: relative; color: var(--white); background: var(--navy); }
.contact-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 110%, rgba(8,100,180,.45), transparent 45%); }
.contact-inner { position: relative; width: min(900px, calc(100% - 44px)); margin: auto; padding: clamp(75px, 10vw, 125px) 0; text-align: center; }
.contact-inner > p:not(.eyebrow) { margin: 22px auto 0; max-width: 650px; color: #c7d4e0; font-size: 18px; line-height: 1.6; }
.contact-actions { margin-top: 30px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.site-footer { padding: 35px max(22px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px; color: #8da2b6; background: #03152b; }
.site-footer .brand-name { color: var(--white); }
.site-footer p { margin: 0; font-size: 13px; text-align: center; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer a { color: #c0cfdb; text-decoration: none; font-size: 13px; font-weight: 750; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr; }
  .header-actions { justify-self: end; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary { padding: 10px 0; cursor: pointer; list-style: none; font-size: 14px; font-weight: 850; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav { position: absolute; top: 45px; right: 0; width: min(300px, calc(100vw - 30px)); padding: 10px; display: grid; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
  .mobile-menu nav a { padding: 12px; text-decoration: none; font-size: 14px; font-weight: 750; }
  .system-journey { grid-template-columns: repeat(3, 1fr); }
  .system-journey li + li::before { display: none; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
  .experience-inner, .result-inner, .communication-inner, .pricing-section { grid-template-columns: 1fr 1fr; gap: 45px; }
  .terrain-inner, .structure-section { grid-template-columns: 1fr; }
  .structure-intro { position: static; }
}

@media (max-width: 760px) {
  [id] { scroll-margin-top: 74px; }
  .site-header { min-height: 66px; padding-block: 9px; }
  .header-actions { gap: 13px; }
  .login-link { display: none; }
  .header-actions > .button { display: none; }
  .hero-inner { width: min(100% - 30px, 620px); padding: 42px 0 48px; grid-template-columns: 1fr; gap: 36px; }
  h1 { font-size: clamp(38px, 11vw, 50px); line-height: 1.02; }
  h2 { font-size: clamp(30px, 8vw, 39px); line-height: 1.08; }
  h3 { font-size: 19px; }
  .eyebrow { margin-bottom: 13px; font-size: 10px; line-height: 1.45; }
  .hero-lead { margin-top: 20px; font-size: 16px; line-height: 1.52; }
  .hero-price-line { margin-top: 13px; font-size: 15px; }
  .hero-actions { margin-top: 23px; }
  .hero-actions .button { width: 100%; }
  .hero-facts { margin-top: 26px; padding-top: 20px; grid-template-columns: 1fr 1fr; gap: 15px 0; }
  .hero-facts strong { font-size: 18px; }
  .hero-facts span { font-size: 10px; }
  .hero-facts div:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero-facts div:nth-child(5) { grid-column: 1 / -1; padding-left: 0; border-left: 0; }
  .journey-overview { width: calc(100% - 30px); padding-bottom: 48px; }
  .journey-heading { margin-bottom: 20px; }
  .journey-visual { display: none; }
  .system-journey { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .system-journey li { min-height: 0; padding: 18px; display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; }
  .journey-number { width: 42px; height: 42px; margin: 0; grid-row: 1 / 4; }
  .system-journey h3 { margin-top: 4px; font-size: 18px; }
  .system-journey p { margin-top: 7px; }
  .hero-ribbon { min-height: 48px; padding: 12px 16px; justify-content: center; gap: 10px; font-size: 9px; }
  .hero-ribbon span:nth-of-type(n+4), .hero-ribbon i:nth-of-type(n+3) { display: none; }
  .quick-nav { display: none; }
  .partner-section { width: calc(100% - 30px); margin: 38px auto; }
  .partner-section > h2 { margin-bottom: 18px; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .partner-logos img { max-height: 42px; }
  .section { width: calc(100% - 30px); margin-block: 54px; }
  .section-heading { margin-bottom: 28px; }
  .pillar-grid, .feature-grid { grid-template-columns: 1fr; }
  .pillar-grid article:nth-child(2) { transform: none; }
  .pillar-grid { gap: 10px; }
  .pillar-grid article { min-height: 265px; padding: 24px; }
  .pillar-grid .pillar-icon { margin-bottom: 22px; }
  .pillar-grid a { right: 24px; bottom: 22px; left: 24px; }
  .steps-section { padding: 36px 20px; border-radius: 20px; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .steps article { display: grid; grid-template-columns: 54px 1fr; column-gap: 15px; text-align: left; }
  .step-number { display: none; }
  .step-icon { width: 54px; height: 54px; margin: 0; grid-row: 1 / 3; border-radius: 15px; font-size: 16px; }
  .steps h3 { align-self: end; margin: 0 0 4px; }
  .steps p { margin: 0; font-size: 13px; line-height: 1.45; }
  .step-line { display: none; }
  .connection-note { margin-top: 25px; padding: 16px; }
  .experience-inner, .result-inner, .communication-inner, .pricing-section, .proof-section, .terrain-inner, .structure-section { grid-template-columns: 1fr; }
  .experience-inner, .result-inner, .communication-inner, .terrain-inner { width: calc(100% - 30px); }
  .experience-inner, .result-inner, .communication-inner, .terrain-inner { padding-block: 58px; gap: 34px; }
  .terrain-scenarios, .structure-grid { grid-template-columns: 1fr; }
  .terrain-scenarios-heading { display: grid; gap: 8px; }
  .terrain-scenarios-heading span { text-align: left; }
  .terrain-scenarios article { min-height: 0; }
  .structure-section { padding: 30px 20px; }
  .structure-grid article { min-height: 0; }
  .real-screen { grid-row: 2; }
  .result-impact { margin-bottom: 24px; }
  .result-impact strong { font-size: 76px; }
  .result-impact span { font-size: 16px; }
  .rate-row > div:first-child strong { font-size: 17px; }
  .rate-row > div:first-child > span { font-size: 11px; }
  .rate-track { height: 11px; }
  .result-copy > p:not(.eyebrow), .experience-copy > p:not(.eyebrow), .communication-inner > div:first-child > p:last-child { font-size: 15px; line-height: 1.55; }
  .client-points { grid-template-columns: 1fr 1fr; gap: 8px; }
  .client-points article { padding: 13px; }
  .client-points strong { font-size: 13px; }
  .client-points span { font-size: 11px; }
  .communication-list { gap: 8px; }
  .communication-list article { padding: 16px; grid-template-columns: 32px 1fr; gap: 13px; }
  .communication-list article > span { width: 32px; height: 32px; font-size: 13px; }
  .proof-section { width: calc(100% - 30px); }
  .proof-photo { min-height: 360px; }
  .proof-caption { right: 18px; bottom: 18px; left: 18px; padding: 14px; }
  .proof-copy { padding: 30px 22px; }
  .proof-copy blockquote { margin-top: 24px; }
  .proof-copy blockquote > p { font-size: 17px; }
  .secondary-quote { display: none; }
  .pricing-section { padding: 26px 18px; }
  .price-card { padding: 28px 22px; }
  .included-grid { columns: 1; }
  .faq-list { gap: 7px; }
  .faq-list summary { min-height: 58px; padding: 15px 17px; font-size: 14px; }
  .faq-list details p { padding: 0 17px 17px; font-size: 13px; }
  .contact-inner { padding-block: 64px; }
  .contact-inner > p:not(.eyebrow) { font-size: 15px; }
  .contact-actions .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer p { text-align: center; }
  .site-footer nav { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
