:root {
      --rri-blue: #0f4c81;
      --rri-blue-deep: #0b3557;
      --rri-navy: #162b40;
      --rri-teal: #17a7b8;
      --rri-sky: #6ed2e6;
      --rri-gold: #ffd27f;
      --rri-orange: #ff9d4d;
      --rri-coral: #ff7f6a;
      --rri-green: #43c28a;
      --rri-red: #c62828;
      --rri-red-deep: #8f1700;
      --rri-text: #1f2f3d;
      --rri-muted: #607182;
      --rri-line: rgba(15,76,129,0.10);
      --rri-white: rgba(255,255,255,0.9);
      --rri-shadow: 0 24px 60px rgba(8, 32, 58, 0.10);
      --rri-shadow-soft: 0 16px 36px rgba(8, 32, 58, 0.06);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--rri-text);
      background:
        radial-gradient(circle at top left, rgba(23,167,184,0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(255,157,77,0.14), transparent 18%),
        radial-gradient(circle at bottom right, rgba(67,194,138,0.10), transparent 20%),
        linear-gradient(180deg, #f8fcff 0%, #eef7fb 52%, #fcfaf3 100%);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, 92%);
      margin: 0 auto;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: linear-gradient(90deg, rgba(16,27,39,0.96), rgba(20,37,53,0.96));
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      padding: 14px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    .brand img {
      height: 48px;
      width: auto;
      border-radius: 12px;
      box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: #e9f0f5;
      font-size: 0.95rem;
      position: relative;
      transition: color .2s ease;
    }

    .nav-links a:not(.btn)::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--rri-teal), var(--rri-sky), var(--rri-gold));
      transition: width .25s ease;
    }

    .nav-links a:not(.btn):hover {
      color: #fff;
    }

    .nav-links a:not(.btn):hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: none;
      cursor: pointer;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--rri-blue) 0%, var(--rri-teal) 55%, var(--rri-sky) 100%);
      box-shadow: 0 16px 30px rgba(15,76,129,0.24);
    }

    .btn-light {
      background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
      color: var(--rri-blue);
      box-shadow: 0 14px 28px rgba(255,255,255,0.15);
    }

    .btn-red {
      background: linear-gradient(135deg, var(--rri-red) 0%, var(--rri-red-deep) 100%);
      color: #fff;
      box-shadow: 0 14px 28px rgba(143,23,0,0.28);
    }

    .btn-outline-dark {
      background: rgba(255,255,255,0.82);
      color: var(--rri-blue);
      border: 1px solid rgba(15,76,129,0.10);
      box-shadow: 0 10px 22px rgba(10,32,58,0.05);
    }

    .btn-ghost {
      background: rgba(255,255,255,0.12);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.16);
    }

    .hero-home {
      position: relative;
      overflow: hidden;
      padding: 120px 0 96px;
    }

    .hero-home::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 8% 18%, rgba(23,167,184,0.18), transparent 24%),
        radial-gradient(circle at 92% 14%, rgba(255,157,77,0.18), transparent 20%),
        radial-gradient(circle at 75% 68%, rgba(67,194,138,0.10), transparent 20%),
        linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.08));
      pointer-events: none;
    }

    .hero-home-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 32px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,252,255,0.90));
      border: 1px solid rgba(23,167,184,0.14);
      color: var(--rri-teal);
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.2px;
      box-shadow: 0 12px 24px rgba(15,76,129,0.05);
      margin-bottom: 18px;
    }

    .hero-home h1 {
      margin: 0 0 16px;
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      line-height: 1.02;
      color: var(--rri-blue-deep);
      max-width: 760px;
    }

    .hero-home p {
      margin: 0 0 16px;
      max-width: 720px;
      color: var(--rri-muted);
      line-height: 1.8;
      font-size: 1.05rem;
    }

    .owner-note {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 8px;
      padding: 11px 16px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(198,40,40,0.08), rgba(255,255,255,0.72));
      border: 1px solid rgba(198,40,40,0.10);
      color: #5d6770;
      font-size: 0.95rem;
      box-shadow: 0 10px 22px rgba(10,32,58,0.04);
    }

    .owner-note strong {
      color: var(--rri-red);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .hero-pill {
      padding: 10px 15px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(248,252,255,0.85));
      border: 1px solid rgba(15,76,129,0.08);
      color: var(--rri-muted);
      box-shadow: 0 10px 22px rgba(10,32,58,0.04);
      font-size: 0.92rem;
    }

    .hero-showcase {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.76));
      border: 1px solid rgba(255,255,255,0.80);
      border-radius: 30px;
      padding: 30px;
      box-shadow: var(--rri-shadow);
      backdrop-filter: blur(16px);
      overflow: hidden;
    }

    .hero-showcase::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(110,210,230,0.09), transparent 35%, rgba(255,210,127,0.08) 100%);
      pointer-events: none;
    }

    .hero-showcase::after {
      content: "";
      position: absolute;
      top: -70px;
      right: -70px;
      width: 190px;
      height: 190px;
      background: radial-gradient(circle, rgba(110,210,230,0.25), transparent 68%);
      pointer-events: none;
    }

    .hero-showcase h3 {
      position: relative;
      margin: 0 0 10px;
      color: var(--rri-blue-deep);
      font-size: 1.35rem;
    }

    .hero-showcase p {
      position: relative;
      margin: 0 0 18px;
      color: var(--rri-muted);
    }

    .showcase-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 18px;
    }

    .showcase-tile {
      background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,251,255,0.95));
      border: 1px solid rgba(15,76,129,0.08);
      border-radius: 20px;
      padding: 18px;
      box-shadow: var(--rri-shadow-soft);
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }

    .showcase-tile:nth-child(1) { border-top: 4px solid var(--rri-teal); }
    .showcase-tile:nth-child(2) { border-top: 4px solid var(--rri-gold); }
    .showcase-tile:nth-child(3) { border-top: 4px solid var(--rri-coral); }
    .showcase-tile:nth-child(4) { border-top: 4px solid var(--rri-green); }

    .showcase-tile:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 30px rgba(10,32,58,0.08);
      border-color: rgba(23,167,184,0.22);
    }

    .showcase-kicker {
      display: inline-block;
      margin-bottom: 8px;
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--rri-teal);
      font-weight: 700;
    }

    .showcase-tile strong {
      display: block;
      color: var(--rri-blue-deep);
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .showcase-tile span {
      color: var(--rri-muted);
      line-height: 1.65;
      font-size: 0.93rem;
    }

    .section {
      padding: 92px 0;
      position: relative;
    }

    .section-title {
      max-width: 820px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--rri-teal);
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 0.84rem;
    }

    .section-title h2 {
      margin: 0 0 12px;
      font-size: clamp(2rem, 3.4vw, 3rem);
      line-height: 1.06;
      color: var(--rri-blue-deep);
    }

    .section-title p {
      margin: 0;
      color: var(--rri-muted);
      line-height: 1.8;
      font-size: 1rem;
    }

    .trust-grid,
    .services-grid,
    .reviews-grid {
      display: grid;
      gap: 22px;
    }

    .trust-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .services-grid,
    .reviews-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      margin-top: 34px;
    }

    .info-card,
    .service-card,
    .review-card,
    .stat-card {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(250,252,255,0.92));
      border: 1px solid rgba(15,76,129,0.10);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 18px 44px rgba(10,32,58,0.06);
      overflow: hidden;
      transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
    }

    .info-card:hover,
    .service-card:hover,
    .review-card:hover,
    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 54px rgba(10,32,58,0.10);
      border-color: rgba(23,167,184,0.24);
    }

    .info-card::before,
    .service-card::before,
    .review-card::before,
    .stat-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: linear-gradient(90deg, var(--rri-blue), var(--rri-teal), var(--rri-sky), var(--rri-gold), var(--rri-coral));
    }

    .info-card::after,
    .service-card::after,
    .review-card::after,
    .stat-card::after {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      right: -48px;
      bottom: -48px;
      background: radial-gradient(circle, rgba(23,167,184,0.08), transparent 68%);
      pointer-events: none;
    }

    .icon-badge {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(15,76,129,0.10), rgba(23,167,184,0.16));
      border: 1px solid rgba(15,76,129,0.08);
      color: var(--rri-blue);
      font-weight: 800;
      margin-bottom: 18px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    }

    .info-card h3,
    .service-card h3,
    .review-card h3,
    .stat-card h3 {
      margin: 0 0 10px;
      color: var(--rri-blue-deep);
      font-size: 1.2rem;
    }

    .info-card p,
    .service-card p,
    .review-card p,
    .stat-card p {
      margin: 0;
      color: var(--rri-muted);
      line-height: 1.75;
    }

    .service-card {
      min-height: 290px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card:nth-child(1) .icon-badge { background: linear-gradient(135deg, rgba(23,167,184,0.15), rgba(110,210,230,0.20)); }
    .service-card:nth-child(2) .icon-badge { background: linear-gradient(135deg, rgba(255,210,127,0.18), rgba(255,157,77,0.16)); }
    .service-card:nth-child(3) .icon-badge { background: linear-gradient(135deg, rgba(255,127,106,0.16), rgba(67,194,138,0.14)); }

    .service-meta {
      margin-top: 20px;
      display: inline-flex;
      width: fit-content;
      padding: 9px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(23,167,184,0.10), rgba(110,210,230,0.12));
      color: var(--rri-teal);
      border: 1px solid rgba(23,167,184,0.10);
      font-size: 0.84rem;
      font-weight: 700;
    }

    .split-band {
      background:
        radial-gradient(circle at left center, rgba(255,210,127,0.14), transparent 18%),
        radial-gradient(circle at right center, rgba(110,210,230,0.12), transparent 20%),
        linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.96));
      border-top: 1px solid rgba(15,76,129,0.08);
      border-bottom: 1px solid rgba(15,76,129,0.08);
    }

    .stat-card {
      text-align: center;
      padding: 24px;
    }

    .stat-number {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      color: var(--rri-blue-deep);
      margin-bottom: 8px;
    }

    .local-band {
      background:
        radial-gradient(circle at top left, rgba(23,167,184,0.12), transparent 20%),
        radial-gradient(circle at bottom right, rgba(255,210,127,0.12), transparent 20%),
        linear-gradient(135deg, rgba(15,76,129,0.03), rgba(23,167,184,0.05));
      border-top: 1px solid rgba(15,76,129,0.08);
      border-bottom: 1px solid rgba(15,76,129,0.08);
    }

    .local-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 28px;
      align-items: center;
    }

    .local-card,
    .map-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(249,252,255,0.92));
      border: 1px solid rgba(15,76,129,0.10);
      border-radius: 28px;
      padding: 30px;
      box-shadow: 0 18px 44px rgba(10,32,58,0.06);
      position: relative;
      overflow: hidden;
    }

    .local-card::after,
    .map-card::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      right: -50px;
      bottom: -50px;
      background: radial-gradient(circle, rgba(255,210,127,0.10), transparent 70%);
      pointer-events: none;
    }

    .local-points {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .local-point {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--rri-muted);
      line-height: 1.7;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(15,76,129,0.08);
    }

    .local-point:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .local-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rri-blue), var(--rri-teal));
      box-shadow: 0 0 0 6px rgba(23,167,184,0.10);
      margin-top: 5px;
      flex: 0 0 auto;
    }

    .service-area-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 20px;
    }

    .service-area-tile {
      padding: 16px 18px;
      border-radius: 18px;
      background: linear-gradient(180deg, #ffffff, #f8fbfe);
      border: 1px solid rgba(15,76,129,0.08);
      color: #4f6273;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      box-shadow: 0 12px 24px rgba(10,32,58,0.04);
    }

    .service-area-tile:hover {
      transform: translateY(-3px);
      border-color: rgba(23,167,184,0.20);
      box-shadow: 0 18px 28px rgba(10,32,58,0.07);
    }

    .service-area-tile strong {
      display: block;
      color: var(--rri-blue-deep);
      margin-bottom: 6px;
    }

    .review-stars {
      color: #f5a623;
      letter-spacing: 2px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .review-source {
      margin-top: 16px;
      color: var(--rri-blue);
      font-weight: 700;
      font-size: 0.95rem;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 10% 0%, rgba(255,210,127,0.16), transparent 18%),
        radial-gradient(circle at 90% 100%, rgba(110,210,230,0.18), transparent 22%),
        linear-gradient(135deg, #173149 0%, #1e4f73 42%, #1691a4 100%);
      color: #fff;
      text-align: center;
      padding: 96px 20px;
    }

    .cta-band::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      top: -80px;
      left: -60px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,210,127,0.18), transparent 68%);
      pointer-events: none;
    }

    .cta-band::after {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -90px;
      bottom: -120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(110,210,230,0.22), transparent 68%);
      pointer-events: none;
    }

    .cta-band .container {
      position: relative;
      z-index: 1;
    }

    .cta-band h2 {
      margin: 0 0 12px;
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: #fff;
    }

    .cta-band p {
      max-width: 760px;
      margin: 0 auto 26px;
      color: rgba(255,255,255,0.90);
      line-height: 1.8;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer {
      background: linear-gradient(180deg, #10161d, #0b1116);
      color: #aab2ba;
      padding: 38px 0;
    }

    .footer-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .footer a {
      color: #d7dde2;
    }

    .footer a:hover {
      color: #fff;
    }

    @media (max-width: 1180px) {
      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 1080px) {
      .hero-home-grid,
      .local-grid {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .reviews-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 820px) {
      .trust-grid,
      .services-grid,
      .reviews-grid,
      .stats-grid,
      .showcase-grid,
      .service-area-grid {
        grid-template-columns: 1fr;
      }

      .hero-home {
        padding: 84px 0 68px;
      }

      .hero-home h1 {
        font-size: 2.4rem;
      }
	  
	  .service-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,255,0.94));
  border: 1px solid rgba(15, 76, 129, 0.10);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(10, 32, 58, 0.07);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(10, 32, 58, 0.13);
  border-color: rgba(26,166,183,0.28);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  color: #0d3557;
}

.service-card p {
  margin: 0;
  color: #607182;
  line-height: 1.75;
}

.card-bottom {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-note {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,210,127,0.18), rgba(255,159,67,0.14));
  color: #9a5a14;
  border: 1px solid rgba(255,159,67,0.16);
  font-size: 0.84rem;
  font-weight: 700;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--jax-blue);
  transition: color .2s ease, transform .2s ease;
}

.mini-link:hover {
  color: var(--jax-teal);
  transform: translateX(3px);
}

      .nav {
        flex-direction: column;
        align-items: flex-start;
      }
    }