    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:    #0D1F4E;
      --blue:    #1565C0;
      --bright:  #2196F3;
      --water:   #64B5F6;
      --white:   #FFFFFF;
      --offwhite:#F0F6FF;
      --dark:    #0A1530;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10, 21, 48, 0.97);
      -webkit-backdrop-filter: blur(8px); /* Safari 9+, iOS Safari 9+ */
      backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2rem;
      height: 96px;
      border-bottom: 2px solid var(--bright);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      padding: 14px 8px;
    }
    .nav-logo img {
      display: block;
      height: 80px;
      min-width: 180px;
      border-radius: 10px;
      box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.55),
        0 0 30px 8px rgba(33, 150, 243, 0.45),
        0 0 60px 14px rgba(21, 101, 192, 0.25);
    }
    nav ul {
      list-style: none; display: flex; gap: 2rem;
    }
    nav ul a {
      color: var(--white); text-decoration: none;
      font-weight: 600; font-size: 0.9rem; letter-spacing: 1px;
      text-transform: uppercase; transition: color 0.2s;
    }
    nav ul a:hover { color: var(--water); }
    .nav-cta {
      background: var(--bright); color: var(--white) !important;
      padding: 0.5rem 1.2rem; border-radius: 4px;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--blue) !important; color: var(--white) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #0d2248 0%, #1a3a7a 40%, #1e4d9e 70%, #1565C0 100%);
      display: flex; align-items: center; justify-content: center;
      text-align: center; padding: 100px 2rem 4rem;
      position: relative; overflow: hidden;
    }

    /* animated water rings */
    .hero::before, .hero::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      border: 2px solid rgba(100, 181, 246, 0.15);
      animation: ripple 6s linear infinite;
    }
    .hero::before { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .hero::after  { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 3s; }
    @keyframes ripple {
      0%   { opacity: 0.4; transform: translate(-50%, -50%) scale(0.8); }
      100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.3); }
    }

    /* water drops */
    .drop {
      position: absolute;
      width: 6px; height: 8px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(100,181,246,0.3));
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      animation: fall linear infinite;
      opacity: 0;
    }
    @keyframes fall {
      0%   { transform: translateY(-20px); opacity: 0.6; }
      100% { transform: translateY(110vh); opacity: 0; }
    }

    .hero-content { position: relative; z-index: 2; max-width: 800px; }

    .hero-eyebrow {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--water);
      border: 1px solid rgba(100,181,246,0.4);
      padding: 0.3rem 1rem; border-radius: 2px;
      margin-bottom: 1.8rem;
    }

    .hero-tagline {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.8rem, 5vw, 3rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 2.5rem;
    }

    /* Service pills row */
    .hero-services-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      justify-content: center;
      margin-bottom: 3rem;
    }
    .hero-service-pill {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(100,181,246,0.35);
      color: var(--water);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem; font-weight: 700;
      letter-spacing: 1px;
      padding: 0.45rem 1rem;
      border-radius: 999px;
      white-space: nowrap;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .hero-service-pill:hover {
      background: rgba(100,181,246,0.2);
      border-color: var(--water);
    }

    /* CTA block */
    .hero-cta-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    .btn-cta-main {
      background: var(--bright);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem; font-weight: 800;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 1.1rem 3rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 6px 24px rgba(33,150,243,0.45);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-cta-main:hover {
      background: #1976D2;
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(33,150,243,0.55);
    }
    .btn-cta-sub {
      color: rgba(255,255,255,0.55);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 600;
      letter-spacing: 1px;
      text-decoration: none;
      transition: color 0.2s;
    }
    .btn-cta-sub:hover { color: var(--water); }

    .btn-primary {
      background: var(--bright);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 0.9rem 2.5rem;
      border: none; border-radius: 4px;
      cursor: pointer; text-decoration: none;
      transition: background 0.2s, transform 0.1s;
      display: inline-block;
    }
    .btn-primary:hover { background: #1976D2; transform: translateY(-2px); }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: #132660;
      padding: 1.2rem 2rem;
      display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
    }
    .trust-item {
      color: var(--white); font-size: 0.85rem; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .trust-item .dot { width: 8px; height: 8px; background: var(--water); border-radius: 50%; flex-shrink: 0; }

    /* ── SECTION BASE ── */
    section { padding: 7rem 2rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }

    @media (max-width: 768px) {
      section { padding: 5rem 1.25rem; }
    }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--bright);
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 900; text-transform: uppercase;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 1rem;
    }
    .section-sub {
      font-size: 1rem; color: #555; max-width: 560px;
      line-height: 1.7;
    }

    /* ── SERVICES ── */
    #services { background: var(--offwhite); padding-bottom: 0; }
    #services .section-inner { padding-bottom: 2rem; }

    .svc-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      padding: 4rem 2rem;
      gap: 3rem;
    }
    .svc-block:nth-child(even) {
      background: var(--white);
    }
    .svc-block-reverse {
      direction: rtl;
    }
    .svc-block-reverse > * {
      direction: ltr;
    }
    .svc-block-img {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }
    .svc-block-img img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      display: block;
    }
    .svc-block-copy h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--navy);
      margin-bottom: 1rem;
    }
    .svc-block-lead {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.05rem, 2.5vw, 1.25rem);
      font-weight: 700;
      color: var(--blue);
      line-height: 1.4;
      margin-bottom: 1rem;
    }
    .svc-block-copy p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .svc-block-cta {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--bright);
      text-decoration: none;
      border-bottom: 2px solid var(--bright);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
    .svc-block-cta:hover {
      color: var(--navy);
      border-color: var(--navy);
    }

    @media (max-width: 768px) {
      .svc-block {
        grid-template-columns: 1fr;
        padding: 3rem 1.25rem;
        gap: 2rem;
      }
      .svc-block-reverse {
        direction: ltr;
      }
      .svc-block-img img {
        height: 260px;
      }
    }

    /* ── WHY US ── */
    #why { background: var(--white); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem; margin-top: 3rem;
    }
    .why-item { display: flex; gap: 1rem; align-items: flex-start; }
    .why-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3rem; font-weight: 900;
      color: rgba(33, 150, 243, 0.15);
      line-height: 1; flex-shrink: 0; width: 48px;
    }
    .why-text h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 1px;
      color: var(--navy); margin-bottom: 0.4rem;
    }
    .why-text p { font-size: 0.9rem; color: #666; line-height: 1.6; }

    /* ── CTA BAND ── */
    .cta-band {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      padding: 4rem 2rem; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255,255,255,0.02) 30px,
        rgba(255,255,255,0.02) 60px
      );
    }
    .cta-band h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 6vw, 3.5rem);
      font-weight: 900; text-transform: uppercase;
      color: var(--white); margin-bottom: 0.5rem;
      position: relative;
    }
    .cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
    .cta-band .btn-primary { font-size: 1.3rem; padding: 1rem 3rem; position: relative; }

    /* ── CONTACT ── */
    #contact { background: var(--offwhite); }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem; margin-top: 3rem;
      align-items: start;
    }
    @media (max-width: 700px) { .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-item {
      display: flex; align-items: center; gap: 1rem;
      background: var(--white);
      border-left: 4px solid var(--bright);
      padding: 1rem 1.25rem;
      border-radius: 0 4px 4px 0;
    }
    .contact-item .ci-icon { font-size: 1.5rem; flex-shrink: 0; }
    .contact-item .ci-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--bright); }
    .contact-item .ci-value { font-size: 1rem; font-weight: 600; color: var(--navy); }
    .contact-item a { color: var(--navy); text-decoration: none; }
    .contact-item a:hover { color: var(--bright); }

    /* FORM */
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

    .contact-form label {
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--navy); margin-bottom: 0.3rem;
      display: block;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 2px solid #dce8f7;
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.95rem;
      color: var(--navy);
      background: var(--white);
      transition: border-color 0.2s;
      outline: none;
    }
    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus { border-color: var(--bright); }
    .contact-form textarea { resize: vertical; min-height: 120px; }

    .form-submit {
      background: var(--bright);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 1rem;
      border: none; border-radius: 4px;
      cursor: pointer; width: 100%;
      transition: background 0.2s;
    }
    .form-submit:hover { background: var(--blue); }

    .form-note { font-size: 0.8rem; color: #888; text-align: center; margin-top: -0.25rem; }

    #form-success {
      display: none;
      background: #e8f5e9; border: 2px solid #4caf50;
      border-radius: 4px; padding: 1rem;
      color: #2e7d32; font-weight: 600; text-align: center;
    }

    /* ── BEFORE & AFTER GALLERY ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .ba-card {
      border-radius: 8px;
      overflow: hidden;
      border: 2px solid rgba(100,181,246,0.2);
    }
    .ba-card-title {
      background: rgba(255,255,255,0.06);
      padding: 0.6rem 1.25rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      border-bottom: 1px solid rgba(100,181,246,0.15);
    }
    .ba-pair {
      display: flex;
    }
    .ba-side {
      position: relative;
      overflow: hidden;
      flex: 1;
    }
    .ba-side img {
      width: 100%;
      height: auto;
      display: block;
      image-orientation: from-image;
    }
    .ba-divider {
      width: 3px;
      background: linear-gradient(to bottom, var(--bright), var(--water));
      flex-shrink: 0;
      position: relative;
      z-index: 5;
    }
    .ba-label {
      position: absolute; z-index: 10;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      bottom: 0; left: 0; right: 0;
      text-align: center;
    }
    .before-label { background: rgba(0,0,0,0.6); color: #fff; }
    .after-label  { background: rgba(21,101,192,0.85); color: #fff; }

    @media (max-width: 500px) {
      .ba-side img { width: 100%; height: auto; }
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      background: var(--white);
      padding: 5rem 2rem;
    }
    .testimonials .section-title {
      margin-bottom: 2.5rem;
    }
    .testimonial-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-height: 320px;
      overflow-y: auto;
      margin-bottom: 2rem;
    }
    .testimonial-card {
      background: var(--offwhite);
      border-radius: 8px;
      padding: 1.5rem;
      border-left: 4px solid var(--bright);
    }
    .testimonial-stars {
      color: #f5a623;
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
      letter-spacing: 2px;
    }
    .testimonial-text {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 1rem;
    }
    .testimonial-author {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .testimonial-submit-toggle {
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .btn-leave-review {
      background: none;
      border: 2px solid var(--bright);
      color: var(--bright);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 0.75rem 2rem;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .btn-leave-review:hover {
      background: var(--bright);
      color: var(--white);
    }
    .review-form {
      max-width: 500px;
      margin: 0 auto;
      text-align: left;
    }
    .review-form h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--navy);
      text-transform: uppercase;
      margin-bottom: 1rem;
      text-align: center;
    }
    .review-form-fields {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .review-form-fields input,
    .review-form-fields textarea {
      padding: 0.8rem 1rem;
      border: 2px solid #dce8f7;
      border-radius: 6px;
      font-family: 'Barlow', sans-serif;
      font-size: 1rem;
      color: var(--navy);
      outline: none;
      transition: border-color 0.2s;
    }
    .review-form-fields input:focus,
    .review-form-fields textarea:focus {
      border-color: var(--bright);
    }
    .review-form-fields textarea {
      resize: vertical;
    }
    .review-stars-input {
      display: flex;
      gap: 0.3rem;
      justify-content: center;
    }
    .star-select {
      font-size: 1.8rem;
      color: #ddd;
      cursor: pointer;
      transition: color 0.15s;
    }
    .star-select.active,
    .star-select:hover {
      color: #f5a623;
    }

    @media (max-width: 768px) {
      .testimonial-list {
        grid-template-columns: 1fr;
        max-height: 400px;
      }
    }

    /* ── CLOSING CTA ── */
    .closing-cta {
      background: var(--offwhite);
      text-align: center;
      padding: 5rem 2rem;
    }
    .closing-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .closing-sub {
      font-size: 1rem;
      color: #555;
      margin-bottom: 2rem;
    }

    /* Inline estimate form */
    .inline-form {
      max-width: 480px;
      margin: 0 auto 1.5rem;
    }
    .inline-form-fields {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .inline-form-fields input {
      flex: 1;
      padding: 0.9rem 1rem;
      border: 2px solid #dce8f7;
      border-radius: 6px;
      font-family: 'Barlow', sans-serif;
      font-size: 1rem;
      color: var(--navy);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }
    .inline-form-fields input:focus {
      border-color: var(--bright);
    }
    .inline-form-fields input::placeholder {
      color: #aaa;
    }
    .inline-form-btn {
      width: 100%;
      border: none;
      cursor: pointer;
      font-size: 1.2rem;
      padding: 1rem;
    }
    .inline-form-success {
      display: none;
      max-width: 480px;
      margin: 0 auto 1.5rem;
      background: #e8f5e9;
      border: 2px solid #4caf50;
      border-radius: 6px;
      padding: 1.2rem;
      color: #2e7d32;
      font-weight: 600;
    }
    .closing-or {
      font-size: 0.85rem;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 0.5rem;
    }
    .closing-phone {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--bright);
      text-decoration: none;
      transition: color 0.2s;
    }
    .closing-phone:hover {
      color: var(--navy);
    }

    @media (max-width: 480px) {
      .inline-form-fields {
        flex-direction: column;
      }
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 3rem 2rem 2rem;
    }
    .footer-brand strong {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-brand p {
      margin-top: 0.5rem;
      color: rgba(255,255,255,0.45);
      font-size: 0.85rem;
    }
    .footer-contact a {
      color: var(--water);
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
    }
    .footer-contact a:hover { color: var(--white); }
    .footer-contact p {
      margin-top: 0.4rem;
      color: rgba(255,255,255,0.4);
      font-size: 0.85rem;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
      padding: 1.2rem 2rem;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.3);
    }

    /* ── MOBILE NAV ── */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

    @media (max-width: 768px) {
      .trust-bar { gap: 1.5rem; padding: 1rem 1.25rem; }
      .trust-item { font-size: 0.75rem; letter-spacing: 0.5px; }
      .ba-side img { width: 100%; height: auto; }
      .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    }

    @media (max-width: 640px) {
      nav ul { display: none; position: absolute; top: 64px; left: 0; right: 0;
        flex-direction: column; background: var(--navy); padding: 1rem 2rem;
        border-bottom: 2px solid var(--bright); gap: 1rem; }
      nav ul.open { display: flex; }
      .hamburger { display: flex; }
      .nav-logo img { height: 60px; min-width: 160px; }
      .hero-services-row { flex-direction: column; align-items: center; gap: 0.5rem; }
      .hero-service-pill {
        padding: 0.65rem 1.5rem;
        font-size: 1rem;
        background: rgba(255,255,255,0.12);
        border: 2px solid rgba(100,181,246,0.5);
        min-width: 220px;
        text-align: center;
      }
      .hero-tagline { font-size: 1.6rem; }
      .btn-cta-main { font-size: 1.2rem; padding: 1rem 2rem; }
    }