/* =========================================================
   SERVICE COMPRIS V2.3
   Navy / warm white / lime
========================================================= */

:root {
  --navy: #0b1220;
  --navy-2: #101b2d;
  --navy-3: #152238;
  --navy-4: #1c2b43;

  --white: #ffffff;
  --offwhite: #f7fafc;
  --offwhite-2: #edf2f7;

  --text: #f8fafc;
  --muted: #a9b7c9;

  --dark-text: #0b1220;
  --dark-muted: #5e6f83;

  --lime: #c7f464;
  --lime-hover: #b9ec51;
  --lime-dark: #628d1c;

  --line-dark: rgba(255,255,255,.10);
  --line-light: #dce4ed;

  --max: 1180px;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}


/* RESET */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--navy);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}


/* TYPOGRAPHY */

.eyebrow {
  margin: 0;
  color: var(--lime);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-light .eyebrow {
  color: var(--lime-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(2.15rem, 4.4vw, 3.45rem);
  line-height: 1.03;
}

p {
  color: var(--muted);
}

.section-light {
  color: var(--dark-text);
  background: var(--offwhite);
}

.section-light p {
  color: var(--dark-muted);
}

.section-head {
  max-width: 740px;
  margin-bottom: 44px;
}

.section-head h2 {
  margin: 11px 0 16px;
}

.section-head > p:last-child {
  margin-bottom: 0;
  font-size: 1.06rem;
}


/* BUTTONS */

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform .16s ease,
    background .16s ease,
    border-color .16s ease,
    box-shadow .16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #071008;
  background: var(--lime);
}

.button-primary:hover {
  background: var(--lime-hover);
  box-shadow: 0 12px 35px rgba(199,244,100,.17);
}

.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,.025);
  border-color: var(--line-dark);
}

.button-secondary:hover {
  border-color: rgba(199,244,100,.40);
}

.button-large {
  min-height: 54px;
  padding-inline: 26px;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(11,18,32,.90);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: .96rem;
  font-weight: 850;
  letter-spacing: -.035em;
}

.wordmark strong {
  color: var(--lime);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: #cbd5e1;
  font-size: .88rem;
  font-weight: 650;
}

.nav-links a {
  transition: color .15s ease;
}

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

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

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: transparent;
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: white;
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 82px;
  background:
    radial-gradient(circle at 75% 18%, rgba(199,244,100,.10), transparent 28rem),
    radial-gradient(circle at 10% 95%, rgba(47,77,123,.22), transparent 35rem),
    var(--navy);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
  gap: 60px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(255,255,255,.035);
  font-size: .75rem;
  font-weight: 650;
}

.status-pill > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(199,244,100,.6);
}

.hero h1 {
  max-width: 830px;
  margin: 13px 0 22px;
  font-size: clamp(3.05rem, 7vw, 5.55rem);
  font-weight: 950;
  line-height: .97;
  letter-spacing: -.065em;
}

.hero h1 > span {
  color: var(--lime);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: #c7d1df;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 19px;
  color: #94a3b8;
  font-size: .79rem;
}

.hero-reassurance span::first-letter {
  color: var(--lime);
}

.hero-product {
  padding: 29px;
  border: 1px solid rgba(199,244,100,.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(199,244,100,.11), transparent 19rem),
    linear-gradient(145deg, var(--navy-3), var(--navy-2));
  box-shadow: 0 35px 90px rgba(0,0,0,.30);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-label,
.product-badge {
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-label {
  color: var(--lime);
}

.product-badge {
  padding: 5px 8px;
  color: #b9c7d9;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
}

.product-price {
  display: flex;
  gap: 7px;
  align-items: flex-end;
  margin: 18px 0 11px;
  font-size: clamp(4rem, 7vw, 5.25rem);
  font-weight: 950;
  line-height: .85;
  letter-spacing: -.07em;
}

.product-price > span {
  margin-bottom: 7px;
  color: #a9b7c9;
  font-size: .88rem;
  font-weight: 750;
  letter-spacing: 0;
}

.product-intro {
  margin-bottom: 0;
  font-size: .91rem;
}

.product-divider {
  height: 1px;
  margin: 22px 0;
  background: var(--line-dark);
}

.product-features {
  display: grid;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
  color: #d7e0ec;
  font-size: .86rem;
}

.product-features li {
  display: flex;
  gap: 9px;
}

.product-features li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
}

.product-button {
  width: 100%;
}


/* TRUST */

.trust-strip {
  padding: 29px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  padding: 2px 27px;
  border-right: 1px solid var(--line-dark);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 2px;
  font-size: .89rem;
}

.trust-grid span {
  color: #8fa0b4;
  font-size: .79rem;
}


/* OFFERS */

.offers {
  padding: 88px 0;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, .7fr);
  gap: 18px;
  align-items: stretch;
}

.offer-main {
  padding: 35px;
  border: 1px solid rgba(99,141,28,.32);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(199,244,100,.13), transparent 48%),
    var(--white);
  box-shadow: 0 18px 50px rgba(11,18,32,.05);
}

.offer-main-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.offer-kicker {
  color: var(--lime-dark);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.offer-main h3 {
  margin: 8px 0 0;
  color: var(--dark-text);
  font-size: 2rem;
}

.offer-main-price {
  flex: 0 0 auto;
  color: var(--dark-text);
  font-size: 2.45rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.055em;
}

.offer-main-price small {
  color: var(--dark-muted);
  font-size: .72rem;
  letter-spacing: 0;
}

.offer-main-tagline {
  margin: 25px 0 7px;
  color: var(--dark-text) !important;
  font-size: 1.08rem;
}

.offer-main-copy {
  max-width: 680px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
}

.included-title {
  display: block;
  margin-bottom: 11px;
  color: var(--dark-text);
  font-size: .83rem;
  font-weight: 850;
}

.check-list,
.neutral-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #334155;
  font-size: .87rem;
}

.check-list li,
.neutral-list li {
  display: flex;
  gap: 8px;
}

.check-list li::before {
  content: "✓";
  color: #63911d;
  font-weight: 900;
}

.neutral-list li::before {
  content: "→";
  color: #8997a8;
}

.scope-note {
  margin-top: 26px;
  padding: 17px 19px;
  color: #435266;
  border-radius: var(--radius-sm);
  background: #f0f4f8;
  font-size: .84rem;
}

.scope-note strong {
  color: var(--dark-text);
}

.offer-actions {
  margin-top: 23px;
}

.offer-secondary-stack {
  display: grid;
  gap: 18px;
}

.offer-secondary {
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: white;
}

.offer-secondary h3 {
  margin: 9px 0 9px;
  font-size: 1.5rem;
}

.secondary-price {
  margin-bottom: 14px;
  color: var(--dark-muted);
  font-size: .84rem;
}

.secondary-price strong {
  color: var(--dark-text);
  font-size: 1.15rem;
}

.offer-secondary p {
  margin-bottom: 18px;
  font-size: .89rem;
}

.offer-secondary ul {
  display: grid;
  gap: 7px;
  margin: 0 0 20px;
  padding-left: 18px;
  color: #354559;
  font-size: .85rem;
}

.text-link {
  margin-top: auto;
  color: #365b06;
  font-size: .86rem;
  font-weight: 800;
}

.dark-card {
  color: var(--text);
  border-color: var(--line-dark);
  background: var(--navy-2);
}

.dark-card .offer-kicker {
  color: var(--lime);
}

.dark-card h3,
.dark-card .secondary-price strong {
  color: var(--white);
}

.dark-card p,
.dark-card .secondary-price {
  color: var(--muted);
}

.light-link {
  color: var(--lime);
}


/* CASE STUDY */

.case-study {
  padding: 88px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(199,244,100,.07), transparent 25rem),
    var(--navy);
}

.case-study-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 39px;
}

.case-study-header > div {
  max-width: 750px;
}

.case-study-header h2 {
  margin: 10px 0 0;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: #0d1117;
  box-shadow: 0 35px 90px rgba(0,0,0,.30);
}

.browser-toolbar {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 43px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: #131a24;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #536174;
}

.browser-address {
  flex: 1;
  max-width: 330px;
  padding: 5px 12px;
  color: #8190a4;
  border-radius: 6px;
  background: rgba(255,255,255,.045);
  font-size: .65rem;
}

.browser-image {
  height: 355px;
  overflow: hidden;
}

.browser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-name {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 850;
  letter-spacing: -.03em;
}

.case-name span {
  display: block;
  margin-top: 2px;
  color: #8fa0b4;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0;
}

.case-content > p {
  max-width: 560px;
  font-size: .92rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 27px 0;
}

.case-metric {
  padding: 17px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.025);
}

.case-metric strong,
.case-metric span {
  display: block;
}

.case-metric strong {
  color: white;
  font-size: 1.55rem;
  letter-spacing: -.04em;
}

.case-metric span {
  color: #8fa0b4;
  font-size: .66rem;
}

.case-metric.accent strong {
  color: var(--lime);
}

.case-explanation {
  color: #b6c1cf;
}

.case-footnote {
  margin-bottom: 0;
  color: #6f7e91 !important;
  font-size: .69rem !important;
}


/* PORTFOLIO */

.portfolio {
  padding: 88px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: white;
  transition:
    transform .16s ease,
    box-shadow .16s ease;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(11,18,32,.08);
}

.portfolio-preview {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.portfolio-preview strong,
.portfolio-preview small,
.portfolio-domain {
  display: block;
}

.portfolio-preview strong {
  margin-top: 34px;
  font-size: 1.7rem;
  letter-spacing: -.04em;
}

.portfolio-preview small {
  margin-top: 2px;
  opacity: .72;
}

.portfolio-domain {
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .7;
  font-size: .62rem;
}

.portfolio-philip .portfolio-preview {
  color: white;
  background:
    linear-gradient(145deg, rgba(3,28,20,.25), rgba(8,61,40,.88)),
    url("https://restaurant-philip.fr/img/terrasse-animee-platanes-sorgue-restaurant-philip.webp") center / cover;
}

.portfolio-aiforge .portfolio-preview {
  color: #f7e4bd;
  background:
    radial-gradient(circle at 80% 20%, rgba(210,172,95,.18), transparent 18rem),
    #0c0c0c;
}

.portfolio-twb .portfolio-preview {
  color: white;
  background:
    radial-gradient(circle at 82% 15%, rgba(53,122,246,.20), transparent 20rem),
    linear-gradient(145deg, #101722, #1a2737);
}

.portfolio-gwladys .portfolio-preview {
  color: #263224;
  background:
    radial-gradient(circle at 80% 20%, rgba(115,141,98,.18), transparent 18rem),
    #e7eadf;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 14px 18px;
  border-top: 1px solid var(--line-light);
}

.portfolio-meta span {
  padding: 5px 8px;
  color: #596a7e;
  border-radius: 999px;
  background: #eff3f7;
  font-size: .64rem;
  font-weight: 700;
}


/* PROCESS */

.process {
  padding: 88px 0;
  border-top: 1px solid var(--line-light);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.process-step {
  position: relative;
  padding: 24px 22px 0;
  border-top: 1px solid #cdd6e0;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step::before {
  position: absolute;
  top: -4px;
  left: 22px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #71829a;
}

.process-step:first-child::before {
  left: 0;
  background: var(--lime-dark);
}

.step-index {
  color: var(--lime-dark);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.process-step h3 {
  margin: 12px 0 8px;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  font-size: .79rem;
}


/* TOOLS */

.tools-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 85% 40%, rgba(199,244,100,.07), transparent 26rem),
    var(--navy-2);
}

.tools-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
  align-items: center;
}

.tools-copy h2 {
  margin: 11px 0 18px;
}

.tools-copy p {
  max-width: 530px;
  font-size: .94rem;
}

.tools-copy .button {
  margin-top: 13px;
}

.app-mockup {
  min-height: 365px;
  display: grid;
  grid-template-columns: 70px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 35px 90px rgba(0,0,0,.25);
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 19px;
  background: #0b1220;
}

.mock-logo {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  color: #0b1220;
  border-radius: 8px;
  background: var(--lime);
  font-size: .66rem;
  font-weight: 900;
}

.mock-sidebar > span {
  width: 23px;
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.13);
}

.mock-main {
  padding: 24px;
  color: #0b1220;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mock-header small,
.mock-header strong {
  display: block;
}

.mock-header small {
  color: #718096;
  font-size: .65rem;
}

.mock-header strong {
  font-size: 1rem;
}

.mock-avatar {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #dce4ec;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 19px;
}

.mock-stats > div {
  padding: 13px;
  border: 1px solid #e0e6ed;
  border-radius: 9px;
  background: white;
}

.mock-stats small,
.mock-stats strong {
  display: block;
}

.mock-stats small {
  color: #78879a;
  font-size: .57rem;
}

.mock-stats strong {
  font-size: 1.35rem;
}

.mock-table {
  overflow: hidden;
  border: 1px solid #e0e6ed;
  border-radius: 9px;
  background: white;
}

.mock-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr;
  gap: 12px;
  padding: 10px 13px;
  color: #4b5a6c;
  border-bottom: 1px solid #edf1f5;
  font-size: .59rem;
}

.mock-row:last-child {
  border-bottom: 0;
}

.mock-row.heading {
  color: #8795a7;
  background: #f7f9fb;
  font-weight: 750;
}

.status-green {
  color: #5c8618;
}

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

.tools-examples > div {
  padding: 13px 15px;
  color: #bdc8d6;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: rgba(255,255,255,.025);
  font-size: .77rem;
  font-weight: 650;
}


/* MICRO SERVICES */

.small-services {
  padding: 88px 0;
}

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

.micro-service {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: white;
}

.micro-icon {
  width: fit-content;
  min-width: 35px;
  height: 35px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 29px;
  padding-inline: 7px;
  color: #3f6309;
  border-radius: 8px;
  background: #effbd9;
  font-size: .67rem;
  font-weight: 900;
}

.micro-service h3 {
  margin: 0 0 9px;
  font-size: 1.04rem;
}

.micro-service p {
  margin-bottom: 22px;
  font-size: .8rem;
}

.micro-price {
  margin-top: auto;
  color: var(--dark-text);
  font-size: .75rem;
  font-weight: 850;
}


/* ESTIMATOR */

.estimator-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at 12% 60%, rgba(199,244,100,.08), transparent 24rem),
    var(--navy);
}

.estimator-box {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 65px;
  align-items: center;
  padding: 53px;
  border: 1px solid rgba(199,244,100,.19);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.02);
}

.estimator-copy h2 {
  max-width: 610px;
  margin: 11px 0 18px;
}

.estimator-copy > p {
  max-width: 560px;
}

.estimate-paths {
  display: grid;
  gap: 13px;
  margin-top: 27px;
}

.estimate-paths > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c5d0dd;
  font-size: .82rem;
}

.estimate-paths span {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  flex: 0 0 auto;
  color: #719628;
  border-radius: 50%;
  background: rgba(199,244,100,.11);
  font-size: .59rem;
  font-weight: 900;
}

.estimator-preview {
  padding: 25px;
  color: var(--dark-text);
  border-radius: 16px;
  background: white;
  box-shadow: 0 25px 70px rgba(0,0,0,.22);
}

.estimate-label {
  display: block;
  margin-bottom: 14px;
  color: #48576a;
  font-size: .75rem;
  font-weight: 800;
}

.estimate-choice {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
  padding: 12px;
  border: 1px solid #e1e7ed;
  border-radius: 9px;
}

.estimate-choice.active {
  border-color: #9ec45e;
  background: #f7fce9;
}

.estimate-choice > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f0f3f6;
  font-size: .9rem;
}

.estimate-choice strong,
.estimate-choice small {
  display: block;
}

.estimate-choice strong {
  font-size: .76rem;
}

.estimate-choice small {
  margin-top: 1px;
  color: #8491a1;
  font-size: .62rem;
}

.estimator-disabled {
  width: 100%;
  margin-top: 10px;
  opacity: .65;
  cursor: default;
}


/* RESOURCES */

.resources {
  padding: 88px 0;
}

.resources-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.resources-heading h2 {
  margin: 10px 0 0;
}

.resources-heading > p {
  margin-bottom: 3px;
  font-size: .92rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.resource-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: white;
}

.resource-category {
  color: var(--lime-dark);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.resource-card h3 {
  margin: 30px 0 11px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.resource-card p {
  font-size: .8rem;
}

.resource-link {
  margin-top: auto;
  color: #526174;
  font-size: .73rem;
  font-weight: 800;
}


/* TEAM */

.team-section {
  padding: 88px 0;
  background: var(--navy-2);
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
}

.team-copy h2 {
  margin: 11px 0 18px;
}

.team-copy p {
  max-width: 550px;
}

.team-cards {
  display: grid;
  gap: 11px;
}

.person-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 19px;
  align-items: center;
  padding: 19px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.person-card img {
  width: 76px;
  height: 76px;
  border-radius: 11px;
  object-fit: cover;
}

.person-card h3 {
  margin: 0 0 3px;
  font-size: 1rem;
}

.person-card p {
  margin: 0;
  font-size: .74rem;
}


/* FAQ */

.faq {
  padding: 88px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
}

.faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-heading h2 {
  margin: 11px 0 16px;
}

.faq-list details {
  border-top: 1px solid var(--line-light);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  color: var(--dark-text);
  font-size: .91rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: #73849a;
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform .16s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 0 21px;
  padding-right: 40px;
  font-size: .84rem;
}


/* FINAL CTA */

.final-cta {
  padding: 84px 0;
  background: var(--navy);
}

.final-cta-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding: 52px;
  border: 1px solid rgba(199,244,100,.20);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 87% 20%, rgba(199,244,100,.13), transparent 28rem),
    var(--navy-2);
}

.final-cta-box > div:first-child {
  max-width: 740px;
}

.final-cta-box h2 {
  margin: 11px 0 17px;
}

.final-cta-box p:last-child {
  margin-bottom: 0;
}

.final-actions {
  flex: 0 0 auto;
  display: grid;
  gap: 9px;
}


/* FOOTER */

footer {
  padding: 54px 0 25px;
  border-top: 1px solid var(--line-dark);
  background: #080e19;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.footer-wordmark {
  font-size: 1.1rem;
}

.footer-brand p {
  max-width: 300px;
  margin: 15px 0 0;
  font-size: .76rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-columns > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-columns strong {
  margin-bottom: 5px;
  color: white;
  font-size: .73rem;
}

.footer-columns a {
  color: #8392a5;
  font-size: .71rem;
}

.footer-columns a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 19px;
  color: #637387;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .66rem;
}


/* SUBTLE REVEALS */

.js .reveal-item {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .55s ease,
    transform .55s ease;
}

.js .reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .hero-grid,
  .case-grid,
  .tools-layout,
  .estimator-box,
  .team-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-product {
    max-width: 560px;
  }

  .offer-layout {
    grid-template-columns: 1fr;
  }

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

  .process-line {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 0;
  }

  .tools-layout {
    gap: 50px;
  }

  .app-mockup {
    max-width: 720px;
  }

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

  .faq-layout {
    gap: 40px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta-box {
    display: block;
  }

  .final-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
  }
}


@media (max-width: 820px) {

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 18px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(11,18,32,.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .mobile-menu-button {
    display: block;
  }

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

  .trust-grid > div {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .offer-main-top {
    display: block;
  }

  .offer-main-price {
    margin-top: 18px;
  }

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

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

  .resources-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


@media (max-width: 620px) {

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav {
    min-height: 64px;
  }

  .nav-links {
    top: 64px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 58px 0 60px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.1rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-reassurance {
    display: grid;
    gap: 6px;
  }

  .hero-product {
    padding: 24px;
  }

  .product-price {
    font-size: 4rem;
  }

  .offers,
  .case-study,
  .portfolio,
  .process,
  .tools-section,
  .small-services,
  .estimator-section,
  .resources,
  .team-section,
  .faq,
  .final-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .offer-main {
    padding: 25px;
  }

  .offer-secondary-stack {
    grid-template-columns: 1fr;
  }

  .case-study-header {
    display: block;
  }

  .case-study-header .button {
    margin-top: 18px;
  }

  .browser-image {
    height: 250px;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    padding: 18px 0 24px;
  }

  .process-step::before {
    left: 0;
  }

  .app-mockup {
    min-height: 300px;
    grid-template-columns: 50px 1fr;
  }

  .mock-main {
    padding: 15px;
  }

  .mock-stats {
    grid-template-columns: 1fr;
  }

  .mock-table {
    display: none;
  }

  .tools-examples,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .estimator-box {
    padding: 26px;
  }

  .team-layout {
    gap: 40px;
  }

  .person-card {
    grid-template-columns: 64px 1fr;
  }

  .person-card img {
    width: 64px;
    height: 64px;
  }

  .faq-list summary {
    font-size: .85rem;
  }

  .final-cta-box {
    padding: 27px;
  }

  .final-actions {
    display: grid;
  }

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

  .footer-bottom {
    display: grid;
  }
}


/* =========================================================
   SERVICE COMPRIS V2.3.1
   Real portfolio screenshots
========================================================= */


/* Case study Philip */

.browser-image {
  position: relative;
  background: #0b1220;
}

.browser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}


/* Portfolio screenshots */

.portfolio-preview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  transition: background-size .35s ease;
}

.portfolio-preview::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(
      to bottom,
      rgba(5,10,18,.04) 0%,
      rgba(5,10,18,.08) 35%,
      rgba(5,10,18,.83) 100%
    );
}

.portfolio-card:hover .portfolio-preview {
  background-size: 103% auto;
}


/* Philip */

.portfolio-philip .portfolio-preview {
  color: #fff;
  background-image:
    url("/assets/v2/portfolio/philip.png");
}


/* AI Forge */

.portfolio-aiforge .portfolio-preview {
  color: #fff;
  background-image:
    url("/assets/v2/portfolio/aiforge.png");
}


/* The Wise Beagle */

.portfolio-twb .portfolio-preview {
  color: #fff;
  background-image:
    url("/assets/v2/portfolio/twb.png");
}


/* Gwladys */

.portfolio-gwladys .portfolio-preview {
  color: #fff;
  background-image:
    url("/assets/v2/portfolio/gwladys.png");
}


/* Text readability */

.portfolio-preview strong,
.portfolio-preview small,
.portfolio-domain {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.portfolio-domain {
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.45);
  background: rgba(5,10,18,.35);
  backdrop-filter: blur(5px);
}


/* Make portfolio imagery more prominent */

.portfolio-preview {
  min-height: 255px;
}

.portfolio-preview strong {
  margin-top: auto;
  padding-top: 70px;
}


/* Slightly taller cards on large screens */

@media (min-width: 1000px) {
  .portfolio-preview {
    min-height: 285px;
  }
}


/* Mobile keeps enough visible website */

@media (max-width: 620px) {
  .portfolio-preview {
    min-height: 230px;
  }
}


/* =========================================================
   HEADER / LOGO REFRESH
========================================================= */

.site-header {
  border-bottom: 1px solid #dce4ed;
  background: rgba(247,250,252,.94);
  backdrop-filter: blur(18px);
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  height: auto;
}

.brand-logo-header {
  width: 230px;
  max-width: 48vw;
}

.brand-logo-footer {
  width: 220px;
}

.nav-links {
  color: #334155;
}

.nav-links a:hover {
  color: #0B1220;
}

.button-secondary {
  color: #0B1220;
  background: #ffffff;
  border-color: #dce4ed;
}

.button-secondary:hover {
  border-color: #9fbe62;
}

.nav .button-primary {
  box-shadow: none;
}

.mobile-menu-button {
  border-color: #dce4ed;
  background: #ffffff;
}

.mobile-menu-button span {
  background: #0B1220;
}

.hero {
  border-top: 0;
}

footer .footer-brand-logo-link {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 820px) {
  .nav-links {
    border-bottom: 1px solid #dce4ed;
    background: rgba(247,250,252,.98);
  }

  .nav-links a {
    color: #334155;
    border-bottom: 1px solid #e7edf3;
  }

  .nav-links a:hover {
    color: #0B1220;
  }
}

@media (max-width: 620px) {
  .brand-logo-header {
    width: 180px;
    max-width: 58vw;
  }

  .brand-logo-footer {
    width: 180px;
  }
}


/* =========================================================
   V2 CHECKOUT LINKS
========================================================= */

.micro-buy {
  display: inline-flex;
  margin-top: 14px;
  color: #4e7413;
  font-size: .72rem;
  font-weight: 850;
}

.micro-buy:hover {
  color: #2d4607;
}


/* =========================================================
   FREE TOOLS HOMEPAGE
========================================================= */

.sc-tools-home {
  border-top: 1px solid #e5eaf0;
}

.tools-home-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 13px;
  margin-top: 28px;
}

.tools-home-card {
  display: grid;
  gap: 7px;
  padding: 20px;
  border: 1px solid #dde4eb;
  border-radius: 12px;
  background: #fff;
  transition:
    transform .15s ease,
    border-color .15s ease;
}

.tools-home-card:hover {
  transform: translateY(-2px);
  border-color: #b9d75d;
}

.tools-home-card strong {
  color: #0b1220;
  font-size: .86rem;
}

.tools-home-card span {
  color: #68788b;
  font-size: .7rem;
}

@media (max-width: 760px) {

  .tools-home-grid {
    grid-template-columns: 1fr;
  }

}

/* === SC CANONICAL HEADER START === */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(247, 250, 252, .96);
  border-bottom: 1px solid #dfe6ed;
  backdrop-filter: blur(18px);
}

.sc-header-inner {
  position: relative;
  max-width: 1460px;
  min-height: 86px;
  margin: 0 auto;
  padding: 0 32px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.sc-brand {
  display: flex;
  align-items: center;
}

.sc-brand img {
  display: block;
  width: 172px;
  height: auto;
}

.sc-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.sc-desktop-nav > a,
.sc-services-menu > summary {
  color: #26344a;
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.sc-desktop-nav > a {
  position: relative;
  padding: 34px 0;
}

.sc-desktop-nav > a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;

  height: 2px;

  content: "";
  background: #c7f464;

  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.sc-desktop-nav > a:hover::after {
  transform: scaleX(1);
}

.sc-services-menu {
  position: relative;
}

.sc-services-menu > summary {
  padding: 34px 0;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.sc-services-menu > summary::-webkit-details-marker {
  display: none;
}

.sc-services-menu > summary span {
  display: inline-block;
  margin-left: 5px;
  color: #729409;
  transition: transform .18s ease;
}

.sc-services-menu[open] > summary span {
  transform: rotate(180deg);
}

.sc-services-panel {
  position: absolute;
  top: 70px;
  left: -24px;

  width: 350px;
  padding: 12px;

  background: #fff;
  border: 1px solid #dce4eb;
  border-radius: 18px;

  box-shadow:
    0 24px 60px rgba(11, 18, 32, .15);
}

.sc-services-panel a {
  display: block;
  padding: 16px 18px;

  color: #0b1220;
  text-decoration: none;

  border-radius: 12px;
}

.sc-services-panel a:hover {
  background: #f2f6f8;
}

.sc-services-panel strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.sc-services-panel span {
  display: block;
  margin: 0;

  color: #617086;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;

  transform: none !important;
}

.sc-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sc-nav-cta {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;

  align-items: center;
  justify-content: center;

  color: #0b1220;
  background: #c7f464;

  border-radius: 13px;

  font-weight: 850;
  text-decoration: none;

  transition:
    transform .16s ease,
    box-shadow .16s ease;
}

.sc-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(139, 181, 20, .24);
}

.sc-mobile-nav {
  display: none;
  position: relative;
}

.sc-mobile-nav > summary {
  width: 48px;
  height: 48px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;

  list-style: none;
  cursor: pointer;

  background: #fff;
  border: 1px solid #dce4eb;
  border-radius: 12px;
}

.sc-mobile-nav > summary::-webkit-details-marker {
  display: none;
}

.sc-mobile-nav > summary span {
  width: 21px;
  height: 2px;
  background: #0b1220;
  border-radius: 2px;
}

.sc-mobile-panel {
  position: absolute;
  top: 60px;
  right: 0;

  width: min(340px, calc(100vw - 32px));
  padding: 18px;

  background: #fff;
  border: 1px solid #dce4eb;
  border-radius: 18px;

  box-shadow:
    0 24px 60px rgba(11, 18, 32, .18);
}

.sc-mobile-panel a {
  display: block;
  padding: 13px 12px;

  color: #0b1220;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  border-radius: 10px;
}

.sc-mobile-panel a:hover {
  background: #f2f6f8;
}

.sc-mobile-panel hr {
  margin: 10px 0;
  border: 0;
  border-top: 1px solid #e4e9ee;
}

.sc-mobile-label {
  display: block;
  padding: 5px 12px 7px;

  color: #71940b;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.sc-mobile-panel .sc-mobile-cta {
  margin-top: 10px;
  padding: 15px;

  text-align: center;
  background: #c7f464;
}

@media (max-width: 1050px) {

  .sc-header-inner {
    min-height: 76px;
    padding: 0 20px;
    grid-template-columns: 1fr auto;
  }

  .sc-brand img {
    width: 155px;
  }

  .sc-desktop-nav,
  .sc-nav-cta {
    display: none;
  }

  .sc-mobile-nav {
    display: block;
  }

}

@media (max-width: 480px) {

  .sc-header-inner {
    padding: 0 16px;
  }

  .sc-brand img {
    width: 145px;
  }

}

/* === SC CANONICAL HEADER END === */


/* === SC SIGNATURE HOME START === */


/* =========================================================
   CANVAS
========================================================= */

html:has(.scx-home),
body:has(.scx-home) {
  overflow-x: hidden;
}

body:has(.scx-home) {
  background: #dce4ea !important;
}

body:has(.scx-home) .scx-home {
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;

  color: #0b1220;
  background:
    linear-gradient(
      180deg,
      #dce4ea 0%,
      #e4eaee 46%,
      #dbe3e9 100%
    );
}

.scx-home * {
  box-sizing: border-box;
}

.scx-kicker {
  display: block;

  color: #799c0c;

  font-size: 10px;
  font-weight: 900;

  line-height: 1.2;

  letter-spacing: .14em;
  text-transform: uppercase;
}


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

.scx-hero {
  width: min(1400px, calc(100% - 64px));

  margin: 32px auto 76px;

  overflow: hidden;

  color: #f7fafc;

  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(199, 244, 100, .16),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #09111e,
      #101d31 70%
    );

  border: 1px solid #28384f;
  border-radius: 30px;

  box-shadow:
    0 30px 80px rgba(11, 18, 32, .16);
}

.scx-hero-grid {
  padding: 58px 60px 48px;

  display: grid;
  grid-template-columns:
    minmax(0, .9fr)
    minmax(450px, 1.1fr);

  gap: 76px;
  align-items: center;
}

.scx-hero .scx-kicker {
  color: #b0db38;
}

.scx-hero-copy h1 {
  max-width: 650px;

  margin: 16px 0 23px;

  color: #f7fafc;

  font-size: clamp(46px, 4.1vw, 58px);
  font-weight: 880;

  line-height: .98;
  letter-spacing: -.055em;
}

.scx-hero-copy h1 em {
  color: #c7f464;

  font-style: normal;
}

.scx-hero-copy > p {
  max-width: 620px;

  margin: 0;

  color: #bac6d4;

  font-size: 17px;
  line-height: 1.7;
}

.scx-actions {
  margin-top: 29px;

  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}


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

.scx-button {
  min-height: 48px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 24px;

  border-radius: 11px;

  font-size: 13px;
  font-weight: 850;

  text-decoration: none;

  transition:
    transform .16s ease,
    box-shadow .16s ease,
    border-color .16s ease;
}

.scx-button:hover {
  transform: translateY(-2px);
}

.scx-button-lime {
  color: #0b1220;
  background: #c7f464;
}

.scx-button-lime:hover {
  box-shadow:
    0 12px 30px rgba(170, 215, 47, .18);
}

.scx-button-ghost {
  color: #edf3f7;
  background: rgba(255, 255, 255, .035);

  border: 1px solid #43536a;
}


/* =========================================================
   HERO REAL PROJECT
========================================================= */

.scx-hero-visual {
  position: relative;

  min-width: 0;
}

.scx-hero-shot {
  position: relative;

  height: 405px;

  overflow: hidden;

  background: #d5dee5;

  border: 1px solid #45536a;
  border-radius: 22px;

  box-shadow:
    0 26px 65px rgba(0, 0, 0, .25);
}

.scx-hero-shot-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: top;

  transition:
    transform .5s ease;
}

.scx-hero-shot:hover
.scx-hero-shot-image {
  transform: scale(1.018);
}

.scx-shot-caption {
  position: absolute;

  left: 16px;
  bottom: 16px;

  padding: 11px 13px;

  background: rgba(9, 17, 30, .88);

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;

  backdrop-filter: blur(12px);
}

.scx-shot-caption span,
.scx-shot-caption strong {
  display: block;
}

.scx-shot-caption span {
  margin-bottom: 3px;

  color: #9fafc0;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .09em;
  text-transform: uppercase;
}

.scx-shot-caption strong {
  color: #f7fafc;

  font-size: 12px;
}

.scx-price-stamp {
  position: absolute;

  right: -17px;
  top: -20px;

  min-width: 152px;
  padding: 17px;

  color: #0b1220;
  background: #c7f464;

  border-radius: 15px;

  box-shadow:
    0 17px 40px rgba(0, 0, 0, .20);
}

.scx-price-stamp span,
.scx-price-stamp strong,
.scx-price-stamp small {
  display: block;
}

.scx-price-stamp span {
  font-size: 9px;
  font-weight: 900;

  letter-spacing: .1em;
  text-transform: uppercase;
}

.scx-price-stamp strong {
  margin: 2px 0;

  font-size: 29px;
  line-height: 1;
}

.scx-price-stamp small {
  font-size: 9px;
}


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

.scx-hero-rail {
  padding: 0 60px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid #293a50;
}

.scx-hero-rail > div {
  min-height: 82px;
  padding: 18px 25px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right: 1px solid #293a50;
}

.scx-hero-rail > div:first-child {
  padding-left: 0;
}

.scx-hero-rail > div:last-child {
  border-right: 0;
}

.scx-hero-rail strong {
  color: #f7fafc;

  font-size: 17px;
}

.scx-hero-rail span {
  margin-top: 2px;

  color: #8999ad;

  font-size: 10px;
}


/* =========================================================
   SHARED SECTIONS
========================================================= */

.scx-orient,
.scx-method,
.scx-work,
.scx-resources {
  width: min(1360px, calc(100% - 64px));

  margin-left: auto;
  margin-right: auto;
}

.scx-section-heading {
  margin-bottom: 27px;
}

.scx-section-heading h2 {
  max-width: 760px;

  margin: 10px 0 0;

  color: #0b1220;

  font-size: clamp(30px, 2.5vw, 37px);
  font-weight: 850;

  line-height: 1.06;
  letter-spacing: -.04em;
}

.scx-section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 60px;
}

.scx-section-heading-row > p {
  max-width: 330px;

  margin: 0;

  color: #58687c;

  font-size: 13px;
  line-height: 1.6;
}

.scx-inline-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: #0b1220;

  font-size: 12px;
  font-weight: 850;

  text-decoration: none;
}

.scx-inline-link span {
  color: #769a09;
}


/* =========================================================
   ORIENTATION
========================================================= */

.scx-orient {
  margin-bottom: 78px;
}

.scx-orient-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  overflow: hidden;

  background: #cdd8e0;

  border: 1px solid #c1ccd5;
  border-radius: 21px;
}

.scx-orient-panel > a {
  min-height: 138px;
  padding: 23px;

  display: grid;
  grid-template-columns: 58px 1fr auto;

  gap: 18px;
  align-items: center;

  color: #0b1220;

  border-right: 1px solid #b9c6d0;

  text-decoration: none;

  transition:
    background .17s ease;
}

.scx-orient-panel > a:last-child {
  border-right: 0;
}

.scx-orient-panel > a:hover {
  background: #d6e0e7;
}

.scx-orient-panel img {
  width: 56px;
  height: 56px;
}

.scx-orient-panel span,
.scx-orient-panel strong {
  display: block;
}

.scx-orient-panel span {
  margin-bottom: 5px;

  color: #6e7c90;

  font-size: 10px;
  font-weight: 800;
}

.scx-orient-panel strong {
  max-width: 245px;

  font-size: 16px;
  line-height: 1.25;
}

.scx-orient-panel b {
  color: #708f0a;

  font-size: 18px;
}

.scx-orient > .scx-inline-link {
  margin-top: 17px;
}


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

.scx-pricing {
  width: min(1400px, calc(100% - 64px));

  margin: 0 auto 78px;
  padding: 48px;

  color: #f7fafc;

  background:
    radial-gradient(
      circle at 92% 0%,
      rgba(199,244,100,.09),
      transparent 22%
    ),
    #101b2d;

  border: 1px solid #2c3b52;
  border-radius: 27px;

  box-shadow:
    0 20px 55px rgba(11, 18, 32, .10);
}

.scx-pricing .scx-kicker {
  color: #add739;
}

.scx-pricing-intro {
  margin-bottom: 30px;

  display: grid;
  grid-template-columns: 1fr 260px;

  gap: 60px;
  align-items: end;
}

.scx-pricing-intro h2 {
  max-width: 700px;

  margin: 10px 0 0;

  color: #f7fafc;

  font-size: clamp(30px, 2.55vw, 38px);
  font-weight: 850;

  line-height: 1.05;
  letter-spacing: -.04em;
}

.scx-pricing-intro p {
  margin: 0;

  color: #9cacbd;

  font-size: 13px;
  line-height: 1.6;
}

.scx-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 14px;
}

.scx-offer {
  min-height: 270px;
  padding: 27px;

  display: flex;
  align-items: stretch;
  justify-content: space-between;

  gap: 35px;

  background: #152238;

  border: 1px solid #314157;
  border-radius: 18px;
}

.scx-offer-main {
  border-color: #718d30;
}

.scx-offer-label {
  color: #a9d333;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .11em;
  text-transform: uppercase;
}

.scx-offer h3 {
  margin: 9px 0 12px;

  color: #f7fafc;

  font-size: 27px;
  line-height: 1;

  letter-spacing: -.035em;
}

.scx-offer p {
  max-width: 420px;

  margin: 0;

  color: #b6c2d0;

  font-size: 13px;
  line-height: 1.62;
}

.scx-offer-buy {
  min-width: 130px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.scx-offer-buy > strong {
  color: #c7f464;

  font-size: 35px;
  line-height: 1;
}

.scx-offer-buy > span {
  margin: 4px 0 18px;

  color: #7f8fa3;

  font-size: 9px;
}

.scx-offer-buy a {
  display: flex;
  align-items: center;

  gap: 20px;

  color: #f7fafc;

  font-size: 12px;
  font-weight: 850;

  text-decoration: none;
}

.scx-offer-buy b {
  color: #c7f464;
}

.scx-microservices {
  margin-top: 14px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  overflow: hidden;

  background: #0d1727;

  border: 1px solid #2b3b51;
  border-radius: 15px;
}

.scx-microservices a {
  min-height: 78px;
  padding: 15px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  color: #f7fafc;

  border-right: 1px solid #28394f;

  text-decoration: none;
}

.scx-microservices a:last-child {
  border-right: 0;
}

.scx-microservices span {
  color: #a7b4c3;

  font-size: 10px;
}

.scx-microservices strong {
  font-size: 13px;
}

.scx-custom {
  margin-top: 14px;
  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  background: #c7f464;

  border-radius: 14px;
}

.scx-custom > div span,
.scx-custom > div strong {
  display: block;
}

.scx-custom > div span {
  margin-bottom: 2px;

  color: #536321;

  font-size: 9px;
  font-weight: 800;
}

.scx-custom > div strong {
  color: #0b1220;

  font-size: 14px;
}

.scx-custom > a {
  display: flex;
  align-items: center;

  gap: 22px;

  color: #0b1220;

  font-size: 12px;
  font-weight: 900;

  text-decoration: none;
}


/* =========================================================
   METHOD
========================================================= */

.scx-method {
  margin-bottom: 82px;

  display: grid;
  grid-template-columns: .9fr 1.1fr;

  gap: 85px;
}

.scx-method-statement h2 {
  max-width: 510px;

  margin: 10px 0 0;

  color: #0b1220;

  font-size: clamp(30px, 2.7vw, 40px);
  font-weight: 850;

  line-height: 1.04;
  letter-spacing: -.045em;
}

.scx-method-points {
  border-top: 1px solid #bac6d0;
}

.scx-method-points article {
  padding: 21px 0;

  display: grid;
  grid-template-columns: 45px 190px 1fr;

  gap: 20px;

  border-bottom: 1px solid #bac6d0;
}

.scx-method-points article > span {
  color: #789c0a;

  font-size: 10px;
  font-weight: 900;
}

.scx-method-points strong {
  font-size: 14px;
}

.scx-method-points p {
  margin: 0;

  color: #5a697d;

  font-size: 13px;
  line-height: 1.58;
}


/* =========================================================
   WORK
========================================================= */

.scx-work {
  margin-bottom: 84px;
}

.scx-cases {
  display: grid;
  grid-template-columns: 1.35fr .65fr;

  gap: 16px;
}

.scx-case {
  overflow: hidden;

  background: #cfd9e1;

  border: 1px solid #c0ccd5;
  border-radius: 19px;
}

.scx-case:not(.scx-case-featured) {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.scx-case-featured {
  grid-row: span 3;
}

.scx-case-media {
  height: 190px;

  overflow: hidden;

  background: #c5d0d8;
}

.scx-case-featured
.scx-case-media {
  height: 460px;
}

.scx-case:not(.scx-case-featured)
.scx-case-media {
  height: 100%;
}

.scx-case-media img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: top;

  transition:
    transform .35s ease;
}

.scx-case:hover
.scx-case-media img {
  transform: scale(1.015);
}

.scx-case-copy {
  padding: 19px;
}

.scx-case-featured
.scx-case-copy {
  padding: 24px;
}

.scx-case-copy > span {
  color: #789b0a;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .1em;
  text-transform: uppercase;
}

.scx-case-copy h3 {
  margin: 7px 0 8px;

  color: #0b1220;

  font-size: 18px;
  line-height: 1.08;
}

.scx-case-featured
.scx-case-copy h3 {
  font-size: 24px;
}

.scx-case-copy p {
  margin: 0;

  color: #58687c;

  font-size: 12px;
  line-height: 1.55;
}


/* =========================================================
   RESOURCES
========================================================= */

.scx-resources {
  margin-bottom: 82px;
}

.scx-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 15px;
}

.scx-resource {
  overflow: hidden;

  color: #0b1220;
  background: #cfd9e1;

  border: 1px solid #c0ccd5;
  border-radius: 18px;

  text-decoration: none;
}

.scx-resource-featured {
  color: #f7fafc;
  background: #101b2d;

  border-color: #2d3c53;
}

.scx-resource img {
  width: 100%;
  aspect-ratio: 16 / 8.7;

  display: block;

  object-fit: cover;
}

.scx-resource > div {
  padding: 19px;
}

.scx-resource span {
  color: #779b0a;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .1em;
  text-transform: uppercase;
}

.scx-resource-featured span {
  color: #b0da39;
}

.scx-resource h3 {
  min-height: 46px;

  margin: 7px 0 17px;

  color: inherit;

  font-size: 18px;
  line-height: 1.13;

  letter-spacing: -.025em;
}

.scx-resource strong {
  font-size: 11px;
}


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

.scx-final {
  width: min(1400px, calc(100% - 64px));

  margin: 0 auto 66px;
  padding: 48px 52px;

  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 60px;

  color: #0b1220;
  background: #c7f464;

  border: 1px solid #a8cf44;
  border-radius: 26px;

  box-shadow:
    0 18px 50px rgba(70, 94, 14, .10);
}

.scx-final .scx-kicker {
  color: #536b12;
}

.scx-final h2 {
  margin: 8px 0 11px;

  color: #0b1220;

  font-size: clamp(31px, 2.7vw, 40px);
  font-weight: 880;

  line-height: 1.01;
  letter-spacing: -.045em;
}

.scx-final p {
  max-width: 590px;

  margin: 0;

  color: #445315;

  font-size: 13px;
  line-height: 1.6;
}

.scx-final-actions {
  flex: none;

  display: flex;

  gap: 9px;
}

.scx-button-dark {
  color: #f7fafc;
  background: #0b1220;
}

.scx-button-outline-dark {
  color: #0b1220;

  border: 1px solid #708c23;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {

  .scx-hero-copy h1 {
    font-size: 56px;
  }

  .scx-section-heading h2,
  .scx-pricing-intro h2 {
    font-size: 35px;
  }

  .scx-method-statement h2 {
    font-size: 37px;
  }

  .scx-final h2 {
    font-size: 38px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .scx-hero-grid {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .scx-hero-visual {
    max-width: 760px;
  }

  .scx-orient-panel {
    grid-template-columns: 1fr;
  }

  .scx-orient-panel > a {
    border-right: 0;
    border-bottom: 1px solid #b9c6d0;
  }

  .scx-orient-panel > a:last-child {
    border-bottom: 0;
  }

  .scx-pricing-intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .scx-offers {
    grid-template-columns: 1fr;
  }

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

  .scx-microservices a {
    border-bottom: 1px solid #28394f;
  }

  .scx-method {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .scx-cases {
    grid-template-columns: 1fr;
  }

  .scx-case-featured {
    grid-row: auto;
  }

  .scx-case:not(.scx-case-featured) {
    grid-template-columns: 35% 1fr;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .scx-hero,
  .scx-orient,
  .scx-pricing,
  .scx-method,
  .scx-work,
  .scx-resources,
  .scx-final {
    width: calc(100% - 32px);
  }

  .scx-hero {
    margin-top: 18px;
  }

  .scx-hero-grid {
    padding: 38px 24px 34px;
  }

  .scx-hero-copy h1 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .scx-hero-copy > p {
    font-size: 16px;
  }

  .scx-hero-shot {
    height: 280px;
  }

  .scx-price-stamp {
    right: 10px;
    top: -15px;
  }

  .scx-hero-rail {
    padding: 0 24px;

    grid-template-columns: 1fr 1fr;
  }

  .scx-hero-rail > div {
    border-bottom: 1px solid #293a50;
  }

  .scx-section-heading-row {
    align-items: flex-start;
    flex-direction: column;

    gap: 14px;
  }

  .scx-orient-panel > a {
    min-height: 115px;

    grid-template-columns: 52px 1fr auto;
  }

  .scx-pricing {
    padding: 30px 22px;
  }

  .scx-offer {
    flex-direction: column;

    min-height: 0;
  }

  .scx-offer-buy {
    align-items: flex-start;
  }

  .scx-microservices {
    grid-template-columns: 1fr;
  }

  .scx-microservices a {
    border-right: 0;
  }

  .scx-custom {
    align-items: flex-start;
    flex-direction: column;
  }

  .scx-method-points article {
    grid-template-columns: 35px 1fr;
  }

  .scx-method-points p {
    grid-column: 2;
  }

  .scx-case-featured
  .scx-case-media {
    height: 300px;
  }

  .scx-case:not(.scx-case-featured) {
    display: block;
  }

  .scx-case:not(.scx-case-featured)
  .scx-case-media {
    height: 220px;
  }

  .scx-resource-grid {
    grid-template-columns: 1fr;
  }

  .scx-final {
    padding: 32px 24px;

    align-items: flex-start;
    flex-direction: column;
  }

  .scx-final-actions {
    width: 100%;

    flex-direction: column;
  }

}


/* === SC SIGNATURE HOME END === */


/* === SC SIGNATURE POLISH START === */


/* =========================================================
   TYPOGRAPHIE GLOBALE
   Stop aux textes microscope électronique.
========================================================= */

.scx-kicker {
  font-size: 11px;
  line-height: 1.3;
}

.scx-inline-link {
  font-size: 14px;
}

.scx-section-heading-row > p {
  max-width: 360px;

  font-size: 14px;
  line-height: 1.6;
}


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

.scx-hero {
  margin-bottom: 64px;
}

.scx-hero-copy > p {
  max-width: 640px;

  font-size: 17px;
  line-height: 1.65;
}

.scx-hero-rail strong {
  font-size: 18px;
}

.scx-hero-rail span {
  font-size: 12px;
  line-height: 1.4;
}

.scx-shot-caption span {
  font-size: 10px;
}

.scx-shot-caption strong {
  font-size: 13px;
}


/* =========================================================
   ORIENTATION
========================================================= */

.scx-orient {
  margin-bottom: 62px;
}

.scx-orient-panel > a {
  min-height: 145px;
}

.scx-orient-panel span {
  margin-bottom: 6px;

  font-size: 12px;
  line-height: 1.35;
}

.scx-orient-panel strong {
  max-width: 280px;

  font-size: 18px;
  line-height: 1.25;
}

.scx-orient > .scx-inline-link {
  margin-top: 15px;
}


/* =========================================================
   PRICING
   Correction du vrai bug de grid.
========================================================= */

.scx-pricing {
  margin-bottom: 68px;
  padding: 44px 48px 46px;
}

.scx-pricing-intro {
  margin-bottom: 28px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 350px);

  grid-template-areas:
    "kicker side"
    "title side";

  column-gap: 70px;
  row-gap: 9px;

  align-items: end;
}

.scx-pricing-intro > .scx-kicker {
  grid-area: kicker;
}

.scx-pricing-intro > h2 {
  grid-area: title;

  max-width: 650px;

  margin: 0;

  font-size: 35px;
  line-height: 1.06;
}

.scx-pricing-intro > p {
  grid-area: side;

  align-self: end;

  max-width: 320px;

  margin: 0 0 4px;

  color: #aab8c8;

  font-size: 15px;
  line-height: 1.6;
}


/* =========================================================
   OFFRES
========================================================= */

.scx-offer {
  min-height: 255px;
}

.scx-offer-label {
  font-size: 11px;
}

.scx-offer h3 {
  font-size: 28px;
}

.scx-offer p {
  max-width: 450px;

  font-size: 15px;
  line-height: 1.58;
}

.scx-offer-buy > strong {
  font-size: 38px;
}

.scx-offer-buy > span {
  font-size: 10px;
}

.scx-offer-buy a {
  font-size: 14px;
}


/* =========================================================
   MICRO SERVICES
========================================================= */

.scx-microservices a {
  min-height: 86px;

  padding: 17px;
}

.scx-microservices span {
  color: #b1bdcb;

  font-size: 12px;
  line-height: 1.35;
}

.scx-microservices strong {
  font-size: 15px;
}

.scx-custom {
  padding: 19px 21px;
}

.scx-custom > div span {
  font-size: 11px;
}

.scx-custom > div strong {
  margin-top: 3px;

  font-size: 16px;
}

.scx-custom > a {
  font-size: 14px;
}


/* =========================================================
   POURQUOI 499
========================================================= */

.scx-method {
  margin-bottom: 72px;

  gap: 74px;
}

.scx-method-statement h2 {
  max-width: 540px;

  font-size: 37px;
}

.scx-method-points article {
  padding: 23px 0;

  grid-template-columns:
    45px
    205px
    1fr;

  gap: 22px;
}

.scx-method-points article > span {
  font-size: 11px;
}

.scx-method-points strong {
  font-size: 15px;
  line-height: 1.4;
}

.scx-method-points p {
  color: #536278;

  font-size: 14px;
  line-height: 1.6;
}


/* =========================================================
   REALISATIONS
========================================================= */

.scx-work {
  margin-bottom: 72px;
}

.scx-case-copy {
  padding: 21px;
}

.scx-case-featured
.scx-case-copy {
  padding: 25px;
}

.scx-case-copy > span {
  font-size: 11px;
}

.scx-case-copy h3 {
  margin-top: 8px;

  font-size: 21px;
}

.scx-case-featured
.scx-case-copy h3 {
  font-size: 26px;
}

.scx-case-copy p {
  max-width: 620px;

  color: #536278;

  font-size: 14px;
  line-height: 1.55;
}


/* =========================================================
   RESSOURCES
========================================================= */

.scx-resources {
  margin-bottom: 66px;
}

.scx-resource > div {
  padding: 21px;
}

.scx-resource span {
  font-size: 11px;
}

.scx-resource h3 {
  min-height: 52px;

  margin: 8px 0 18px;

  font-size: 20px;
  line-height: 1.18;
}

.scx-resource strong {
  font-size: 13px;
}


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

.scx-final {
  margin-bottom: 54px;

  padding-top: 44px;
  padding-bottom: 44px;
}

.scx-final p {
  font-size: 15px;
  line-height: 1.55;
}


/* =========================================================
   DESKTOP 1440+
========================================================= */

@media (min-width: 1440px) {

  .scx-section-heading h2 {
    font-size: 34px;
  }

  .scx-pricing-intro > h2 {
    font-size: 35px;
  }

  .scx-method-statement h2 {
    font-size: 36px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .scx-pricing-intro {
    grid-template-columns: 1fr;

    grid-template-areas:
      "kicker"
      "title"
      "side";

    row-gap: 10px;
  }

  .scx-pricing-intro > p {
    max-width: 600px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .scx-pricing-intro > h2 {
    font-size: 30px;
  }

  .scx-orient-panel strong {
    font-size: 16px;
  }

  .scx-method-statement h2 {
    font-size: 31px;
  }

  .scx-method-points article {
    grid-template-columns:
      34px
      1fr;
  }

  .scx-method-points p {
    grid-column: 2;
  }

}


/* === SC SIGNATURE POLISH END === */

/* === SC GLOBAL UX START === */


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

.site-header {
  position: sticky !important;
  top: 0 !important;

  z-index: 1000 !important;

  background:
    rgba(247, 250, 252, .96) !important;

  border-bottom:
    1px solid rgba(180, 193, 204, .65);

  transition:
    box-shadow .18s ease,
    background .18s ease;
}

@supports (
  backdrop-filter: blur(14px)
) {

  .site-header {
    background:
      rgba(247, 250, 252, .90) !important;

    backdrop-filter:
      blur(14px)
      saturate(125%);
  }

}

body.sc-page-scrolled
.site-header {
  box-shadow:
    0 10px 30px
    rgba(11, 18, 32, .08);
}


/* Ancres compatibles header sticky */

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 105px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.sc-backtotop {
  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 900;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  color: #0b1220;
  background: #c7f464;

  border:
    1px solid #a7ce42;

  border-radius: 14px;

  box-shadow:
    0 12px 30px
    rgba(11, 18, 32, .18);

  font: inherit;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform:
    translateY(10px);

  transition:
    opacity .18s ease,
    visibility .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.sc-backtotop span {
  display: block;

  margin-top: -2px;

  font-size: 23px;
  font-weight: 900;

  line-height: 1;
}

.sc-backtotop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform:
    translateY(0);
}

.sc-backtotop:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 15px 34px
    rgba(11, 18, 32, .22);
}


/* =========================================================
   RESTAURANT PHILIP STATS
========================================================= */

.scx-case-featured
.scx-case-copy {
  padding-bottom: 22px;
}

.scx-case-stats {
  margin-top: 20px;
  padding-top: 18px;

  display: grid;
  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  border-top:
    1px solid #b7c4ce;
}

.scx-case-stats > div {
  min-width: 0;
  padding: 0 11px;

  border-right:
    1px solid #b7c4ce;
}

.scx-case-stats > div:first-child {
  padding-left: 0;
}

.scx-case-stats > div:last-child {
  padding-right: 0;

  border-right: 0;
}

.scx-case-stats strong,
.scx-case-stats span {
  display: block;
}

.scx-case-stats strong {
  color: #0b1220;

  font-size: 18px;
  font-weight: 900;

  line-height: 1.05;
  letter-spacing: -.025em;
}

.scx-case-stats span {
  margin-top: 5px;

  color: #617187;

  font-size: 10px;
  font-weight: 700;

  line-height: 1.3;
}

.scx-case-stat-business
strong {
  color: #719409;
}

.scx-case-stats-note {
  margin: 12px 0 0 !important;

  color: #718095 !important;

  font-size: 10px !important;
  line-height: 1.45 !important;
}


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

@media (max-width: 1100px) {

  .scx-case-stats {
    grid-template-columns:
      repeat(3, 1fr);

    row-gap: 18px;
  }

  .scx-case-stats > div {
    border-right: 0;
  }

}


@media (max-width: 760px) {

  .sc-backtotop {
    right: 16px;
    bottom: 16px;

    width: 44px;
    height: 44px;

    border-radius: 12px;
  }

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

}


/* === SC GLOBAL UX END === */


/* === SC PORTFOLIO LINKS START === */

.scx-case {
  position: relative;

  cursor: pointer;

  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.scx-case:hover {
  transform: translateY(-2px);

  border-color: #aabbc7;

  box-shadow:
    0 16px 34px
    rgba(11, 18, 32, .09);
}


/* Le lien couvre toute la réalisation */

.scx-case-hit {
  position: absolute;

  inset: 0;

  z-index: 5;

  display: block;

  border-radius: inherit;
}


/* Focus clavier visible */

.scx-case-hit:focus-visible {
  outline:
    3px solid #91b72c;

  outline-offset: 3px;
}


/* Image légèrement vivante au hover */

.scx-case:hover
.scx-case-media img {
  transform:
    scale(1.018);
}


/* Petit CTA discret */

.scx-case-visit {
  margin-top: 15px;

  display: inline-flex;

  color: #668509;

  font-size: 12px;
  font-weight: 850;

  line-height: 1.3;

  transition:
    transform .16s ease;
}

.scx-case:hover
.scx-case-visit {
  transform:
    translateX(3px);
}


/* Le contenu reste visuellement sous le hit-area */

.scx-case-media,
.scx-case-copy {
  position: relative;

  z-index: 1;
}


/* Mobile */

@media (max-width: 760px) {

  .scx-case-visit {
    font-size: 13px;
  }

}


/* === SC PORTFOLIO LINKS END === */


/* === SC HUMAN TEAM START === */


/* =========================================================
   TEAM
========================================================= */

.scx-team {
  width:
    min(
      1360px,
      calc(100% - 64px)
    );

  margin:
    0 auto 76px;

  padding:
    45px 48px 38px;

  display: grid;

  grid-template-columns:
    minmax(0, .78fr)
    minmax(520px, 1.22fr);

  column-gap: 70px;
  row-gap: 34px;

  color: #f7fafc;

  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(199,244,100,.10),
      transparent 25%
    ),
    #101b2d;

  border:
    1px solid #2d3d54;

  border-radius: 25px;

  box-shadow:
    0 20px 55px
    rgba(11,18,32,.09);
}


.scx-team
.scx-kicker {
  color: #b0da39;
}


.scx-team-intro h2 {
  max-width: 530px;

  margin:
    10px 0 17px;

  color: #f7fafc;

  font-size: 36px;
  font-weight: 850;

  line-height: 1.04;
  letter-spacing: -.04em;
}


.scx-team-intro > p {
  max-width: 560px;

  margin: 0;

  color: #b7c3d0;

  font-size: 15px;
  line-height: 1.65;
}


/* =========================================================
   HUMAN NOTE
========================================================= */

.scx-team-human-note {
  margin-top: 25px;

  max-width: 480px;

  padding:
    15px 17px;

  display: flex;

  gap: 12px;
  align-items: flex-start;

  background:
    rgba(255,255,255,.035);

  border:
    1px solid #34455d;

  border-radius: 13px;
}


.scx-team-human-note > span {
  margin-top: 5px;

  color: #c7f464;

  font-size: 8px;
}


.scx-team-human-note p {
  margin: 0;

  color: #d0d8e2;

  font-size: 13px;
  line-height: 1.55;
}


/* =========================================================
   PEOPLE
========================================================= */

.scx-team-people {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 14px;
}


.scx-person {
  min-height: 300px;

  padding: 23px;

  display: flex;
  flex-direction: column;

  background: #152238;

  border:
    1px solid #34445a;

  border-radius: 18px;
}


.scx-person-avatar {
  width: 64px;
  height: 64px;

  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0b1220;
  background: #c7f464;

  border-radius: 17px;

  font-size: 18px;
  font-weight: 950;

  letter-spacing: -.03em;
}


.scx-person-copy > span {
  color: #a8d233;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .11em;
  text-transform: uppercase;
}


.scx-person-copy h3 {
  margin:
    7px 0 5px;

  color: #f7fafc;

  font-size: 23px;
  font-weight: 850;

  line-height: 1.08;
  letter-spacing: -.025em;
}


.scx-person-copy > strong {
  display: block;

  color: #c8d2de;

  font-size: 13px;
  font-weight: 750;

  line-height: 1.4;
}


.scx-person-copy > p {
  margin:
    18px 0 0;

  color: #9facbc;

  font-size: 13px;
  line-height: 1.58;
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.scx-team-bottom {
  grid-column:
    1 / -1;

  padding-top: 23px;

  border-top:
    1px solid #314158;
}


.scx-team-bottom p {
  margin: 0;

  color: #99a9bb;

  font-size: 13px;
  line-height: 1.55;
}


.scx-team-bottom strong {
  color: #f0f4f7;
}


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

@media (max-width: 1100px) {

  .scx-team {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 760px) {

  .scx-team {
    width:
      calc(100% - 32px);

    padding:
      32px 24px;
  }

  .scx-team-intro h2 {
    font-size: 31px;
  }

  .scx-team-people {
    grid-template-columns: 1fr;
  }

  .scx-person {
    min-height: 0;
  }

}


/* === SC HUMAN TEAM END === */

/* === SC TEAM PHOTOS START === */

.scx-person {
  padding: 0;
  overflow: hidden;
}

.scx-person-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;

  background: #0b1220;

  border-bottom:
    1px solid #34445a;
}

.scx-person-photo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 28%;

  transition:
    transform .3s ease;
}

.scx-person:hover
.scx-person-photo img {
  transform: scale(1.02);
}

.scx-person-copy {
  padding: 23px;
}

.scx-person-avatar {
  display: none !important;
}

@media (max-width: 760px) {

  .scx-person-photo {
    height: 260px;
  }

}

/* === SC TEAM PHOTOS END === */


/* === SC TEAM FINAL ASSETS START === */

.scx-person-photo img {
  object-fit: cover;
  object-position: center center;
}

/* === SC TEAM FINAL ASSETS END === */


/* === SC TEAM PORTRAIT CROP START === */

/*
 Romain
 Le haut de l'image est verrouillé :
 plus de scalpage.
*/
.scx-team-people
.scx-person:nth-child(1)
.scx-person-photo img {
  object-position: center top;
  transform: scale(1.06);
  transform-origin: center top;
}

.scx-team-people
.scx-person:nth-child(1):hover
.scx-person-photo img {
  transform: scale(1.075);
}


/*
 François-Thomas
 Son cadrage actuel est validé.
*/
.scx-team-people
.scx-person:nth-child(2)
.scx-person-photo img {
  object-position: center center;
}


/* === SC TEAM PORTRAIT CROP END === */

/* =========================================================
   SERVICE COMPRIS - STICKY HEADER GLOBAL
========================================================= */

.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  width: 100%;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}


/* === SC FORCE FIXED HEADER === */
html body .sc-force-fixed-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
}

.sc-fixed-header-spacer {
  display: block;
  width: 100%;
  pointer-events: none;
}


/* === SC TYPOGRAPHY CONSISTENCY === */

/* Des retours de ligne choisis, pas des orphelins aléatoires. */
main h1,
main h2,
main h3,
main h4,
.legal-hero h1,
.legal-card h2,
.legal-card h3 {
  text-wrap: balance;
}

/* Améliore les fins de lignes des textes sans les justifier. */
main p,
main li,
.legal-card p,
.legal-card li {
  text-wrap: pretty;
}

/* Chute volontaire d'un titre sur une nouvelle ligne. */
.sc-heading-line {
  display: block;
}

/* Sur petit écran, on rend la chute à nouveau fluide si nécessaire. */
@media (max-width: 640px) {
  .sc-heading-line {
    display: inline;
  }

  .sc-heading-line + .sc-heading-line::before {
    content: " ";
  }
}
