
    :root {
      --navy: #10233f;
      --navy-dark: #09172a;
      --blue: #1b67a5;
      --blue-light: #eaf4fb;
      --orange: #e8762b;
      --orange-dark: #c95c17;
      --white: #ffffff;
      --off-white: #f7f9fc;
      --gray: #657184;
      --gray-dark: #273548;
      --border: #dce4ed;
      --shadow: 0 18px 45px rgba(16, 35, 63, 0.12);
      --radius: 18px;
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--gray-dark);
      background: var(--white);
      line-height: 1.6;
    }

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

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .container {
      width: min(92%, var(--max-width));
      margin: 0 auto;
    }

    .section {
      padding: 90px 0;
    }

    .section-light {
      background: var(--off-white);
    }

    .section-blue {
      background: var(--navy);
      color: var(--white);
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--orange);
      font-size: 0.84rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 45px;
    }

    .section-heading.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-heading h2 {
      margin-bottom: 16px;
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.12;
    }

    .section-heading p {
      color: var(--gray);
      font-size: 1.08rem;
    }

    .section-blue .section-heading h2,
    .section-blue .section-heading p {
      color: var(--white);
    }

    .topbar {
      padding: 9px 0;
      background: var(--navy-dark);
      color: var(--white);
      font-size: 0.9rem;
    }

    .topbar-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    .topbar a {
      color: var(--white);
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.97);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(10px);
    }

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

    .logo {
      color: var(--navy);
      font-size: 1.28rem;
      font-weight: 900;
      line-height: 1.1;
    }

    .logo span {
      display: block;
      color: var(--orange);
      font-size: 0.77rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      list-style: none;
    }

    .nav-links a {
      color: var(--gray-dark);
      font-size: 0.95rem;
      font-weight: 700;
    }

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

    .button {
      display: inline-flex;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      border: 2px solid transparent;
      border-radius: 10px;
      background: var(--orange);
      color: var(--white);
      font-weight: 800;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .button:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
    }

    .button-outline {
      border-color: rgba(255, 255, 255, 0.55);
      background: transparent;
    }

    .button-outline:hover {
      border-color: var(--white);
      background: var(--white);
      color: var(--navy);
    }

    .button-blue {
      background: var(--blue);
    }

    .button-blue:hover {
      background: var(--navy);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 95px 0;
      background:
        linear-gradient(90deg, rgba(9, 23, 42, 0.96) 0%, rgba(16, 35, 63, 0.91) 50%, rgba(16, 35, 63, 0.45) 100%),
        url("boston-ceiling-repair.jpg") center/cover no-repeat;
      color: var(--white);
    }

    .hero::after {
      position: absolute;
      right: -120px;
      bottom: -180px;
      width: 420px;
      height: 420px;
      border: 90px solid rgba(255, 255, 255, 0.04);
      border-radius: 50%;
      content: "";
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      align-items: center;
      gap: 55px;
    }

    .hero-copy {
      max-width: 720px;
    }

    .hero h1 {
      margin-bottom: 22px;
      font-size: clamp(2.7rem, 6vw, 5rem);
      line-height: 1.02;
      letter-spacing: -0.045em;
    }

    .hero-copy > p {
      max-width: 650px;
      margin-bottom: 28px;
      color: #e5edf6;
      font-size: clamp(1.05rem, 2vw, 1.25rem);
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .hero-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 11px 22px;
      list-style: none;
    }

    .hero-list li {
      position: relative;
      padding-left: 26px;
      color: #eef4f9;
      font-weight: 700;
    }

    .hero-list li::before {
      position: absolute;
      left: 0;
      top: 1px;
      color: var(--orange);
      content: "✓";
      font-size: 1rem;
      font-weight: 900;
    }

    .hero-card {
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.96);
      color: var(--gray-dark);
      box-shadow: var(--shadow);
    }

    .hero-card h2 {
      margin-bottom: 9px;
      color: var(--navy);
      font-size: 1.7rem;
      line-height: 1.15;
    }

    .hero-card > p {
      margin-bottom: 20px;
      color: var(--gray);
      font-size: 0.95rem;
    }

    .form-group {
      margin-bottom: 14px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      color: var(--navy);
      font-size: 0.86rem;
      font-weight: 800;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 13px 14px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--white);
      color: var(--gray-dark);
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(27, 103, 165, 0.1);
    }

    .form-group textarea {
      min-height: 95px;
      resize: vertical;
    }

    .hero-card .button {
      width: 100%;
      border: 0;
    }

    .trust-strip {
      border-bottom: 1px solid var(--border);
      background: var(--white);
    }

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

    .trust-item {
      padding: 24px 18px;
      border-right: 1px solid var(--border);
      text-align: center;
    }

    .trust-item:last-child {
      border-right: 0;
    }

    .trust-item strong {
      display: block;
      margin-bottom: 3px;
      color: var(--navy);
      font-size: 1rem;
    }

    .trust-item span {
      color: var(--gray);
      font-size: 0.88rem;
    }

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

    .service-card {
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 9px 28px rgba(16, 35, 63, 0.06);
      transition: 0.2s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .service-number {
      display: flex;
      width: 48px;
      height: 48px;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      border-radius: 12px;
      background: var(--blue-light);
      color: var(--blue);
      font-weight: 900;
    }

    .service-card h3 {
      margin-bottom: 10px;
      color: var(--navy);
      font-size: 1.25rem;
    }

    .service-card p {
      color: var(--gray);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      align-items: center;
      gap: 65px;
    }

    .about-image {
      position: relative;
      min-height: 520px;
      overflow: hidden;
      border-radius: 24px;
      background:
        linear-gradient(rgba(16, 35, 63, 0.06), rgba(16, 35, 63, 0.06)),
        url("ceiling-repair-contractor-boston.jpg") center/cover no-repeat;
      box-shadow: var(--shadow);
    }

    .experience-box {
      position: absolute;
      right: 20px;
      bottom: 20px;
      max-width: 210px;
      padding: 24px;
      border-radius: 14px;
      background: var(--orange);
      color: var(--white);
    }

    .experience-box strong {
      display: block;
      font-size: 2.5rem;
      line-height: 1;
    }

    .about-copy h2 {
      margin-bottom: 20px;
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.12;
    }

    .about-copy p {
      margin-bottom: 18px;
      color: var(--gray);
    }

    .check-list {
      display: grid;
      gap: 13px;
      margin: 28px 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 30px;
      color: var(--gray-dark);
      font-weight: 700;
    }

    .check-list li::before {
      position: absolute;
      left: 0;
      color: var(--orange);
      content: "✓";
      font-weight: 900;
    }

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

    .process-card {
      position: relative;
      padding: 30px 24px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.13);
    }

    .process-card span {
      display: block;
      margin-bottom: 18px;
      color: var(--orange);
      font-size: 2.4rem;
      font-weight: 900;
      line-height: 1;
    }

    .process-card h3 {
      margin-bottom: 9px;
      font-size: 1.18rem;
    }

    .process-card p {
      color: #cad6e4;
      font-size: 0.95rem;
    }

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

    .damage-card {
      display: flex;
      gap: 18px;
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--white);
    }

    .damage-icon {
      flex: 0 0 46px;
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--blue-light);
      color: var(--blue);
      font-size: 1.2rem;
      font-weight: 900;
    }

    .damage-card h3 {
      margin-bottom: 5px;
      color: var(--navy);
      font-size: 1.1rem;
    }

    .damage-card p {
      color: var(--gray);
      font-size: 0.94rem;
    }

    .areas-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 55px;
    }

    .areas-wrap h2 {
      margin-bottom: 18px;
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.12;
    }

    .areas-wrap p {
      margin-bottom: 25px;
      color: var(--gray);
    }

    .area-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 11px;
      list-style: none;
    }

    .area-list li {
      position: relative;
      padding-left: 23px;
      font-weight: 700;
    }

    .area-list li::before {
      position: absolute;
      left: 0;
      color: var(--orange);
      content: "•";
    }

    .area-panel {
      padding: 38px;
      border-radius: 24px;
      background: var(--blue-light);
    }

    .area-panel h3 {
      margin-bottom: 14px;
      color: var(--navy);
      font-size: 1.5rem;
    }

    .area-panel p {
      margin-bottom: 20px;
    }

    .faq-wrap {
      max-width: 850px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 14px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      padding: 21px 55px 21px 22px;
      color: var(--navy);
      font-weight: 800;
      cursor: pointer;
      list-style: none;
    }

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

    .faq-item summary::after {
      position: absolute;
      right: 22px;
      top: 20px;
      color: var(--orange);
      content: "+";
      font-size: 1.4rem;
      font-weight: 900;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-answer {
      padding: 0 22px 22px;
      color: var(--gray);
    }

    .cta {
      padding: 75px 0;
      background:
        linear-gradient(90deg, rgba(16, 35, 63, 0.97), rgba(27, 103, 165, 0.91)),
        url("smooth-repaired-ceiling.jpg") center/cover no-repeat;
      color: var(--white);
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .cta h2 {
      max-width: 700px;
      margin-bottom: 10px;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.12;
    }

    .cta p {
      color: #dfeaf4;
      font-size: 1.08rem;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer {
      padding: 55px 0 25px;
      background: var(--navy-dark);
      color: #d9e3ee;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.8fr 0.9fr;
      gap: 50px;
      padding-bottom: 40px;
    }

    .footer h3 {
      margin-bottom: 15px;
      color: var(--white);
      font-size: 1.15rem;
    }

    .footer p,
    .footer li {
      color: #aebdcd;
    }

    .footer ul {
      display: grid;
      gap: 8px;
      list-style: none;
    }

    .footer a:hover {
      color: var(--orange);
    }

    .copyright {
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #899caf;
      font-size: 0.86rem;
      text-align: center;
    }

    .mobile-call {
      display: none;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .about-grid,
      .areas-wrap {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        max-width: 780px;
      }

      .hero-card {
        max-width: 650px;
      }

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

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

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

      .trust-item:nth-child(2) {
        border-right: 0;
      }

      .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
      }

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

    @media (max-width: 700px) {
      body {
        padding-bottom: 68px;
      }

      .section {
        padding: 68px 0;
      }

      .topbar-inner {
        flex-direction: column;
        align-items: center;
        gap: 2px;
        text-align: center;
      }

      .header .button {
        display: none;
      }

      .hero {
        padding: 72px 0;
        background-position: 62% center;
      }

      .hero-list,
      .services-grid,
      .damage-grid,
      .process-grid,
      .area-list,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-buttons,
      .cta-buttons {
        flex-direction: column;
      }

      .hero-buttons .button,
      .cta-buttons .button {
        width: 100%;
      }

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

      .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .trust-item:last-child {
        border-bottom: 0;
      }

      .about-image {
        min-height: 390px;
      }

      .cta-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .mobile-call {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1100;
        display: flex;
        min-height: 68px;
        align-items: center;
        justify-content: center;
        background: var(--orange);
        color: var(--white);
        font-size: 1.05rem;
        font-weight: 900;
        box-shadow: 0 -8px 25px rgba(9, 23, 42, 0.18);
      }
    }
