      /* ===========================
         Rate Plan Sub-Pages
         (fixed-rate & index-rate)
         =========================== */

      /* Breadcrumb */
      .breadcrumb {
        padding: 7.5rem 4rem 0;
        background: transparent;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 3;
      }

      .breadcrumb-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
      }

      .breadcrumb-inner a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.2s ease;
      }

      .breadcrumb-inner a:hover {
        color: var(--color-white);
      }

      .breadcrumb-inner .breadcrumb-separator {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.75rem;
      }

      .breadcrumb-inner .breadcrumb-current {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
      }

      /* Gradient Hero (no background image) */
      .hero-gradient {
        min-height: 55vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 9rem 4rem 4rem;
        position: relative;
        z-index: 1;
        background: linear-gradient(135deg, #0d1b2a 0%, #1e5f99 100%);
      }

      .hero-gradient .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .hero-gradient .hero-title {
        font-family: var(--font-body);
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        color: var(--color-white);
        margin: 0 0 1rem;
      }

      .hero-gradient .hero-paragraph {
        font-family: var(--font-body);
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.6;
        color: var(--color-light);
        max-width: 600px;
        margin: 0 auto 2rem;
      }

      .hero-gradient .hero-cta {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--color-accent);
        color: var(--color-white);
        text-decoration: none;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      .hero-gradient .hero-cta:hover {
        background: var(--color-accent-dark);
        box-shadow: 0 4px 15px rgba(232, 119, 34, 0.3);
        transform: translateY(-2px);
      }

      /* SEO Content Section — Alternating Rows */
      .seo-content-section {
        padding: 6rem 4rem;
        background: var(--color-white);
        position: relative;
        z-index: 1;
        border-top: 1px solid rgba(40, 120, 192, 0.12);
      }

      .seo-content-container {
        max-width: 1200px;
        margin: 0 auto;
      }

      .seo-content-heading {
        font-family: var(--font-display);
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        font-weight: 600;
        color: var(--color-midnight);
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
      }

      .seo-content-subheading {
        text-align: center;
        color: var(--color-slate);
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 720px;
        margin: 0 auto 3rem;
      }

      .seo-rows {
        display: flex;
        flex-direction: column;
        gap: 5rem;
      }

      .seo-row {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 4rem;
        align-items: center;
      }

      .seo-row.reverse .seo-illustration {
        order: 2;
      }

      .seo-illustration {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(40, 120, 192, 0.08), rgba(232, 119, 34, 0.06));
        border-radius: 20px;
        padding: 2.5rem;
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        aspect-ratio: 4 / 3;
        box-shadow: 0 8px 32px rgba(13, 27, 42, 0.06);
      }

      .seo-illustration svg {
        width: 100%;
        height: 100%;
        max-width: 380px;
      }

      .seo-text h3 {
        font-family: var(--font-display);
        font-size: clamp(1.5rem, 3vw, 2rem);
        color: var(--color-midnight);
        font-weight: 600;
        margin-bottom: 1rem;
      }

      .seo-text p {
        font-size: 1rem;
        color: var(--color-slate);
        line-height: 1.8;
      }

      /* Why Choose / Pros Section — uses existing .why-choose-section,
         .why-choose-benefits, .benefit-item from industries.css via global.
         We only add overrides if needed. */

      /* Comparison Table Section */
      .comparison-section {
        padding: 5rem 4rem;
        background: var(--color-white);
        position: relative;
        z-index: 1;
      }

      .comparison-container {
        max-width: 900px;
        margin: 0 auto;
      }

      .comparison-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(13, 27, 42, 0.06);
        border: 1px solid rgba(40, 120, 192, 0.1);
        margin-top: 2.5rem;
      }

      .comparison-table thead th {
        padding: 1.25rem 1.5rem;
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 700;
        text-align: center;
        color: var(--color-white);
        background: var(--color-midnight);
      }

      .comparison-table thead th:first-child {
        background: var(--color-midnight);
        text-align: left;
      }

      .comparison-table thead th.highlight {
        background: var(--color-primary);
      }

      .comparison-table tbody td {
        padding: 1.1rem 1.5rem;
        font-size: 0.95rem;
        color: var(--color-slate);
        border-bottom: 1px solid rgba(40, 120, 192, 0.08);
        text-align: center;
        line-height: 1.5;
      }

      .comparison-table tbody td:first-child {
        font-weight: 600;
        color: var(--color-midnight);
        text-align: left;
        background: #fafbfc;
      }

      .comparison-table tbody td.highlight-col {
        background: rgba(40, 120, 192, 0.04);
      }

      .comparison-table tbody tr:last-child td {
        border-bottom: none;
      }

      .comparison-table .verdict-row td {
        padding: 1.25rem 1.5rem;
        font-weight: 600;
        font-size: 0.95rem;
        background: #f8f9fb;
        border-top: 2px solid rgba(40, 120, 192, 0.12);
      }

      .comparison-table .verdict-row td.highlight-col {
        color: var(--color-primary);
        background: rgba(40, 120, 192, 0.07);
      }

      .comparison-index-link {
        display: inline-block;
        margin-top: 1.5rem;
        color: var(--color-primary);
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
        text-align: center;
        width: 100%;
      }

      .comparison-index-link:hover {
        color: var(--color-accent);
        text-decoration: underline;
      }

      .comparison-index-link::after {
        content: ' \2192';
      }

      /* Cities Section */
      .cities-section {
        padding: 6rem 4rem;
        background: #f8f9fb;
        position: relative;
        z-index: 1;
      }

      .cities-container {
        max-width: 1200px;
        margin: 0 auto;
      }

      /* Final CTA */
      .final-cta {
        padding: 5rem 4rem;
        background: var(--color-accent);
        text-align: center;
        color: var(--color-white);
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

      .final-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
      }

      .final-cta-inner {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .final-cta h2 {
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        font-weight: 600;
        margin-bottom: 1rem;
        line-height: 1.2;
      }

      .final-cta p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
      }

      .final-cta .cta-btn {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: transparent;
        border: 2px solid var(--color-white);
        color: var(--color-white);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      .final-cta .cta-btn:hover {
        background: var(--color-white);
        color: var(--color-accent);
      }

      /* Responsive */
      @media (max-width: 1024px) {
        .breadcrumb { padding: 4.75rem 2rem 0; }
        .hero-gradient { padding: 7rem 2rem 3rem; }
        .seo-content-section { padding: 4rem 2rem; }
        .seo-row { grid-template-columns: 1fr; gap: 2rem; }
        .seo-row.reverse .seo-illustration { order: -1; }
        .seo-illustration { max-width: 380px; padding: 2rem; }
        .seo-rows { gap: 3.5rem; }
        .comparison-section { padding: 3.5rem 2rem; }
        .cities-section { padding: 4rem 2rem; }
        .final-cta { padding: 4rem 2rem; }

        .comparison-table thead th { font-size: 0.95rem; padding: 1rem 1rem; }
        .comparison-table tbody td { padding: 0.9rem 1rem; font-size: 0.9rem; }
      }

      @media (max-width: 768px) {
        .breadcrumb { padding: 4.5rem 1.5rem 0; }
        .breadcrumb-inner { font-size: 0.78rem; }
        .hero-gradient { padding: 6.5rem 1.5rem 2.5rem; min-height: 45vh; }
        .seo-content-section { padding: 3rem 1.5rem; }
        .seo-rows { gap: 3rem; }
        .comparison-section { padding: 3rem 1.5rem; }
        .cities-section { padding: 3rem 1.5rem; }
        .final-cta { padding: 3.5rem 1.5rem; }

        /* Stack comparison table on small screens */
        .comparison-table,
        .comparison-table thead,
        .comparison-table tbody,
        .comparison-table tr,
        .comparison-table th,
        .comparison-table td {
          display: block;
        }

        .comparison-table thead {
          display: none;
        }

        .comparison-table tbody tr {
          margin-bottom: 1rem;
          border: 1px solid rgba(40, 120, 192, 0.1);
          border-radius: 10px;
          overflow: hidden;
        }

        .comparison-table tbody td {
          text-align: left;
          padding: 0.85rem 1.25rem;
          border-bottom: 1px solid rgba(40, 120, 192, 0.06);
        }

        .comparison-table tbody td:first-child {
          background: var(--color-primary);
          color: var(--color-white);
          font-size: 0.95rem;
        }

        .comparison-table tbody td::before {
          content: attr(data-label);
          display: block;
          font-size: 0.78rem;
          font-weight: 600;
          color: var(--color-primary-dark);
          text-transform: uppercase;
          letter-spacing: 0.04em;
          margin-bottom: 0.25rem;
        }

        .comparison-table tbody td:first-child::before {
          display: none;
        }

        .comparison-table tbody td.highlight-col {
          background: transparent;
        }

        .comparison-table .verdict-row td {
          border-top: none;
        }

        .comparison-table .verdict-row td.highlight-col {
          background: rgba(40, 120, 192, 0.06);
        }
      }
