:root {
      --ink: #0b1020;
      --ink-soft: #18213a;
      --paper: #f7f8fb;
      --white: #ffffff;
      --text: #3e485f;
      --muted: #69738a;
      --line: #dfe4ee;
      --brand: #4257ff;
      --brand-dark: #2839d5;
      --accent: #A8D65A;
      --accent-soft: #F0F4FF;
      --radius-sm: 14px;
      --radius: 22px;
      --radius-lg: 34px;
      --shadow: 0 24px 70px rgba(11, 16, 32, .10);
      --shadow-sm: 0 12px 32px rgba(11, 16, 32, .08);
      --container: 1180px;
      --section: clamp(76px, 9vw, 132px);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 17px;
      line-height: 1.65;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    button { cursor: pointer; }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 {
      letter-spacing: -.035em;
      line-height: 1.08;
    }
    h1 {
      margin-bottom: 24px;
      max-width: 950px;
      font-size: clamp(47px, 7.5vw, 94px);
      font-weight: 780;
    }
    h2 {
      margin-bottom: 22px;
      font-size: clamp(36px, 5vw, 65px);
      font-weight: 760;
    }
    h3 {
      margin-bottom: 14px;
      font-size: clamp(23px, 2.2vw, 31px);
      font-weight: 730;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }
    .section { padding-block: var(--section); }
    .section--soft { background: var(--paper); }
    .section--dark {
      color: var(--white);
      background: var(--ink);
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      color: var(--brand);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      width: 28px;
      height: 2px;
      content: "";
      background: currentColor;
    }
    .section--dark .eyebrow { color: #9EAAFF; }
    .lead {
      max-width: 760px;
      color: var(--text);
      font-size: clamp(19px, 2vw, 23px);
      line-height: 1.55;
    }
    .section--dark .lead { color: #c1c8da; }
    .muted { color: var(--muted); }
    .grid { display: grid; gap: 24px; }
    .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
    }
    .skip-link:focus {
      z-index: 100;
      top: 12px;
      left: 12px;
      padding: 10px 14px;
      border-radius: 8px;
      background: var(--white);
    }

    .site-header {
      position: fixed;
      z-index: 50;
      inset: 0 0 auto;
      border-bottom: 1px solid transparent;
      transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .site-header.is-scrolled {
      border-color: rgba(223, 228, 238, .8);
      background: rgba(255,255,255,.92);
      box-shadow: 0 8px 30px rgba(11,16,32,.06);
      backdrop-filter: blur(15px);
    }
    .navbar {
      min-height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 22px;
      font-weight: 850;
      letter-spacing: -.04em;
    }

    .brand-logo {
      width: 126px;
      height: auto;
      display: block;
    }
    .brand-logo--footer {
      width: 138px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 15px;
      font-weight: 690;
    }
    .nav-links a:not(.button) {
      position: relative;
      padding-block: 8px;
    }
    .nav-links a:not(.button)::after {
      position: absolute;
      width: 0;
      height: 2px;
      content: "";
      left: 0;
      bottom: 3px;
      background: var(--brand);
      transition: width .2s ease;
    }
    .nav-links a:hover::after { width: 100%; }
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: 14px;
      color: var(--ink);
      background: var(--white);
    }

    .button {
      display: inline-flex;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      gap: 11px;
      padding: 13px 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 780;
      line-height: 1.1;
      transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(11,16,32,.12);
    }
    .button--primary {
      color: var(--white);
      background: var(--brand);
    }
    .button--primary:hover { background: var(--brand-dark); }
    .button--dark {
      color: var(--white);
      background: var(--ink);
    }
    .button--light {
      border-color: var(--line);
      background: var(--white);
    }
    .button--accent {
      color: var(--ink);
      background: var(--accent);
    }
    .button svg { width: 18px; height: 18px; }

    .hero {
      position: relative;
      min-height: 820px;
      overflow: hidden;
      padding: 176px 0 86px;
      background:
        radial-gradient(circle at 85% 10%, rgba(66,87,255,.17), transparent 30%),
        radial-gradient(circle at 14% 78%, rgba(66,87,255,.10), transparent 24%),
        var(--paper);
    }
    .hero::before {
      position: absolute;
      inset: 0;
      content: "";
      opacity: .35;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(11,16,32,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11,16,32,.055) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, #000, transparent 78%);
    }
    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
      align-items: center;
      gap: 60px;
    }
    .hero-copy { position: relative; z-index: 2; }
    .hero h1 span {
      color: var(--brand);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 34px;
    }
    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 22px 30px;
      margin-top: 42px;
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
    }
    .proof-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .proof-icon {
      width: 29px;
      height: 29px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--ink);
      background: #E8EBFF;
    }
    .proof-icon svg { width: 15px; }

    .hero-visual {
      position: relative;
      min-height: 505px;
    }
    .visual-card {
      position: absolute;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.55);
      border-radius: var(--radius);
      background: rgba(255,255,255,.86);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }
    .dashboard {
      width: min(100%, 440px);
      right: 0;
      top: 35px;
      padding: 22px;
      transform: rotate(2deg);
    }
    .dashboard-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }
    .dots { display: flex; gap: 6px; }
    .dots i {
      width: 8px;
      height: 8px;
      display: block;
      border-radius: 50%;
      background: var(--line);
    }
    .chart {
      height: 190px;
      display: flex;
      align-items: end;
      gap: 9px;
      padding: 20px 18px 0;
      border-radius: 18px;
      background: var(--paper);
    }
    .chart span {
      flex: 1;
      min-width: 7px;
      border-radius: 999px 999px 4px 4px;
      background: linear-gradient(to top, var(--brand), #8090ff);
    }
    .chart span:nth-child(1) { height: 28%; }
    .chart span:nth-child(2) { height: 39%; }
    .chart span:nth-child(3) { height: 31%; }
    .chart span:nth-child(4) { height: 54%; }
    .chart span:nth-child(5) { height: 49%; }
    .chart span:nth-child(6) { height: 67%; }
    .chart span:nth-child(7) { height: 58%; }
    .chart span:nth-child(8) { height: 84%; }
    .chart span:nth-child(9) { height: 76%; }
    .chart span:nth-child(10) { height: 96%; background: var(--accent); }
    .metric-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 14px;
    }
    .metric {
      padding: 15px;
      border: 1px solid var(--line);
      border-radius: 15px;
      background: var(--white);
    }
    .metric small {
      display: block;
      margin-bottom: 4px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 750;
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    .metric strong { font-size: 17px; }
    .floating-card {
      left: 0;
      bottom: 5px;
      width: 220px;
      padding: 20px;
      transform: rotate(-5deg);
    }
    .floating-card strong {
      display: block;
      margin-bottom: 6px;
      font-size: 34px;
      line-height: 1;
    }
    .floating-card p {
      margin: 0;
      color: var(--text);
      font-size: 13px;
      line-height: 1.45;
    }
    .floating-tag {
      right: 14px;
      bottom: -5px;
      padding: 13px 18px;
      border: 0;
      border-radius: 999px;
      color: var(--ink);
      color: var(--brand);
      background: var(--white);
      box-shadow: var(--shadow-sm);
      font-size: 13px;
      font-weight: 850;
      transform: rotate(5deg);
    }

    .logo-strip {
      border-bottom: 1px solid var(--line);
      background: var(--white);
    }
    .logo-strip-inner {
      min-height: 120px;
      display: grid;
      grid-template-columns: .8fr 2.2fr;
      align-items: center;
      gap: 35px;
    }
    .logo-strip-title {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .logos {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .logo-placeholder {
      min-height: 44px;
      display: grid;
      place-items: center;
      border: 1px dashed #cfd5e0;
      border-radius: 12px;
      color: #98a1b5;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: clamp(45px, 8vw, 110px);
      align-items: end;
    }
    .intro-aside {
      padding: 28px;
      border-radius: var(--radius);
      background: var(--accent-soft);
    }
    .intro-aside strong {
      display: block;
      margin-bottom: 10px;
      font-size: 22px;
    }

    .service-grid { margin-top: 54px; }
    .service-card {
      position: relative;
      min-height: 310px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      padding: 31px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .service-card:hover {
      z-index: 2;
      border-color: rgba(66,87,255,.35);
      box-shadow: var(--shadow);
      transform: translateY(-7px);
    }
    .service-number {
      margin-bottom: 48px;
      color: var(--brand);
      font-size: 13px;
      font-weight: 850;
      letter-spacing: .08em;
    }
    .service-card p {
      margin-bottom: 24px;
      color: var(--text);
    }
    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-top: auto;
      color: var(--brand);
      font-size: 15px;
      font-weight: 820;
    }
    .text-link span {
      transition: transform .2s ease;
    }
    .text-link:hover span { transform: translateX(4px); }

    .service-card--featured {
      color: var(--white);
      background: var(--ink);
      border-color: var(--ink);
    }
    .service-card--featured p { color: #bfc7da; }
    .service-card--featured .text-link,
    .service-card--featured .service-number { color: #AAB4FF; }

    .process {
      position: relative;
    }
    .process-list {
      margin-top: 54px;
      border-top: 1px solid #2b334a;
    }
    .process-step {
      display: grid;
      grid-template-columns: 90px 1fr 1.25fr;
      gap: 35px;
      align-items: start;
      padding-block: 37px;
      border-bottom: 1px solid #2b334a;
    }
    .process-step b {
      color: #AAB4FF;
      font-size: 14px;
      letter-spacing: .08em;
    }
    .process-step h3 { margin: 0; }
    .process-step p {
      margin: 0;
      color: #adb6ca;
    }

    .project-grid { margin-top: 56px; }
    .project-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }
    .project-visual {
      position: relative;
      min-height: 310px;
      overflow: hidden;
      padding: 30px;
      background: #e8ebff;
    }
    .project-card:nth-child(2) .project-visual { background: #ebf8d9; }
    .project-card:nth-child(3) .project-visual { background: #f8eadd; }
    .mock-browser {
      height: 260px;
      overflow: hidden;
      border-radius: 15px 15px 0 0;
      background: var(--white);
      box-shadow: 0 20px 35px rgba(11,16,32,.16);
      transform: rotate(-3deg) translateY(20px);
    }
    .project-card:nth-child(2) .mock-browser { transform: rotate(3deg) translateY(20px); }
    .mock-head {
      height: 35px;
      display: flex;
      align-items: center;
      gap: 5px;
      padding-inline: 13px;
      background: #f2f3f6;
    }
    .mock-head i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #c6ccd7;
    }
    .mock-content { padding: 24px; }
    .mock-title {
      width: 68%;
      height: 20px;
      margin-bottom: 14px;
      border-radius: 999px;
      background: var(--ink);
    }
    .mock-line {
      width: 90%;
      height: 8px;
      margin-bottom: 8px;
      border-radius: 999px;
      background: #dfe4ee;
    }
    .mock-line.short { width: 55%; }
    .mock-columns {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 26px;
    }
    .mock-box {
      height: 76px;
      border-radius: 10px;
      background: #eef0ff;
    }
    .project-info { padding: 27px; }
    .project-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 14px;
    }
    .tag {
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--brand);
      background: #eef0ff;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .project-info p {
      margin-bottom: 0;
      color: var(--text);
      font-size: 15px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr .95fr;
      gap: clamp(50px, 8vw, 110px);
      align-items: center;
    }
    .about-panel {
      position: relative;
      min-height: 500px;
      padding: 42px;
      overflow: hidden;
      border-radius: var(--radius-lg);
      color: var(--white);
      background: var(--brand);
    }
    .about-panel::after {
      position: absolute;
      width: 290px;
      height: 290px;
      content: "";
      right: -110px;
      bottom: -100px;
      border: 52px solid rgba(255,255,255,.13);
      border-radius: 50%;
    }
    .about-panel blockquote {
      position: relative;
      z-index: 2;
      margin: 0;
      max-width: 470px;
      font-size: clamp(27px, 3vw, 41px);
      font-weight: 760;
      letter-spacing: -.035em;
      line-height: 1.2;
    }
    .about-panel footer {
      position: absolute;
      z-index: 2;
      left: 42px;
      bottom: 40px;
      color: #dce0ff;
      font-size: 14px;
    }
    .about-list {
      display: grid;
      gap: 16px;
      margin-top: 32px;
    }
    .about-item {
      display: grid;
      grid-template-columns: 35px 1fr;
      gap: 14px;
      align-items: start;
    }
    .about-item i {
      width: 29px;
      height: 29px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--accent-soft);
      font-style: normal;
      font-weight: 900;
    }
    .about-item strong { display: block; }
    .about-item p {
      margin: 2px 0 0;
      color: var(--text);
      font-size: 15px;
    }


    .owned-projects-card {
      padding: clamp(28px, 4vw, 46px);
      border: 1px solid #303A55;
      border-radius: var(--radius);
      background: #131B31;
      box-shadow: var(--shadow-sm);
    }
    .owned-projects-card p {
      color: #BFC7DA;
    }
    .owned-projects-card .text-link {
      color: #AAB4FF;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 70px;
    }
    .faq-list { border-top: 1px solid var(--line); }
    details {
      border-bottom: 1px solid var(--line);
    }
    summary {
      position: relative;
      padding: 24px 48px 24px 0;
      list-style: none;
      font-size: 18px;
      font-weight: 760;
      cursor: pointer;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      position: absolute;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      content: "+";
      right: 0;
      top: 22px;
      border-radius: 50%;
      color: var(--white);
      background: var(--ink);
      font-size: 20px;
      line-height: 1;
      transition: transform .2s ease;
    }
    details[open] summary::after { transform: rotate(45deg); }
    details p {
      max-width: 720px;
      padding: 0 45px 25px 0;
      color: var(--text);
    }

    .cta {
      position: relative;
      overflow: hidden;
      padding-block: clamp(75px, 9vw, 120px);
      color: var(--white);
      background: var(--brand);
    }
    .cta::before,
    .cta::after {
      position: absolute;
      content: "";
      border-radius: 50%;
      pointer-events: none;
    }
    .cta::before {
      width: 380px;
      height: 380px;
      left: -220px;
      top: -230px;
      border: 65px solid rgba(185,243,74,.85);
    }
    .cta::after {
      width: 260px;
      height: 260px;
      right: -100px;
      bottom: -170px;
      border: 52px solid rgba(255,255,255,.13);
    }
    .cta-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.35fr .65fr;
      gap: 50px;
      align-items: end;
    }
    .cta h2 { max-width: 820px; margin-bottom: 16px; }
    .cta p {
      max-width: 720px;
      margin-bottom: 0;
      color: #e4e7ff;
      font-size: 19px;
    }

    .cta .eyebrow {
      color: var(--white);
    }
    .cta .eyebrow::before {
      background: var(--accent);
    }
    .cta .button--light {
      color: var(--white);
      border-color: rgba(255,255,255,.55);
      background: transparent;
    }
    .cta .button--light:hover {
      color: var(--ink);
      background: var(--white);
    }
    .cta .button--accent {
      color: var(--ink);
      background: var(--white);
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }

    .site-footer {
      padding: 70px 0 28px;
      color: #bcc4d6;
      background: var(--ink);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .7fr .7fr;
      gap: 60px;
      padding-bottom: 48px;
    }
    .footer-brand .brand {
      margin-bottom: 18px;
      color: var(--white);
    }
    .footer-brand p {
      max-width: 470px;
      margin-bottom: 0;
    }
    .footer-title {
      margin-bottom: 18px;
      color: var(--white);
      font-size: 13px;
      font-weight: 850;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .footer-links {
      display: grid;
      gap: 10px;
      font-size: 15px;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      padding-top: 25px;
      border-top: 1px solid #2a3248;
      font-size: 13px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 980px) {
      .hero-inner,
      .intro-grid,
      .about-grid,
      .faq-wrap,
      .cta-inner {
        grid-template-columns: 1fr;
      }
      .hero { padding-top: 145px; }
      .hero-visual {
        max-width: 600px;
        width: 100%;
        min-height: 460px;
        margin-inline: auto;
      }
      .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .logo-strip-inner { grid-template-columns: 1fr; padding-block: 28px; }
      .process-step { grid-template-columns: 60px 1fr; }
      .process-step p { grid-column: 2; }
      .cta-actions { max-width: 360px; }
    }

    @media (max-width: 820px) {
      .menu-toggle { display: inline-flex; }
      .nav-links {
        position: absolute;
        display: none;
        inset: 78px 20px auto;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow);
      }
      .nav-links.is-open { display: grid; }
      .nav-links .button { width: 100%; }
      .grid--2,
      .grid--3 {
        grid-template-columns: 1fr;
      }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 620px) {
      body { font-size: 16px; }
      .container { width: min(calc(100% - 28px), var(--container)); }
      .navbar { min-height: 74px; }
      .brand-logo { width: 112px; }
      .hero {
        min-height: auto;
        padding: 125px 0 66px;
      }
      .hero-actions .button { width: 100%; }
      .hero-proof { display: grid; gap: 14px; }
      .hero-visual { min-height: 390px; }
      .dashboard {
        top: 25px;
        padding: 16px;
      }
      .chart { height: 150px; }
      .metric-row { grid-template-columns: 1fr; }
      .metric:nth-child(n+2) { display: none; }
      .floating-card { width: 185px; padding: 16px; }
      .logos { grid-template-columns: repeat(2, 1fr); }
      .service-card { min-height: 270px; padding: 25px; }
      .process-step {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .process-step p { grid-column: auto; }
      .project-visual { min-height: 250px; padding: 20px; }
      .mock-browser { height: 220px; }
      .about-panel { min-height: 430px; padding: 30px; }
      .about-panel footer { left: 30px; bottom: 28px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
      .footer-bottom { flex-direction: column; }
    }

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

/* WordPress integration */
body.admin-bar .site-header { top: 32px; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { width: 126px; height: auto; }
.wp-page-hero { padding: 170px 0 80px; background: var(--paper); }
.wp-page-hero h1 { font-size: clamp(45px, 6vw, 78px); }
.wp-page-content { padding-block: 75px 110px; }
.wp-page-content > *:first-child { margin-top: 0; }
.wp-page-content a:not(.button) { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.service-detail { scroll-margin-top: 115px; padding-block: 70px; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 0; }
.service-detail-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 105px); }
.service-detail-number { color: var(--brand); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.service-detail ul { padding-left: 20px; color: var(--text); }
.service-detail li { margin-bottom: 9px; }
.service-formats { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.service-formats span { padding: 7px 12px; border-radius: 999px; background: #EEF0FF; color: var(--brand); font-size: 12px; font-weight: 800; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 100px); }
.contact-panel { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.entry-content input:not([type="checkbox"]):not([type="radio"]),
.entry-content textarea,
.entry-content select { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.entry-content input[type="submit"], .entry-content button { min-height: 50px; padding: 12px 22px; border: 0; border-radius: 999px; color: var(--white); background: var(--brand); font-weight: 800; }
.legal-warning { padding: 18px 20px; border-left: 4px solid var(--brand); background: #EEF0FF; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
@media (max-width: 820px) { .service-detail-grid, .contact-layout { grid-template-columns: 1fr; } }

/* Documents juridiques */
.legal-document { max-width: 900px; }
.legal-document h2 { margin-top: 48px; margin-bottom: 16px; font-size: clamp(25px, 3vw, 34px); }
.legal-document h3 { margin-top: 28px; margin-bottom: 10px; font-size: 21px; }
.legal-document p, .legal-document li { color: var(--text); }
.legal-document ul { padding-left: 22px; }
.legal-updated { color: var(--muted) !important; font-size: 14px; }
.legal-note, .legal-form-box, .form-privacy-notice {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}
.form-privacy-notice { margin-top: 24px; font-size: 13px; line-height: 1.55; }
.form-privacy-notice p:last-child { margin-bottom: 0; }
.legal-table-wrap { overflow-x: auto; }
.legal-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.legal-table th, .legal-table td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { color: var(--ink); background: var(--paper); }
