
/* WordPress isolation and active-theme compatibility */
body.tb-landing-page { margin: 0 !important; padding: 0 !important; max-width: none !important; background: #fff !important; }
body.tb-landing-page .tb-site { width: 100%; min-height: 100vh; overflow-x: clip; }
body.tb-landing-page .tb-site *, body.tb-landing-page .tb-site *::before, body.tb-landing-page .tb-site *::after { box-sizing: border-box; }
body.tb-landing-page .tb-site :where(h1,h2,h3,p,ul,ol,figure) { max-width: none; }
body.tb-landing-page .tb-site :where(a,button,input,textarea,select) { font-family: inherit; }
body.tb-landing-page .tb-site header, body.tb-landing-page .tb-site footer, body.tb-landing-page .tb-site main { margin: 0; padding-left: 0; padding-right: 0; max-width: none; }
body.admin-bar.tb-landing-page header { top: 32px; }
@media (max-width: 782px) { body.admin-bar.tb-landing-page header { top: 46px; } }

:root {
      --ink: #171a19;
      --charcoal: #202423;
      --charcoal-2: #303634;
      --green: #20aa26;
      --green-dark: #157d1b;
      --green-soft: #eaf8eb;
      --red: #9d1111;
      --paper: #ffffff;
      --mist: #f4f6f4;
      --line: #dfe5df;
      --muted: #626c66;
      --shadow: 0 18px 55px rgba(23, 26, 25, .12);
      --radius: 20px;
      --max: 1160px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button { font: inherit; }
    section { scroll-margin-top: 88px; }
    .container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
    .section { padding: 82px 0; }
    .section-soft { background: var(--mist); }
    .section-dark { color: #fff; background: var(--charcoal); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 12px;
      color: var(--green-dark);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 999px; background: var(--green); }
    .section-dark .eyebrow { color: #82e486; }
    h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.025em; }
    h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.55rem, 6.6vw, 5.25rem); }
    h2 { margin-bottom: 16px; font-size: clamp(2rem, 4.2vw, 3.2rem); }
    h3 { margin-bottom: 9px; font-size: 1.2rem; }
    p { margin-top: 0; }
    .lead { max-width: 720px; color: #e3ebe5; font-size: clamp(1.05rem, 2vw, 1.24rem); }
    .copy { max-width: 740px; color: var(--muted); font-size: 1.04rem; }
    .section-dark .copy { color: #cdd6d0; }

    .skip-link {
      position: absolute;
      left: 12px;
      top: -80px;
      z-index: 1000;
      padding: 10px 14px;
      color: #fff;
      background: #000;
      border-radius: 8px;
    }
    .skip-link:focus { top: 12px; }

    .utility {
      color: #e8eee9;
      background: #121513;
      border-bottom: 1px solid rgba(255,255,255,.1);
      font-size: .9rem;
    }
    .utility-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .utility a { color: #fff; text-decoration: none; font-weight: 700; }
    .utility a:hover { text-decoration: underline; }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,.96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(13px);
    }
    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand { display: inline-flex; align-items: center; text-decoration: none; }
    .brand img { width: min(310px, 42vw); height: auto; }
    .nav-links { display: flex; align-items: center; gap: 23px; }
    .nav-links a { color: #3b443f; text-decoration: none; font-size: .94rem; font-weight: 700; }
    .nav-links a:hover { color: var(--green-dark); }
    .menu-button {
      display: none;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 8px 11px;
      background: #fff;
      cursor: pointer;
    }
    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      border: 1px solid transparent;
      border-radius: 10px;
      font-weight: 800;
      text-decoration: none;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button-primary { color: #fff; background: var(--green-dark); box-shadow: 0 10px 24px rgba(21,125,27,.26); }
    .button-primary:hover { background: #0f6614; }
    .button-light { color: var(--ink); background: #fff; }
    .button-outline { color: #fff; border-color: rgba(255,255,255,.46); background: transparent; }
    .button-outline:hover { background: rgba(255,255,255,.1); }
    .button-dark { color: #fff; background: var(--charcoal); }
    .nav-call { white-space: nowrap; }

    .hero {
      position: relative;
      overflow: hidden;
      color: #fff;
      background: var(--charcoal);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 14% 100%, rgba(32,170,38,.23), transparent 31%),
        linear-gradient(120deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: auto, 36px 36px;
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      min-height: 650px;
      display: grid;
      grid-template-columns: 1.06fr .94fr;
      align-items: stretch;
    }
    .hero-copy {
      padding: 86px 54px 82px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-copy .eyebrow { color: #82e486; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
    .hero-details {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      margin-top: 30px;
      color: #d2dbd5;
      font-size: .94rem;
    }
    .hero-details span { display: inline-flex; align-items: center; gap: 8px; }
    .hero-details span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #66db6b; }
    .hero-image {
      position: relative;
      min-height: 650px;
      background: url('../images/device-diagnostic.jpg') center / cover no-repeat;
    }
    .hero-image::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, var(--charcoal) 0%, rgba(32,36,35,.2) 30%, transparent 65%);
    }
    .hero-badge {
      position: absolute;
      right: 28px;
      bottom: 28px;
      width: 165px;
      height: 165px;
      display: grid;
      place-items: center;
      padding: 16px;
      color: #fff;
      text-align: center;
      border: 7px solid #fff;
      border-radius: 50%;
      background: var(--green-dark);
      box-shadow: 0 18px 42px rgba(0,0,0,.3);
      font-weight: 900;
      line-height: 1.18;
      text-transform: uppercase;
      transform: rotate(-7deg);
    }

    .goal {
      padding: 24px 0;
      color: #fff;
      background: var(--green-dark);
      text-align: center;
    }
    .goal p { margin: 0; font-size: clamp(1.1rem, 2.2vw, 1.45rem); font-weight: 700; }

    .two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .image-card {
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      background: #ddd;
    }
    .image-card img { width: 100%; min-height: 430px; object-fit: cover; }
    .image-card.storefront img { min-height: 380px; }
    .facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; margin-top: 28px; }
    .fact { padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
    .fact strong { display: block; color: var(--green-dark); font-size: 1.18rem; }
    .fact span { color: var(--muted); font-size: .86rem; }

    .section-head { margin-bottom: 34px; }
    .service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .service-card {
      min-height: 235px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(23,26,25,.055);
    }
    .service-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 17px;
      display: grid;
      place-items: center;
      color: #fff;
      border-radius: 12px;
      background: var(--green-dark);
      font-size: 1.35rem;
      font-weight: 900;
    }
    .service-card p { margin-bottom: 0; color: var(--muted); }

    .focus-box {
      padding: 28px;
      border-left: 6px solid var(--green-dark);
      border-radius: 0 16px 16px 0;
      background: var(--green-soft);
    }
    .check-list { list-style: none; padding: 0; margin: 22px 0 0; }
    .check-list li { position: relative; padding: 9px 0 9px 30px; }
    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 8px;
      width: 20px;
      height: 20px;
      display: grid;
      place-items: center;
      color: #fff;
      border-radius: 50%;
      background: var(--green-dark);
      font-size: .75rem;
      font-weight: 900;
    }

    .process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 17px; counter-reset: steps; }
    .process-card {
      position: relative;
      padding: 24px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 16px;
      background: rgba(255,255,255,.06);
      counter-increment: steps;
    }
    .process-card::before {
      content: counter(steps);
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 17px;
      color: var(--charcoal);
      border-radius: 50%;
      background: #78df7c;
      font-weight: 900;
    }
    .process-card p { margin-bottom: 0; color: #cbd4ce; }

    .diagnostic-panel {
      min-height: 515px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      border-radius: 24px;
      color: #fff;
      background: var(--charcoal);
      box-shadow: var(--shadow);
    }
    .diagnostic-image { min-height: 515px; background: url('../images/device-diagnostic.jpg') center / cover no-repeat; }
    .diagnostic-copy { padding: 54px; display: flex; flex-direction: column; justify-content: center; }
    .diagnostic-copy ul { margin: 8px 0 26px; padding-left: 20px; color: #d6dfd9; }
    .diagnostic-copy li { margin: 7px 0; }

    .price-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
    .price-table {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      box-shadow: var(--shadow);
    }
    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 19px 22px;
      border-bottom: 1px solid var(--line);
    }
    .price-row:last-child { border-bottom: 0; }
    .price-row strong { display: block; }
    .price-row small { display: block; color: var(--muted); }
    .price { color: var(--green-dark); font-weight: 900; white-space: nowrap; }
    .fine-print { color: var(--muted); font-size: .9rem; }

    .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .why-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
    .why-card strong { display: block; margin-bottom: 7px; font-size: 1.05rem; }
    .why-card p { margin-bottom: 0; color: var(--muted); }

    .location-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      border-radius: 24px;
      background: #fff;
      box-shadow: var(--shadow);
    }
    .location-copy { padding: 46px; }
    .location-copy address { margin: 22px 0; font-style: normal; }
    .location-copy address strong { display: block; margin-bottom: 4px; }
    .location-actions { display: flex; flex-wrap: wrap; gap: 11px; }
    .location-image { min-height: 430px; background: url('../images/storefront.jpg') center / cover no-repeat; }

    .faq { display: grid; gap: 12px; max-width: 900px; margin-inline: auto; }
    details { border: 1px solid var(--line); border-radius: 13px; background: #fff; }
    summary { cursor: pointer; padding: 19px 22px; font-weight: 800; list-style: none; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; float: right; color: var(--green-dark); font-size: 1.25rem; }
    details[open] summary::after { content: "−"; }
    details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

    .closing {
      padding: 55px 0;
      color: #fff;
      background: linear-gradient(120deg, var(--green-dark), #0e5312);
    }
    .closing-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
    .closing h2 { margin-bottom: 8px; font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
    .closing p { margin-bottom: 0; color: #d7f0d8; }

    footer { color: #d8dfda; background: #121513; }
    .footer-grid { display: grid; grid-template-columns: 1.1fr .85fr 1.2fr; gap: 42px; padding: 56px 0 38px; }
    .footer-logo { width: min(320px, 100%); margin-bottom: 18px; }
    footer h3 { color: #fff; font-size: 1rem; }
    footer p, footer li, footer a { color: #bfc8c1; font-size: .91rem; }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer li { margin: 8px 0; }
    footer a { text-decoration: none; }
    footer a:hover { color: #fff; text-decoration: underline; }
    .legal { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
    .legal p { margin-bottom: 10px; }
    .copyright { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); color: #9ca69f; font-size: .84rem; }

    @media (max-width: 980px) {
      .nav-links { display: none; position: absolute; left: 18px; right: 18px; top: 70px; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 12px 14px; }
      .menu-button { display: inline-flex; }
      .nav-call { display: none; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-copy { padding: 74px 0 45px; }
      .hero-image { min-height: 450px; margin-inline: -18px; }
      .hero-image::before { background: linear-gradient(180deg, var(--charcoal), transparent 35%); }
      .two-column, .price-layout, .location-card, .diagnostic-panel { grid-template-columns: 1fr; }
      .service-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
      .process-grid { grid-template-columns: repeat(2,1fr); }
      .diagnostic-image { min-height: 390px; }
      .location-image { min-height: 390px; order: -1; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 680px) {
      .container { width: min(calc(100% - 28px), var(--max)); }
      .section { padding: 64px 0; }
      .utility-inner { min-height: 44px; justify-content: center; text-align: center; }
      .utility .hours { display: none; }
      .brand img { width: 245px; max-width: 67vw; }
      .hero-copy { padding-top: 58px; }
      .hero-image { min-height: 335px; }
      .hero-badge { width: 126px; height: 126px; right: 14px; bottom: 14px; border-width: 5px; font-size: .76rem; }
      .hero-details { display: grid; gap: 8px; }
      .two-column { gap: 30px; }
      .image-card img { min-height: 320px; }
      .facts, .service-grid, .why-grid, .process-grid { grid-template-columns: 1fr; }
      .diagnostic-copy, .location-copy { padding: 30px 24px; }
      .diagnostic-image, .location-image { min-height: 280px; }
      .price-row { align-items: flex-start; flex-direction: column; gap: 5px; }
      .closing-inner { align-items: flex-start; flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    }

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

/* Version 1.3 additions: computer-service pricing and MyRepairApp quote embed. */
.tb-site .computer-services {
  background: #fff;
}
.tb-site .price-group-label {
  padding: 11px 22px;
  color: #fff;
  background: var(--charcoal);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.tb-site .price-group-label:not(:first-child) {
  border-top: 5px solid var(--green-soft);
}
.tb-site .quote-section {
  background: #fff;
}
.tb-site .quote-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.tb-site .quote-frame-wrap {
  width: 100%;
  min-height: 900px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.tb-site .quote-frame-wrap iframe {
  display: block;
  width: 100% !important;
  min-height: 900px !important;
  border: 0 !important;
  background: #fff;
}

@media (max-width: 680px) {
  .tb-site .quote-frame-wrap,
  .tb-site .quote-frame-wrap iframe {
    min-height: 1050px !important;
    border-radius: 12px;
  }
}
