:root {
      --paper: #eef6fb;
      --paper-2: #ffffff;
      --ink: #071220;
      --muted: #607086;
      --line: rgba(1, 5, 97, .11);
      --deep: #010561;
      --blue: #0061d1;
      --sky: #02adf7;
      --cyan: #00adf9;
      --soft: #dff5ff;
      --glass: rgba(255, 255, 255, .58);
      --glass-strong: rgba(255, 255, 255, .78);
      --shadow: 0 30px 80px rgba(1, 5, 97, .14);
      --display: "Inter", system-ui, sans-serif;
      --body: "Manrope", system-ui, sans-serif;
      --cw: 1320px;
      --gutter: clamp(18px, 3.8vw, 46px);
      --banner: url("../img/repair-banner.jpg");
      --banner-opacity: .34;
      --logo-w: 126px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background:
        radial-gradient(circle at 8% 8%, rgba(2, 173, 247, .18), transparent 28rem),
        radial-gradient(circle at 92% 18%, rgba(0, 97, 209, .13), transparent 30rem),
        linear-gradient(180deg, #f6fbff 0%, var(--paper) 48%, #f9fcff 100%);
      color: var(--ink);
      font-family: var(--body);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .55;
      background-image:
        linear-gradient(rgba(1, 5, 97, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 5, 97, .035) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(180deg, #000, transparent 75%);
      z-index: -1;
    }

    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { border: 0; cursor: pointer; }
    img { display: block; max-width: 100%; }
    ::selection { background: var(--sky); color: white; }

    .shell { max-width: var(--cw); margin: 0 auto; }
    .glass {
      background: var(--glass);
      border: 1px solid rgba(255, 255, 255, .84);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95), var(--shadow);
      backdrop-filter: blur(18px);
    }

    .topbar {
      position: sticky;
      top: 16px;
      z-index: 20;
      padding: 0 var(--gutter);
      transition: transform .32s ease;
    }

    .nav {
      max-width: var(--cw);
      min-height: 70px;
      margin: 0 auto;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 9px 9px 9px 22px;
      background: rgba(255, 255, 255, .58);
      border: 1px solid rgba(255,255,255,.86);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.94), 0 16px 42px rgba(1, 5, 97, .12);
      backdrop-filter: blur(20px);
      overflow: hidden;
      position: relative;
    }
    .nav::before {
      content: "";
      position: absolute;
      inset: -60% auto auto 8%;
      width: 260px;
      height: 120px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(2,173,247,.28), transparent 68%);
      pointer-events: none;
    }
    .nav > * { position: relative; z-index: 1; }

    .brand { display: flex; align-items: center; gap: 12px; min-width: 150px; }
    .brand img { width: var(--logo-w); height: auto; }
    .links {
      display: flex;
      gap: 4px;
      color: #40536b;
      font-weight: 800;
      font-size: 14px;
      background: rgba(255,255,255,.38);
      border: 1px solid rgba(255,255,255,.72);
      border-radius: 22px;
      padding: 4px;
    }
    .links a {
      border-radius: 16px;
      padding: 9px 12px;
      transition: color .24s, transform .32s cubic-bezier(.34,1.56,.64,1), background .24s;
    }
    .links a:hover { color: var(--deep); background: rgba(255,255,255,.86); transform: translateY(-2px); }

    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .lang {
      display: flex;
      align-items: center;
      gap: 4px;
      color: var(--deep);
      font-weight: 900;
      font-size: 13px;
      padding: 6px 8px;
      border-radius: 16px;
      background: rgba(255,255,255,.62);
    }
    .lang-opt {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 7px;
      border-radius: 12px;
      color: #8494a6;
      transition: color .24s, background .24s;
    }
    .lang-opt:hover { color: var(--deep); background: rgba(255,255,255,.86); }
    .lang-opt.active { color: var(--deep); background: rgba(255,255,255,.9); }
    .lang-sep { color: rgba(1,5,97,.22); font-weight: 700; }
    .flag {
      width: 20px;
      height: 14px;
      flex: none;
      display: block;
      border-radius: 3px;
      box-shadow: 0 0 0 1px rgba(1,5,97,.16);
    }
    .lang-opt:not(.active) .flag { filter: saturate(.35); }
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      place-items: center;
      border-radius: 16px;
      color: var(--deep);
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: 0 10px 22px rgba(1,5,97,.08);
    }
    .menu-toggle svg {
      width: 23px;
      height: 23px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 17px;
      background: var(--ink);
      color: white;
      font-family: var(--display);
      font-weight: 900;
      box-shadow: 0 14px 30px rgba(7,18,32,.16);
      transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s, background .28s, color .28s;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-4px); background: var(--sky); color: var(--deep); box-shadow: 0 18px 36px rgba(2,173,247,.28); }
    .btn.secondary { background: rgba(255,255,255,.68); color: var(--deep); border: 1px solid rgba(255,255,255,.9); }
    .btn.secondary:hover { background: var(--deep); color: white; }
    .btn.full { width: 100%; }

    section { padding: clamp(58px, 8vw, 98px) var(--gutter); position: relative; }
    .hero { padding-top: clamp(108px, 12vw, 132px); }
    .hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 14px;
      border-radius: 999px;
      color: var(--deep);
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(255,255,255,.9);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      box-shadow: 0 10px 30px rgba(1,5,97,.08);
    }
    .eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 6px rgba(2,173,247,.16); }

    h1, h2, h3 { font-family: var(--display); margin: 0; letter-spacing: 0; }
    h1 {
      margin-top: 22px;
      font-size: clamp(48px, 7vw, 86px);
      line-height: .94;
      max-width: 760px;
      font-weight: 900;
    }
    h1 span { color: var(--blue); }
    .lead { color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.75; max-width: 650px; margin: 24px 0 0; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
    .trust { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin-top: 34px; }
    .trust span {
      min-height: 84px;
      display: grid;
      gap: 8px;
      place-items: center;
      text-align: center;
      padding: 12px;
      border-radius: 20px;
      color: var(--deep);
      font-weight: 900;
      font-size: 14px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: 0 14px 34px rgba(1,5,97,.08);
    }
    .trust svg {
      width: 24px;
      height: 24px;
      color: var(--blue);
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .booking {
      border-radius: 34px;
      padding: clamp(20px, 3vw, 30px);
      position: relative;
      overflow: hidden;
    }
    .booking::before, .card::before, .promo::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0;
      transition: opacity .35s;
      background: radial-gradient(340px circle at var(--gx,50%) var(--gy,50%), rgba(2,173,247,.18), transparent 62%);
    }
    .booking:hover::before, .card:hover::before, .promo:hover::before { opacity: 1; }
    .booking > * { position: relative; z-index: 1; }
    .booking-head { display: flex; align-items: start; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
    .booking h2 { font-size: clamp(28px, 4vw, 38px); }
    .booking p { color: var(--muted); line-height: 1.65; margin: 8px 0 0; }
    .steps { display: flex; gap: 7px; margin: 22px 0; }
    .steps i { flex: 1; height: 6px; border-radius: 99px; background: rgba(1,5,97,.1); }
    .steps i.active { background: linear-gradient(90deg, var(--blue), var(--sky)); }

    .step { display: none; animation: rise .48s ease both; }
    .step.active { display: block; }
    .question { font-weight: 900; font-family: var(--display); font-size: 22px; margin-bottom: 16px; }
    .options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .option {
      min-height: 60px;
      padding: 15px;
      border-radius: 18px;
      border: 1px solid rgba(1,5,97,.1);
      background: rgba(255,255,255,.66);
      color: var(--deep);
      font-weight: 900;
      text-align: left;
      transition: transform .22s, background .22s, border-color .22s;
    }
    .option small { display: block; color: var(--muted); margin-top: 7px; font-weight: 700; line-height: 1.4; }
    .option .service-note { display: block; }
    .option .service-price {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin-top: 8px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(2, 128, 232, .12);
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      line-height: 1.15;
      box-shadow: inset 0 0 0 1px rgba(2, 128, 232, .24);
    }
    .option.selected .service-price,
    .option:hover .service-price {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 8px 18px rgba(2, 128, 232, .18);
    }
    .option:hover, .option.selected { transform: translateY(-3px); background: var(--soft); border-color: rgba(2,173,247,.55); }
    .field { width: 100%; min-height: 54px; border-radius: 16px; border: 1px solid rgba(1,5,97,.12); background: rgba(255,255,255,.72); padding: 0 16px; color: var(--ink); outline: 0; }
    textarea.field { min-height: 112px; padding-top: 14px; resize: vertical; }
    .field:focus { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(2,173,247,.12); }
    .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .form-grid .wide { grid-column: 1 / -1; }
    .note { color: var(--muted); font-size: 13px; line-height: 1.6; margin-top: 14px; }
    .booking-actions { display: flex; gap: 10px; margin-top: 18px; }

    .section-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
    .section-head h2 { font-size: clamp(36px, 5vw, 58px); line-height: 1; margin-top: 14px; }
    .section-head p { color: var(--muted); line-height: 1.65; max-width: 450px; margin: 0; transform: translateY(-12px); }

    .promo {
      max-width: var(--cw);
      margin: 0 auto;
      border-radius: 34px;
      min-height: 330px;
      padding: clamp(44px, 6vw, 68px);
      color: white;
      overflow: hidden;
      position: relative;
      background:
        radial-gradient(circle at 85% 10%, rgba(2,173,247,.55), transparent 25rem),
        linear-gradient(135deg, var(--deep), var(--blue));
      box-shadow: 0 34px 90px rgba(1,5,97,.24);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }
    .promo .eyebrow { color: white; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }
    .promo h2 { font-size: clamp(34px, 5vw, 62px); margin: 16px 0 12px; }
    .promo p { color: rgba(255,255,255,.78); line-height: 1.75; max-width: 640px; }
    .promo .btn { background: white; color: var(--deep); }
    .promo > * { position: relative; z-index: 2; }
    .promo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--banner) center/cover no-repeat;
      opacity: var(--banner-opacity);
      mix-blend-mode: luminosity;
      -webkit-mask-image: linear-gradient(90deg, transparent 20%, rgba(0,0,0,.75) 72%, #000);
      mask-image: linear-gradient(90deg, transparent 20%, rgba(0,0,0,.75) 72%, #000);
      pointer-events: none;
      z-index: 0;
    }

    .grid { display: grid; gap: 16px; }
    .services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card {
      position: relative;
      overflow: hidden;
      border-radius: 26px;
      padding: 24px;
      background: rgba(255,255,255,.64);
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: 0 18px 48px rgba(1,5,97,.08);
      transition: transform .32s cubic-bezier(.34,1.56,.64,1), box-shadow .32s;
    }
    .card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(1,5,97,.13); }
    .card > * { position: relative; z-index: 1; }
    .icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--blue), var(--sky));
      color: white;
      font-weight: 900;
      margin-bottom: 20px;
    }
    .icon svg {
      width: 25px;
      height: 25px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .card h3 { font-size: 22px; margin-bottom: 10px; }
    .card p { color: var(--muted); line-height: 1.65; margin: 0 0 20px; }
    .price { color: var(--blue); font-family: var(--display); font-size: 20px; font-weight: 900; }

    .marquee {
      overflow: hidden;
      margin-top: 22px;
      padding: 8px 0 12px;
      mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    }
    .track { display: flex; gap: 14px; width: max-content; animation: slide 30s linear infinite; }
    .marquee:hover .track { animation-play-state: paused; }
    .brand-chip {
      width: 166px;
      height: 96px;
      border-radius: 26px;
      display: grid;
      place-items: center;
      padding: 18px 22px;
      background: rgba(255,255,255,.58);
      border: 1px solid rgba(255,255,255,.72);
      box-shadow: 0 6px 16px rgba(1,5,97,.035);
      transition: transform .28s cubic-bezier(.34,1.56,.64,1), background .28s, box-shadow .28s;
    }
    .brand-chip:hover {
      transform: translateY(-3px);
      background: rgba(255,255,255,.82);
      box-shadow: 0 8px 20px rgba(1,5,97,.055);
    }
    .brand-chip img {
      max-width: 100%;
      max-height: 52px;
      object-fit: contain;
      filter: saturate(1.04) contrast(1.02);
    }

    .about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 66px); align-items: center; }
    .about-copy p { color: var(--muted); line-height: 1.8; font-size: 17px; }
    .repair-scene {
      min-height: 470px;
      border-radius: 38px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(150deg, rgba(1,5,97,.6), rgba(0,97,209,.4) 52%, rgba(2,173,247,.3)),
        var(--banner) center/cover no-repeat,
        radial-gradient(circle at 74% 18%, rgba(2,173,247,.75), transparent 18rem),
        linear-gradient(145deg, #05113e, #0061d1 55%, #02adf7);
      background-blend-mode: normal, normal, luminosity, normal, normal;
      box-shadow: 0 42px 90px rgba(1,5,97,.22);
    }
    .repair-scene .device, .repair-scene .tools-dot { display: none; }
    .repair-scene::before {
      content: "";
      position: absolute;
      inset: 38px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.2);
      background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
    }
    .device {
      position: absolute;
      right: 70px;
      top: 70px;
      width: 170px;
      height: 310px;
      border-radius: 34px;
      background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(210,244,255,.58));
      border: 10px solid rgba(255,255,255,.78);
      transform: rotate(-10deg);
      box-shadow: 0 30px 70px rgba(0,0,0,.28);
    }
    .device::before { content: ""; position: absolute; left: 36px; right: 36px; top: 16px; height: 7px; border-radius: 8px; background: rgba(1,5,97,.2); }
    .tools-dot { position: absolute; width: 74px; height: 74px; border-radius: 22px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.2); }
    .tools-dot.one { left: 64px; top: 88px; }
    .tools-dot.two { left: 150px; top: 178px; width: 48px; height: 48px; }

    .why { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    #faq .section-head h2 { font-size: clamp(34px, 4.4vw, 52px); }
    #faq .section-head {
      display: block;
      text-align: center;
    }
    #faq .eyebrow { margin: 0 auto; }
    .faq-list { display: grid; gap: 10px; max-width: 920px; margin: 0 auto; }
    details {
      border-radius: 22px;
      padding: 20px 22px;
      background: rgba(255,255,255,.66);
      border: 1px solid rgba(255,255,255,.92);
      box-shadow: 0 14px 34px rgba(1,5,97,.07);
    }
    summary { cursor: pointer; font-family: var(--display); font-weight: 900; color: var(--deep); }
    details p { color: var(--muted); line-height: 1.7; margin: 12px 0 0; }

    .contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 18px; align-items: stretch; }
    .contact-grid > .card { height: 100%; }
    #contactForm { display: flex; flex-direction: column; }
    #contactForm .form-grid { grid-template-columns: 1fr; }
    #contactForm textarea.field { min-height: 132px; }
    .contact-info > p { color: var(--muted); line-height: 1.65; margin: 5px 0 0; }
    .contact-items { display: grid; gap: 16px; margin-top: 22px; }
    .contact-item { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: start; }
    .contact-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: white;
      background: linear-gradient(135deg, var(--blue), var(--sky));
      box-shadow: 0 12px 28px rgba(0,97,209,.18);
    }
    .contact-icon svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .contact-item strong { display: block; color: var(--deep); margin: 0 0 5px; }
    .contact-item p { color: var(--muted); line-height: 1.65; margin: 0; }

    footer {
      padding: 70px var(--gutter) 118px;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 0%, rgba(2,173,247,.14), transparent 26rem),
        linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.72) 28%, #eef6fb 100%);
    }
    .footer-grid {
      max-width: var(--cw);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }
    .footer-panel {
      min-height: 100%;
      padding: 22px;
      border-radius: 30px;
      background: rgba(255,255,255,.58);
      border: 1px solid rgba(255,255,255,.86);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 22px rgba(1,5,97,.045);
      backdrop-filter: blur(18px);
    }
    .footer-brand img {
      width: 156px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      filter: none;
    }
    footer h3 { font-size: 16px; margin: 0 0 13px; color: var(--deep); }
    footer p, footer a { color: #596b80; line-height: 1.75; }
    footer p { margin: 0; }
    .footer-links { display: grid; gap: 8px; }
    .footer-links a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 800;
      transition: color .22s, transform .22s;
    }
    .footer-links a:hover { color: var(--blue); transform: translateX(3px); }
    .footer-links svg, .footer-meta svg, .footer-wa svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
      stroke-width: 1.8;
    }
    .footer-wa {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 46px;
      margin-top: 18px;
      padding: 0 16px;
      border-radius: 18px;
      color: white;
      background: var(--ink);
      font-family: var(--display);
      font-weight: 900;
      box-shadow: 0 14px 28px rgba(7,18,32,.14);
    }
    .footer-wa:hover { color: var(--deep); background: var(--sky); transform: translateY(-3px); }
    .social {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 18px;
    }
    .social a {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: var(--deep);
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: 0 8px 20px rgba(1,5,97,.06);
      transition: transform .28s cubic-bezier(.34,1.56,.64,1), background .28s, color .28s, box-shadow .28s;
    }
    .social a svg { width: 19px; height: 19px; fill: currentColor; }
    .social a:hover { transform: translateY(-4px); color: white; box-shadow: 0 14px 28px rgba(1,5,97,.18); }
    .social a.fb:hover { background: #1877f2; }
    .social a.ig:hover { background: linear-gradient(45deg, #f09433, #dc2743 45%, #bc1888); }
    .social a.tt:hover { background: #010101; }
    .social a.wa:hover { background: #25d366; }
    .social a.xt:hover { background: #000000; }
    .social a.yt:hover { background: #ff0000; }
    .social a.li:hover { background: #0a66c2; }
    .social-title {
      display: block;
      margin-top: 20px;
      color: #7a8798;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .footer-meta { display: grid; gap: 12px; }
    .footer-meta span {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #596b80;
      line-height: 1.6;
      font-weight: 700;
    }
    .legal a { color: var(--deep); font-weight: 800; transition: color .24s; }
    .legal a:hover { color: var(--blue); }
    .legal a + a::before { content: " · "; color: rgba(1,5,97,.22); font-weight: 700; }
    .legal {
      max-width: var(--cw);
      margin: 18px auto 0;
      padding: 18px 22px;
      border-radius: 24px;
      background: rgba(255,255,255,.48);
      border: 1px solid rgba(255,255,255,.78);
      box-shadow: 0 6px 18px rgba(1,5,97,.035);
      color: #6a7b8d;
      font-size: 13px;
      line-height: 1.7;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .dock {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translate(-50%, 120px);
      z-index: 30;
      display: flex;
      align-items: center;
      gap: 10px;
      width: min(560px, calc(100% - 32px));
      padding: 10px;
      border-radius: 22px;
      background: rgba(255,255,255,.76);
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 18px 52px rgba(7,18,32,.16);
      backdrop-filter: blur(18px);
      transition: transform .32s cubic-bezier(.34,1.56,.64,1);
    }
    .dock.up { transform: translate(-50%, 0); }
    .dock-wa {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      flex: 0 0 58px;
      border-radius: 14px;
      color: white;
      background: #25d366;
      box-shadow: 0 12px 28px rgba(37, 211, 102, .28);
      transition: transform .28s cubic-bezier(.34,1.56,.64,1), background .28s, box-shadow .28s;
    }
    .dock-wa:hover { transform: translateY(-3px); background: #128c7e; box-shadow: 0 16px 34px rgba(18, 140, 126, .3); }
    .dock-wa svg { width: 29px; height: 29px; fill: currentColor; }
    .whatsapp-btn {
      background: #25d366;
      color: #fff;
      box-shadow: 0 14px 30px rgba(37, 211, 102, .24);
    }
    .whatsapp-btn:hover {
      background: #128c7e;
      color: #fff;
      box-shadow: 0 18px 36px rgba(18, 140, 126, .28);
    }
    .whatsapp-btn svg { width: 21px; height: 21px; fill: currentColor; }
    .dock-book {
      min-height: 58px;
      flex: 1;
      border-radius: 14px;
      font-size: 16px;
    }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s, transform .75s; }
    .reveal.in { opacity: 1; transform: none; }
    @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
    @keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    @media (max-width: 1180px) and (min-width: 901px) {
      .nav { padding-left: 15px; gap: 9px; }
      .brand { min-width: 0; }
      .brand img { width: calc(var(--logo-w) * .86); }
      .links { gap: 1px; font-size: 13px; }
      .links a { padding: 9px 8px; }
      .nav-actions { gap: 7px; }
      .lang { gap: 2px; padding: 5px 5px; font-size: 12px; }
      .lang-opt { gap: 5px; padding: 4px 5px; }
      .flag { width: 18px; height: 12.5px; }
      .nav-actions .btn { padding: 0 15px; }
    }

    @media (max-width: 900px) {
      .nav { overflow: visible; }
      .links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px;
        border-radius: 22px;
        background: rgba(255,255,255,.92);
        box-shadow: 0 18px 42px rgba(1,5,97,.14);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .24s, transform .24s;
      }
      .nav.menu-open .links { opacity: 1; pointer-events: auto; transform: none; }
      .links a { padding: 13px 14px; }
      .menu-toggle { display: grid; }
      .hero-grid, .about-grid, .contact-grid, .promo { grid-template-columns: 1fr; }
      .trust, .services, .why { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .section-head { display: block; }
      .section-head p { margin-top: 14px; transform: none; }
      .faq-list { max-width: none; margin: 0; }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 620px) {
      .topbar { top: 10px; padding: 0 12px; }
      section { padding: 48px 14px; }
      .hero { padding-top: 90px; }
      .nav { min-height: 64px; border-radius: 22px; padding: 8px 8px 8px 14px; gap: 8px; }
      .brand { min-width: 0; }
      .brand img { width: calc(var(--logo-w) * .84); }
      .links .lang { display: flex; }
      .nav-actions { gap: 7px; }
      .nav .btn { min-height: 42px; padding: 0 12px; font-size: 12px; border-radius: 14px; }
      .menu-toggle { width: 42px; height: 42px; border-radius: 14px; }
      .services, .why, .options, .form-grid, .footer-grid { grid-template-columns: 1fr; }
      .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .form-grid .wide { grid-column: auto; }
      .booking-actions { flex-direction: column; }
      h1 { font-size: 56px; line-height: .98; }
      .lead { font-size: 16px; line-height: 1.65; }
      .hero-actions .btn { width: 100%; }
      .trust { gap: 10px; }
      .booking { border-radius: 26px; padding: 18px; }
      .promo { min-height: 280px; padding: 34px 22px; border-radius: 26px; }
      .promo h2, .section-head h2, #faq .section-head h2 { font-size: 36px; }
      .card { border-radius: 22px; padding: 20px; }
      .repair-scene { min-height: 380px; }
      .device { right: 38px; top: 52px; width: 132px; height: 246px; }
      .contact-item { grid-template-columns: 40px 1fr; }
      .contact-icon { width: 40px; height: 40px; }
      .legal { display: block; }
      .dock { width: calc(100% - 24px); padding: 8px; }
      .dock-wa { width: 52px; height: 52px; flex-basis: 52px; }
      .dock-book { min-height: 52px; width: 100%; }
    }

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

    /* ---- shared page extras ---- */
    .page-hero { text-align: center; }
    .page-hero .eyebrow { margin: 0 auto; }
    .page-hero h1 { margin-left: auto; margin-right: auto; }
    .page-hero .lead { margin-left: auto; margin-right: auto; }
    .page-hero .hero-actions { justify-content: center; }

    .map-frame {
      position: relative;
      height: 460px;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: 0 28px 70px rgba(1,5,97,.13);
      background: rgba(255,255,255,.6);
    }
    .map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05); }
    .map-note {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: 16px;
      padding: 16px 20px;
      border-radius: 22px;
      background: rgba(255,255,255,.64);
      border: 1px solid rgba(255,255,255,.9);
      color: var(--muted);
      line-height: 1.6;
    }
    .map-note strong { color: var(--deep); }

    /* ---- blog ---- */
    .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .post-card { padding: 0; display: flex; flex-direction: column; }
    .post-thumb {
      position: relative;
      height: 196px;
      overflow: hidden;
      background:
        linear-gradient(160deg, rgba(1,5,97,.55), rgba(2,173,247,.26)),
        var(--banner) center/cover no-repeat,
        linear-gradient(145deg, #05113e, #0061d1 58%, #02adf7);
      background-blend-mode: normal, luminosity, normal;
      transition: filter .35s ease;
    }
    .post-card:hover .post-thumb { filter: saturate(1.15) brightness(1.06); }
    .post-card:nth-child(3n+2) .post-thumb { background-position: 24% center; }
    .post-card:nth-child(3n) .post-thumb { background-position: 78% center; }
    .post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
    .post-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 12.5px;
      font-weight: 800;
      letter-spacing: .02em;
    }
    .tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      border-radius: 999px;
      background: var(--soft);
      color: var(--deep);
      font-size: 11.5px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .post-card h3 { font-size: 21px; line-height: 1.25; margin: 14px 0 10px; }
    .post-card p { color: var(--muted); line-height: 1.65; margin: 0 0 18px; }
    .read-more {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--blue);
      font-family: var(--display);
      font-weight: 900;
      transition: gap .25s ease;
    }
    .read-more:hover { gap: 14px; }
    .read-more svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

    /* ---- long-form article & legal documents ---- */
    .doc { max-width: 880px; margin: 0 auto; }
    .doc > p, .doc li { color: var(--muted); line-height: 1.85; font-size: 17px; }
    .doc h2 {
      font-size: clamp(26px, 3.2vw, 34px);
      line-height: 1.2;
      margin: 42px 0 14px;
      scroll-margin-top: 120px;
    }
    .doc h3 { font-size: 20px; margin: 28px 0 10px; }
    .doc ul { padding-left: 20px; margin: 0 0 18px; display: grid; gap: 9px; }
    .doc li::marker { color: var(--sky); }
    .doc blockquote {
      margin: 26px 0;
      padding: 20px 24px;
      border-radius: 22px;
      border-left: 4px solid var(--sky);
      background: rgba(255,255,255,.64);
      color: var(--deep);
      font-weight: 700;
      line-height: 1.7;
    }
    .doc-figure {
      height: 300px;
      border-radius: 30px;
      margin: 30px 0;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(1,5,40,.08) 42%, rgba(1,5,40,.7)),
        linear-gradient(150deg, rgba(1,5,97,.55), rgba(2,173,247,.28) 60%),
        var(--banner) center/cover no-repeat,
        linear-gradient(145deg, #05113e, #0061d1 58%, #02adf7);
      background-blend-mode: normal, normal, luminosity, normal;
      box-shadow: 0 28px 70px rgba(1,5,97,.2);
    }
    .doc-figure span {
      position: absolute;
      left: 28px;
      bottom: 26px;
      right: 28px;
      color: rgba(255,255,255,.9);
      font-family: var(--display);
      font-weight: 900;
      font-size: 22px;
      line-height: 1.25;
    }
    .doc-updated {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,.64);
      border: 1px solid rgba(255,255,255,.9);
      color: var(--deep);
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 8px;
    }
    .toc {
      border-radius: 26px;
      padding: 22px 24px;
      background: rgba(255,255,255,.64);
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: 0 18px 48px rgba(1,5,97,.08);
      margin-bottom: 12px;
    }
    .toc strong { display: block; font-family: var(--display); color: var(--deep); margin-bottom: 12px; }
    .toc ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; color: var(--muted); line-height: 1.6; }
    .toc a:hover { color: var(--blue); }
    .doc-share {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 38px;
      padding-top: 26px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-weight: 800;
    }

    @media (max-width: 1080px) {
      .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 760px) {
      .blog-grid { grid-template-columns: 1fr; }
      .map-frame { height: 340px; border-radius: 24px; }
      .doc-figure { height: 220px; border-radius: 24px; }
      .doc h2 { margin-top: 32px; }
    }

    /* ---- WordPress core & editor output ---- */
    .alignleft { float: left; margin: 6px 24px 18px 0; }
    .alignright { float: right; margin: 6px 0 18px 24px; }
    .aligncenter { display: block; margin-left: auto; margin-right: auto; }
    .alignwide, .alignfull { max-width: none; }
    .wp-caption { max-width: 100%; }
    .wp-caption-text, figcaption { color: var(--muted); font-size: 14px; margin-top: 8px; text-align: center; }
    .screen-reader-text {
      position: absolute !important;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
    }
    .skip-link:focus {
      position: fixed; top: 12px; left: 12px; z-index: 999;
      width: auto; height: auto; clip: auto;
      padding: 12px 18px; border-radius: 14px;
      background: var(--ink); color: #fff; font-weight: 900;
    }
    .doc img, .doc iframe { max-width: 100%; border-radius: 22px; }
    .doc figure { margin: 26px 0; }
    .doc table { width: 100%; border-collapse: collapse; margin: 22px 0; }
    .doc th, .doc td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
    .doc a { color: var(--blue); font-weight: 800; }
    .post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .post-thumb.has-image { background: none; }
    a.post-thumb { display: block; }
    .post-card h3 a, .card h3 a { color: inherit; }
    .post-card h3 a:hover, .card h3 a:hover { color: var(--blue); }

    /* pagination */
    .pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 38px; }
    .pagination .page-numbers {
      min-width: 46px; min-height: 46px;
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0 14px; border-radius: 16px;
      background: rgba(255,255,255,.64);
      border: 1px solid rgba(255,255,255,.9);
      color: var(--deep); font-family: var(--display); font-weight: 900;
      transition: transform .28s cubic-bezier(.34,1.56,.64,1), background .28s, color .28s;
    }
    .pagination .page-numbers:hover { transform: translateY(-3px); background: var(--sky); color: #fff; }
    .pagination .page-numbers.current { background: var(--ink); color: #fff; }

    /* form feedback */
    .form-msg { margin-top: 14px; padding: 13px 16px; border-radius: 16px; font-weight: 800; line-height: 1.6; display: none; }
    .form-msg.show { display: block; }
    .form-msg.ok { background: rgba(2,173,247,.12); color: var(--deep); }
    .form-msg.error { background: rgba(220,20,60,.09); color: #b3122f; }
    .field.invalid { border-color: #dc143c; box-shadow: 0 0 0 4px rgba(220,20,60,.1); }
    .btn.is-busy { opacity: .65; pointer-events: none; }
    .empty-note { color: var(--muted); line-height: 1.7; }


    .dock .dock-wa,
    body .dock .dock-wa {
      background: #25d366 !important;
      background-image: none !important;
      color: #fff !important;
      box-shadow: 0 12px 28px rgba(37, 211, 102, .32) !important;
    }
    .dock .dock-wa:hover,
    body .dock .dock-wa:hover {
      background: #128c7e !important;
      background-image: none !important;
      box-shadow: 0 16px 34px rgba(18, 140, 126, .34) !important;
    }
    .dock .dock-wa svg {
      width: 31px !important;
      height: 31px !important;
      fill: currentColor !important;
      stroke: none !important;
    }
/* Force visible language switcher in the header. */
.nav-actions .lang { display: flex !important; flex-shrink: 0; }
.nav-actions .lang-opt { text-decoration: none; }
@media (max-width: 900px) { .nav-actions .lang { display: flex !important; } }

/* Visible fixed header language switcher. */
.nav { overflow: visible; }
.nav-actions { position: relative; flex-shrink: 0; }
.nav-actions .lang {
  display: flex !important;
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  transform: translateY(-50%);
  z-index: 30;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(1,5,97,.08);
}
@media (max-width: 900px) {
  .nav-actions .lang { position: static; transform: none; right: auto; }
}
@media (max-width: 560px) {
  .nav-actions .lang { font-size: 11px; padding: 4px; }
  .nav-actions .lang .flag { display: none; }
}

/* Floating WhatsApp shortcut */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 34px rgba(13, 30, 50, .22);
}
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 640px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}


/* Keep only the bottom-right WhatsApp shortcut */
.dock, .dock-book { display: none !important; }
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 34px rgba(13, 30, 50, .22);
}
.floating-whatsapp svg { width: 28px; height: 28px; }
@media (max-width: 640px) { .floating-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; } }


/* Booking selected choices in red */
.booking-card .option.selected,
.booking-card .option.selected:hover {
  background: #fff5f5 !important;
  border-color: #e11931 !important;
  color: #e11931 !important;
  box-shadow: 0 14px 28px rgba(225, 25, 49, .16) !important;
}
.booking-card .option.selected strong,
.booking-card .option.selected small,
.booking-card .option.selected .service-note,
.booking-card .option.selected .service-price {
  color: #e11931 !important;
}
.booking-card .option.selected .service-price.is-tbd {
  background: rgba(225, 25, 49, .1) !important;
  color: #e11931 !important;
}
.booking-card .field:focus,
.booking-card select.field:focus,
.booking-card textarea.field:focus {
  border-color: #e11931 !important;
  box-shadow: 0 0 0 4px rgba(225, 25, 49, .12) !important;
}
.booking-card select.field:has(option:checked:not(:first-child)) {
  border-color: #e11931 !important;
  color: #e11931 !important;
}
.booking-card input[type=radio],
.booking-card input[type=checkbox] {
  accent-color: #e11931;
}


/* Booking selected choices actual form in red */
.ulynk-booking .option.selected,
.ulynk-booking .option.selected:hover,
.booking .option.selected,
.booking .option.selected:hover {
  background: #fff5f5 !important;
  border-color: #e11931 !important;
  color: #e11931 !important;
  box-shadow: 0 14px 28px rgba(225, 25, 49, .16) !important;
}
.ulynk-booking .option.selected strong,
.ulynk-booking .option.selected small,
.ulynk-booking .option.selected .service-note,
.ulynk-booking .option.selected .service-price,
.booking .option.selected strong,
.booking .option.selected small,
.booking .option.selected .service-note,
.booking .option.selected .service-price {
  color: #e11931 !important;
}
.ulynk-booking .option.selected .service-price.is-tbd,
.booking .option.selected .service-price.is-tbd {
  background: rgba(225, 25, 49, .1) !important;
  color: #e11931 !important;
}
.ulynk-booking .field:focus,
.ulynk-booking select.field:focus,
.ulynk-booking textarea.field:focus,
.booking .field:focus,
.booking select.field:focus,
.booking textarea.field:focus {
  border-color: #e11931 !important;
  box-shadow: 0 0 0 4px rgba(225, 25, 49, .12) !important;
}
.ulynk-booking select.field:has(option:checked:not(:first-child)),
.booking select.field:has(option:checked:not(:first-child)) {
  border-color: #e11931 !important;
  color: #e11931 !important;
}
.ulynk-booking input[type=radio],
.ulynk-booking input[type=checkbox],
.booking input[type=radio],
.booking input[type=checkbox] {
  accent-color: #e11931;
}


/* Booking option palette without blue */
.ulynk-booking .option,
.booking .option {
  color: #0b1220 !important;
}
.ulynk-booking .option small,
.ulynk-booking .option .service-note,
.booking .option small,
.booking .option .service-note {
  color: #5f6f85 !important;
}
.ulynk-booking .option .service-price,
.booking .option .service-price {
  background: #fff1f2 !important;
  border: 1px solid rgba(225, 25, 49, .28) !important;
  color: #d9162d !important;
  box-shadow: none !important;
}
.ulynk-booking .option:hover,
.booking .option:hover {
  background: #fff8f8 !important;
  border-color: rgba(225, 25, 49, .35) !important;
}
.ulynk-booking .option.selected,
.ulynk-booking .option.selected:hover,
.booking .option.selected,
.booking .option.selected:hover {
  background: #fff3f4 !important;
  border-color: #e11931 !important;
  color: #b90f24 !important;
  box-shadow: 0 12px 26px rgba(225, 25, 49, .12) !important;
}
.ulynk-booking .option.selected small,
.ulynk-booking .option.selected .service-note,
.booking .option.selected small,
.booking .option.selected .service-note {
  color: #7a4650 !important;
}
.ulynk-booking .option.selected .service-price,
.booking .option.selected .service-price {
  background: #e11931 !important;
  border-color: #e11931 !important;
  color: #fff !important;
}
.ulynk-booking .steps i.active,
.booking .steps i.active {
  background: linear-gradient(90deg, #e11931, #ff6b7a) !important;
}
