/* Myrlande — Office manager freelance · Paris
   Production styles — palette Azur, serif Newsreader */

:root {
  --bg:         #edeff4;
  --bg-2:       #dee2ec;
  --surface:    #ffffff;
  --ink:        #0d1b3d;
  --ink-soft:   #1a2a52;
  --muted:      #525c7d;
  --muted-2:    #818aa5;
  --line:       #d2d8e3;
  --line-soft:  #e4e8f0;
  --accent:     #2e4cff;
  --accent-ink: #1e34c7;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(13,27,61,.04), 0 0 0 .5px rgba(13,27,61,.06);
  --shadow-md: 0 4px 20px -8px rgba(13,27,61,.14), 0 0 0 .5px rgba(13,27,61,.06);
  --shadow-lg: 0 24px 60px -20px rgba(13,27,61,.22), 0 0 0 .5px rgba(13,27,61,.06);

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);

  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Afacad", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
section { scroll-margin-top: 80px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* type ramp */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.04;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
h1.display { font-size: clamp(38px, 5.6vw, 77px); }
h2.display { font-size: clamp(36px, 4.6vw, 64px); line-height: 1.05; }
h3.display { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; }

em.accent { font-style: italic; color: var(--accent-ink); font-weight: 400; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.55;
  margin: 0;
}

/* layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section { padding: clamp(72px, 9vw, 132px) 0; position: relative; }
.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 740px; margin-bottom: clamp(40px, 5vw, 64px); }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 450;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: 4px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--ink) 18%, transparent);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink);
  align-items: center;
  gap: 8px;
}
.nav-toggle svg { width: 14px; height: 14px; }

/* logo lockup */
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  color: var(--ink);
}
.logo-lockup .logo-word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.012em;
  white-space: nowrap;
  display: inline-block;
  font-variation-settings: "opsz" 60;
}
.logo-lockup svg { flex-shrink: 0; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--ink); color: var(--bg); }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in oklab, var(--ink) 20%, transparent);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-sm { padding: 10px 16px; font-size: 13.5px; }
.btn-arrow { transition: transform .2s; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }

/* real photos — on respecte le ratio source de l'image (width/height attrs) */
.photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-2);
}

/* placeholder image */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      color-mix(in oklab, var(--ink) 8%, transparent) 0 1px,
      transparent 1px 14px
    ),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--ink-soft);
}
.ph-label {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  display: inline-block;
  width: fit-content;
}

/* cards */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}

/* hero */
.hero { padding-top: 56px; padding-bottom: clamp(72px, 9vw, 132px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero h1 { margin: 24px 0 28px; }
.hero .lede { margin-bottom: 36px; max-width: 48ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-portrait { position: relative; }
.hero-portrait .ph { aspect-ratio: 4/5; }
.hero-floating-card {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  max-width: 240px;
  box-shadow: var(--shadow-md);
}
.hero-floating-card-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.hero-floating-card-label::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
}
.hero-floating-card-body {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.45;
}

/* clients */
.clients-section { padding: 0; }
.clients {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.client {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--muted);
  opacity: 0.7;
  white-space: nowrap;
  font-variation-settings: "opsz" 60;
}

/* stats */
.stats-section { padding: 60px 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 28px 24px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-n {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  margin-bottom: 10px;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.stat-l { font-size: 14px; color: var(--muted); max-width: 22ch; }

/* B2B / B2C grid */
.two-col {
  display: grid;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.two-col-b2b { grid-template-columns: 1fr 1.3fr; }
.two-col-b2c { grid-template-columns: 1.3fr 1fr; }
.b2b-intro { position: sticky; top: 100px; }
.b2c-aside { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.b2c-aside .ph { aspect-ratio: 3/4; }

.intro-text { color: var(--muted); margin: 0 0 36px; font-size: 16px; line-height: 1.55; }

/* services list */
.svc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.svc-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.svc-list li:last-child { border-bottom: 1px solid var(--line); }
.svc-num {
  font-family: var(--font-display);
  font-feature-settings: "tnum";
  color: var(--accent-ink);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.svc-name { font-weight: 500; font-size: 17px; }
.svc-desc { color: var(--muted); font-size: 15px; margin-top: 4px; }

/* steps */
.steps-wrap { margin-top: 48px; }
.steps-wrap .eyebrow { margin-bottom: 20px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { border-top: 1px solid var(--ink); padding-top: 18px; }
.step-num { font-family: var(--font-display); font-size: 13px; color: var(--accent-ink); letter-spacing: 0.04em; margin-bottom: 12px; }
.step-title { font-weight: 500; margin-bottom: 6px; font-size: 17px; }
.step-body { color: var(--muted); font-size: 15px; }

/* B2C cases */
.cases-card { background: var(--bg-2); }
.cases-card .eyebrow { margin-bottom: 16px; }
.cases-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.cases-list li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
  color: var(--ink-soft);
}
.cases-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

/* alt sections */
.bg-alt { background: var(--bg-2); }
.bg-dark { background: var(--ink); color: var(--bg); }

/* pricing */
.pricing-head { text-align: center; margin: 0 auto clamp(48px, 6vw, 72px); max-width: 740px; }
.pricing-head .eyebrow { justify-content: center; }
.pricing-head h2, .pricing-head .lede { text-align: center; margin-left: auto; margin-right: auto; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price-card.featured .price-target,
.price-card.featured .price-desc,
.price-card.featured .price-included li { color: color-mix(in oklab, var(--bg) 80%, transparent); }
.price-card.featured .price-included li::before { background: var(--accent); }
.price-card.featured .price-from { color: var(--accent); }
.price-card.featured .price-from strong { color: var(--bg); }
.price-card.featured .price-name { color: var(--bg); }
.price-card.featured .btn-primary { background: var(--accent); color: #fff; }
.price-card.featured .btn-primary:hover { background: #fff; color: var(--ink); }

.price-badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.price-target {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.price-name {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.price-from { font-size: 15px; color: var(--accent-ink); }
.price-from strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 60;
}
.price-desc { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0; }
.price-included { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-included li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.price-included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--accent);
}
.price-cta { margin-top: auto; }
.price-cta .btn { width: 100%; justify-content: center; }

.pricing-howto { margin-top: 80px; }
.pricing-howto .eyebrow { justify-content: center; display: flex; margin-bottom: 24px; }
.pricing-howto .steps { max-width: 980px; margin: 0 auto; }

/* FAQ */
.faq-section { padding-top: 60px; }
.faq-container { max-width: 920px; }
.faq-head { text-align: center; margin: 0 auto clamp(40px, 5vw, 56px); }
.faq-head .eyebrow { justify-content: center; }
.faq-head h2 { text-align: center; font-size: clamp(32px, 3.8vw, 48px); }

.faq-list { display: grid; gap: 0; }
.faq-item { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  font-variation-settings: "opsz" 60;
}
.faq-q-mark {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--muted);
  transition: transform .2s;
  font-family: var(--font-body);
}
.faq-item[data-open="true"] .faq-q-mark { transform: rotate(45deg); }
.faq-a {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, margin-top .3s ease;
}
.faq-item[data-open="true"] .faq-a { max-height: 240px; margin-top: 14px; }

/* values */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.value { background: var(--bg); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; min-height: 240px; }
.value-glyph { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.value-name { font-family: var(--font-display); font-size: 26px; line-height: 1.1; font-variation-settings: "opsz" 60; }
.value-desc { color: var(--muted); font-size: 15px; line-height: 1.55; margin-top: auto; }

/* about */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.about-photo { position: sticky; top: 100px; width: 100%; }
.ph.about-photo { aspect-ratio: 4/5; }
.about-bio { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.about-bio p { margin: 0; }
.about-bio p + p { margin-top: 18px; }
.about-meta { margin-top: 28px; display: grid; gap: 0; font-size: 14px; color: var(--muted); }
.about-meta-row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); margin: 0; }
.about-meta-row:last-child { border-bottom: 1px solid var(--line); }
.about-meta-row dt { color: var(--muted-2); font-weight: 500; }
.about-meta-row dd { margin: 0; color: var(--ink-soft); }

/* testimonials */
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tm { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px; display: flex; flex-direction: column; gap: 22px; }
.tm-mark { font-family: var(--font-display); font-size: 56px; color: var(--accent); line-height: 0.6; height: 22px; font-variation-settings: "opsz" 60; }
.tm-body { font-family: var(--font-display); font-size: 19px; line-height: 1.4; color: var(--ink); flex: 1; font-variation-settings: "opsz" 24; }
.tm-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.tm-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: var(--ink); font-size: 18px; font-variation-settings: "opsz" 60; }
.tm-name { font-weight: 500; font-size: 15px; }
.tm-role { font-size: 13px; color: var(--muted); }

/* partners */
.partners-section { padding-top: 0; }
.partners-card { background: var(--bg-2); padding: clamp(40px, 5vw, 64px); }
.partners-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.partners-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-kind { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.partner-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
.partners-head h3 { margin-top: 18px; font-size: clamp(24px, 2.6vw, 32px); }

/* contact */
.contact-head { max-width: 760px; margin-bottom: 64px; }
.contact-head .eyebrow { color: var(--accent); }
.contact-head h2 { color: var(--bg); margin: 24px 0; }
.contact-head h2 em { color: var(--accent); }
.contact-head p { font-size: 18px; color: color-mix(in oklab, var(--bg) 75%, transparent); line-height: 1.55; max-width: 52ch; margin: 0; }
.contact-cta { margin-top: 32px; font-size: 16px; padding: 16px 28px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-form { display: grid; gap: 14px; }
.contact-form .eyebrow { color: var(--accent); margin-bottom: 18px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: color-mix(in oklab, var(--bg) 65%, transparent); font-weight: 500; }
.field input, .field textarea {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: inherit;
  color: var(--bg);
  resize: vertical;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 25%, transparent);
}
.field textarea { min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in oklab, var(--bg) 35%, transparent); }
.form-rgpd { font-size: 12px; color: color-mix(in oklab, var(--bg) 60%, transparent); line-height: 1.5; }
.form-rgpd a { text-decoration: underline; text-underline-offset: 2px; }
.form-submit { margin-top: 8px; justify-self: start; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-row {
  display: grid; gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-row:last-child { border-bottom: 0; }
.contact-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: color-mix(in oklab, var(--bg) 55%, transparent); font-weight: 500; }
.contact-val { font-size: 19px; color: var(--bg); font-weight: 400; }
.contact-val a:hover { color: var(--accent); }

/* footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 50px var(--pad-x);
  font-size: 13px;
  color: var(--muted);
}
.footer-inner { max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand .copyright { color: var(--muted-2); font-size: 13px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--ink); }

/* modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13,27,61,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.modal-backdrop[data-open="true"] { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform .25s ease;
  position: relative;
}
.modal-backdrop[data-open="true"] .modal { transform: translateY(0); }
.modal-side {
  background: var(--ink);
  color: var(--bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.modal-side-eyebrow { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-bottom: 12px; }
.modal-side h3 { font-family: var(--font-display); font-size: 28px; color: var(--bg); margin: 0 0 12px; line-height: 1.1; font-variation-settings: "opsz" 60; }
.modal-side .desc { font-size: 14px; opacity: 0.75; line-height: 1.55; margin: 0 0 24px; }
.modal-side .meta { display: grid; gap: 12px; font-size: 13px; opacity: 0.85; }
.modal-side .meta-row { display: flex; gap: 10px; align-items: center; }
.modal-side .meta-row svg { width: 16px; height: 16px; flex-shrink: 0; }

.modal-main { padding: 32px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; }
.modal-main iframe { width: 100%; min-height: 540px; border: 0; }
.modal-main-fallback { display: flex; flex-direction: column; gap: 16px; }
.modal-main-fallback h4 { font-family: var(--font-display); font-size: 22px; margin: 0; line-height: 1.2; font-variation-settings: "opsz" 60; }
.modal-main-fallback p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
.modal-main-fallback .btn { justify-content: center; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border: 0;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--bg);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.modal-close:hover { background: rgba(255,255,255,.22); }

/* responsive */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 16px var(--pad-x) 24px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
    margin-left: 0;
  }
  .nav.menu-open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(100% + 220px);
    left: var(--pad-x);
    margin-left: 0;
  }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { margin-top: 24px; }
  .hero-floating-card { left: 16px; bottom: -24px; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 18px; }
  .stat:first-child, .stat:nth-child(2) { border-top: 0; padding-top: 0; }

  .two-col-b2b, .two-col-b2c { grid-template-columns: 1fr; }
  .b2b-intro, .b2c-aside { position: static; }

  .values { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .tm-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; }
  .partners-grid { grid-template-columns: 1fr; gap: 24px; }
  .partners-list { grid-template-columns: 1fr; gap: 18px; }
  .modal { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
}

@media (max-width: 600px) {
  .price-card.featured { transform: none; }
  .price-badge { top: -10px; left: 24px; right: auto; }
  .clients { gap: 24px; justify-content: flex-start; }
  .client { font-size: 18px; }
}

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