    /* ═══════════════════════════════════════════════
       BRAND VARIABLES (aligned with style.css)
    ═══════════════════════════════════════════════ */
    :root {
        --ustar-orange: #fa4d09;
        --ustar-orange-hover: #fc8253;
        --ustar-gold: #f39800;
        --ustar-navy: #223a66;
        --ustar-navy-dark: #152440;
        --ustar-text: #000;
        --ustar-heading: #222;
        --ustar-muted: #6F8BA4;
        --ustar-bg-light: #f4f9fc;
        --ustar-bg-warm: #ffede6;
        --ustar-border: #EEF2F6;
        --ustar-radius: 5px;
      }
      .medal-icon {
        width: 1em;
        height: 1em;
        vertical-align: -0.125em;
        fill: currentColor;
        color: #FFD700;
      }
  
      /* ═══════════════════════════════════════════════
         DEFAULT TYPOGRAPHY (matches style.css exactly)
      ═══════════════════════════════════════════════ */
      html { scroll-behavior: smooth; overflow-x: hidden; }
  
      body {
        font-family: "Open Sans", sans-serif;
        font-optical-sizing: auto;
        font-variation-settings: "wdth" 100;
        -webkit-font-smoothing: antialiased;
        font-size: 16px;
        color: var(--ustar-text);
        font-weight: 400;
        line-height: 1.6;
        overflow-x: hidden;
      }
  
      h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
        font-family: "Alegreya", serif;
        font-optical-sizing: auto;
        font-weight: 700;
        color: var(--ustar-heading);
      }
  
      h1, .h1 { font-size: 2.5rem; }
      h2, .h2 { font-size: 44px; }
      h3, .h3 { font-size: 1.5rem; }
      h4, .h4 { font-size: 1.6rem; line-height: 30px; }
      h5, .h5 { font-size: 1.25rem; }
      h6, .h6 { font-size: 1.20rem; }
  
      p {
        line-height: 25px;
        font-size: 16px;
      }
  
      a {
        color: #222;
        text-decoration: none;
        transition: all .35s ease;
      }
      a:focus, a:hover {
        color: var(--ustar-orange);
        text-decoration: none;
      }
  
      img { max-width: 100%; display: block; }
  
      /* ═══════════════════════════════════════════════
         BOOTSTRAP BUTTON OVERRIDES (site-aligned)
      ═══════════════════════════════════════════════ */
      .btn {
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .5px;
        padding: .75rem 2rem;
        font-family: "Exo", sans-serif;
        text-transform: uppercase;
        border-radius: var(--ustar-radius);
        border: 2px solid transparent;
        transition: all .35s ease;
      }
  
      .btn-ustar-main {
        background: #000;
        color: #fff;
        border-color: #000;
      }
      .btn-ustar-main:hover {
        background: var(--ustar-gold);
        border-color: var(--ustar-gold);
        color: #fff;
      }
  
      .btn-ustar-orange {
        background: var(--ustar-orange) !important;
        color: #fff !important;
        border-color: var(--ustar-orange) !important;
      }
      .btn-ustar-orange:hover {
        background: var(--ustar-orange-hover) !important;
        border-color: var(--ustar-orange-hover) !important;
        color: #fff !important;
      }
  
      .btn-ustar-outline {
          border: 2px solid #fff !important;
          background: transparent !important;
          color: #fff !important;
      }

      .btn-ustar-outline:hover {
          background: #fff !important;
          color: var(--ustar-orange) !important;
      }
  
      .btn-ustar-white {
        background: #fff !important;
        border-color: #fff !important;
        color: var(--ustar-orange) !important;
      }
      .btn-ustar-white:hover {
        background: var(--ustar-orange-hover) !important;
        color: #fff !important;
        border-color: var(--ustar-orange-hover) !important;
      }
  
      /* ═══════════════════════════════════════════════
         NAVBAR (Bootstrap 4.5.3 navbar-expand-lg)
      ═══════════════════════════════════════════════ */
      .navbar-ustar {
        background: #fff;
        border-bottom: 1px solid var(--ustar-border);
        padding: 0.5rem 0;
      }
      .navbar-ustar .navbar-brand {
        font-family: "Alegreya", serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--ustar-heading);
        letter-spacing: 1px;
      }
      .navbar-ustar .navbar-brand span {
        color: var(--ustar-orange);
      }
      .navbar-ustar .nav-link {
        font-weight: 600;
        padding: 15px 15px;
        color: #222;
        font-family: "Exo", sans-serif;
        text-transform: capitalize;
        font-size: 16px;
        transition: all .25s ease;
      }
      .navbar-ustar .nav-link:hover,
      .navbar-ustar .active .nav-link {
        color: var(--ustar-gold);
      }
      .navbar-ustar .btn-nav-cta {
        background: var(--ustar-orange);
        color: #fff !important;
        padding: 8px 20px !important;
        border-radius: var(--ustar-radius);
        font-size: 14px !important;
        font-weight: 600 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-left: 10px;
      }
      .navbar-ustar .btn-nav-cta:hover {
        background: var(--ustar-orange-hover);
        color: #fff !important;
      }
      .navbar-ustar .navbar-toggler {
        border: none;
        outline: none;
      }
      .navbar-ustar .navbar-toggler .icon-bar {
        background: var(--ustar-navy);
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
        margin: 4px 0;
      }
  
      /* ═══════════════════════════════════════════════
         HERO SECTION
      ═══════════════════════════════════════════════ */
      .hero-section {
        background: var(--ustar-navy-dark);
        position: relative;
        overflow: hidden;
        padding: 70px 0 80px;
        min-height: 82vh;
      }
      .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
          radial-gradient(ellipse 60% 60% at 70% 50%, rgba(250,77,9,0.12) 0%, transparent 70%),
          repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.02) 61px),
          repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.02) 61px);
        pointer-events: none;
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(243,152,0,0.15);
        border: 1px solid rgba(243,152,0,0.35);
        color: var(--ustar-gold);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 8px 16px;
        border-radius: 999px;
        margin-bottom: 24px;
      }
      .hero-badge .pulse-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--ustar-gold);
        animation: pulse 1.8s ease-in-out infinite;
      }
      @keyframes pulse {
        0%,100%{opacity:1;transform:scale(1)}
        50%{opacity:0.5;transform:scale(0.7)}
      }
      .hero-title {
        font-family: "Alegreya", serif;
        font-size: clamp(40px, 5vw, 72px);
        font-weight: 700;
        line-height: 1.15;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: -1px;
        margin-bottom: 24px;
      }
      .hero-title .accent {
        color: var(--ustar-orange);
        display: block;
        font-weight: 800;
      }
      .hero-sub {
        font-size: 18px;
        color: rgba(255,255,255,0.75);
        max-width: 480px;
        margin-bottom: 36px;
        line-height: 1.6;
        font-weight: 400;
      }
      .hero-flags {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 36px;
      }
      .flag-pill {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        color: rgba(255,255,255,0.85);
        font-size: 13px;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 999px;
      }
      .flag-pill i {
        font-size: 14px;
      }
  
      /* Kit showcase in hero */
      .kit-showcase {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 20px;
        padding: 32px;
      }
      .kit-item {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        transition: background 0.2s, border-color 0.2s;
        margin-bottom: 14px;
      }
      .kit-item:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(250,77,9,0.4);
      }
      .kit-item i {
        font-size: 32px;
        color: rgba(255,255,255,0.9);
        margin-bottom: 10px;
        display: block;
      }
      .kit-item .medal-icon {
        font-size: 24px;
        margin-bottom: 10px;
        display: inline-block;
        color: rgba(255,255,255,0.9);
      }
      .kit-item-label {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.7);
        display: block;
      }
      .kit-item-customise {
        font-size: 12px;
        color: var(--ustar-orange);
        font-weight: 600;
        letter-spacing: 0.3px;
      }
      .kit-item.featured {
        border-color: rgba(250,77,9,0.35);
        background: rgba(250,77,9,0.07);
        text-align: left;
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .kit-item.featured i { font-size: 40px; margin-bottom: 0; }
      .kit-item.featured .kit-info { text-align: left; }
      .kit-item.featured .kit-item-label { font-size: 15px; color: rgba(255,255,255,0.9); }
  
      .stat-card {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        padding: 20px;
        text-align: center;
      }
      .stat-num {
        font-family: "Alegreya", serif;
        font-size: 28px;
        font-weight: 800;
        color: #fff;
        letter-spacing: -1px;
        display: block;
        line-height: 1.2;
      }
      .stat-label {
        font-size: 12px;
        color: rgba(255,255,255,0.55);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-weight: 600;
      }
  
      /* ═══════════════════════════════════════════════
         TRUST BAR
      ═══════════════════════════════════════════════ */
      .trust-bar {
        background: var(--ustar-orange);
        padding: 16px 0;
      }
      .trust-container {
        padding-left: 48px;
        padding-right: 48px;
      }
      .trust-row {
        row-gap: 12px;
      }
      .trust-col {
        padding-left: 12px;
        padding-right: 12px;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 700;
        color: rgba(255,255,255,0.95);
        letter-spacing: 0.3px;
        text-transform: uppercase;
      }
      .trust-item i {
        font-size: 14px;
      }
  
      /* ═══════════════════════════════════════════════
         SECTIONS
      ═══════════════════════════════════════════════ */
      .section-ustar {
        padding: 100px 0;
      }
      .section-ustar-sm {
        padding: 70px 0;
      }
      .bg-ustar-dark {
        background: var(--ustar-navy-dark);
        color: #fff;
      }
      .bg-ustar-surface {
        background: var(--ustar-bg-warm);
      }
      .bg-ustar-light {
        background: var(--ustar-bg-light);
      }
      .section-label {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--ustar-orange);
        margin-bottom: 14px;
        display: block;
      }
      .section-title {
        font-family: "Alegreya", serif;
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 700;
        line-height: 1.15;
        text-transform: uppercase;
        margin-bottom: 20px !important;
        letter-spacing: -0.5px;
      }
      .section-sub {
        font-size: 18px;
        color: var(--ustar-muted);
        max-width: 560px;
        margin-bottom: 50px;
        line-height: 25px;
      }
      .section-ustar .section-label,
      .section-ustar .section-title,
      .section-ustar .section-sub {
        text-align: center;
      }
      .section-ustar .section-sub {
        margin-left: auto;
        margin-right: auto;
      }
      .bg-ustar-dark .section-sub {
        color: rgba(255,255,255,0.65);
      }
      .bg-ustar-dark h2,
      .bg-ustar-dark h3 {
        color: #fff;
      }
  
      /* ═══════════════════════════════════════════════
         PRODUCT CARDS
      ═══════════════════════════════════════════════ */
      .product-grid {
        display: flex;
        flex-wrap: wrap;
        row-gap: 24px;
      }
      .product-grid > [class*="col-"] {
        display: flex;
      }
      .product-card {
        background: #fff;
        border: 1px solid var(--ustar-border);
        border-radius: 20px;
        padding: 32px 28px 28px;
        transition: box-shadow 0.25s, transform 0.2s;
        position: relative;
        overflow: hidden;
        height: 100%;
        margin-bottom: 0;
      }
      .process-row {
        justify-content: center;
        max-width: 1180px;
        margin-left: auto;
        margin-right: auto;
      }
      .product-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--ustar-orange);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.25s;
      }
      .product-card:hover {
        box-shadow: 0 8px 40px rgba(0,0,0,0.13);
        transform: translateY(-3px);
      }
      .product-card:hover::after {
        transform: scaleX(1);
      }
      .product-card i {
        font-size: 40px;
        color: var(--ustar-orange);
        margin-bottom: 16px;
        display: block;
      }
      .product-card .medal-icon {
        font-size: 32px;
        margin-bottom: 16px;
        display: inline-block;
        color: var(--ustar-orange);
      }
      .product-card h3 {
        font-family: "Alegreya", serif;
        font-size: 22px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
        line-height: 1.3;
      }
      .product-card p {
        font-size: 15px;
        color: var(--ustar-muted);
        line-height: 25px;
        margin-bottom: 16px;
      }
      .product-tag {
        display: inline-block;
        background: rgba(250,77,9,0.1);
        color: #c43a07;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .product-tag.gold {
        background: rgba(243,152,0,0.12);
        color: #8a5c00;
      }
  
      /* ═══════════════════════════════════════════════
         USP CARDS
      ═══════════════════════════════════════════════ */
      .usp-card {
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        padding: 36px;
        position: relative;
        overflow: hidden;
        transition: border-color 0.2s;
        height: 100%;
        margin-bottom: 24px;
      }
      .usp-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--ustar-orange), var(--ustar-gold));
        opacity: 0;
        transition: opacity 0.25s;
      }
      .usp-card:hover {
        border-color: rgba(255,255,255,0.2);
      }
      .usp-card:hover::before {
        opacity: 1;
      }
      .usp-num {
        font-family: "Alegreya", serif;
        font-size: 56px;
        font-weight: 800;
        color: rgba(255,255,255,0.06);
        position: absolute;
        top: 16px;
        right: 20px;
        line-height: 1;
      }
      .usp-card i {
        font-size: 32px;
        color: var(--ustar-orange);
        margin-bottom: 16px;
        display: block;
      }
      .usp-card h3 {
        font-family: "Alegreya", serif;
        font-size: 22px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 12px;
        line-height: 1.3;
      }
      .usp-card p {
        font-size: 15px;
        color: rgba(255,255,255,0.65);
        line-height: 25px;
      }
  
      /* ═══════════════════════════════════════════════
         PROCESS STEPS
      ═══════════════════════════════════════════════ */
      .process-step {
        padding: 40px 20px;
        text-align: center;
        position: relative;
      }
      .process-step:not(:last-child)::after {
        content: '\f061';
        font-family: "FontAwesome";
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        color: var(--ustar-orange);
        z-index: 1;
      }
      .step-circle {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--ustar-orange);
        color: #fff;
        font-family: "Alegreya", serif;
        font-size: 22px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
      }
      .process-step h4 {
        font-family: "Alegreya", serif;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 8px;
        line-height: 1.3;
      }
      .process-step p {
        font-size: 15px;
        color: var(--ustar-muted);
        line-height: 25px;
      }
  
      /* ═══════════════════════════════════════════════
         MARKET CARDS
      ═══════════════════════════════════════════════ */
      .market-card {
        background: #fff;
        border: 1px solid var(--ustar-border);
        border-radius: 20px;
        padding: 40px 32px;
        text-align: center;
        transition: box-shadow 0.25s, transform 0.2s;
        height: 100%;
      }
      .market-card:hover {
        box-shadow: 0 8px 40px rgba(0,0,0,0.13);
        transform: translateY(-3px);
      }
      .market-card i {
        font-size: 48px;
        color: var(--ustar-orange);
        margin-bottom: 16px;
        display: block;
      }
      .market-card h3 {
        font-family: "Alegreya", serif;
        font-size: 26px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 12px;
        line-height: 1.2;
      }
      .market-card p {
        font-size: 15px;
        color: var(--ustar-muted);
        line-height: 25px;
      }
      .event-tag {
        background: var(--ustar-bg-light);
        font-size: 12px;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 4px;
        color: var(--ustar-muted);
        display: inline-block;
        margin: 3px;
      }
  
      /* ═══════════════════════════════════════════════
         CUSTOMISATION LIST
      ═══════════════════════════════════════════════ */
      .custom-list {
        list-style: none;
        padding: 0;
      }
      .custom-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 22px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        font-size: 16px;
        color: rgba(255,255,255,0.85);
        line-height: 25px;
        margin-bottom: 16px;
      }
      .custom-list li strong {
        color: #fff;
        display: block;
        margin-bottom: 4px;
        font-size: 15px;
        font-weight: 700;
      }
      .custom-list li span {
        font-size: 14px;
        color: rgba(255,255,255,0.55);
        line-height: 25px;
      }
      .check-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(250,77,9,0.15);
        color: var(--ustar-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 2px;
      }
  
      .custom-visual {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        padding: 40px;
        text-align: center;
      }
      .sample-kit {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-bottom: 28px;
      }
      .sample-item {
        background: rgba(255,255,255,0.06);
        border-radius: 12px;
        padding: 24px 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
      .sample-item i {
        font-size: 32px;
        color: rgba(255,255,255,0.8);
      }
      .sample-item .medal-icon {
        font-size: 28px;
        color: rgba(255,255,255,0.9);
      }
      .sample-item .label {
        font-size: 12px;
        font-weight: 700;
        color: rgba(255,255,255,0.55);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
  
      /* ═══════════════════════════════════════════════
         FAQ ACCORDION
      ═══════════════════════════════════════════════ */
      .faq-list {
        max-width: 900px;
        margin: 0 auto;
      }
      .faq-item {
        border-bottom: 1px solid var(--ustar-border);
        padding: 28px 0;
      }
      .faq-item:first-child {
        border-top: 1px solid var(--ustar-border);
      }
      .faq-q {
        font-family: "Alegreya", serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        user-select: none;
        line-height: 1.4;
        color: var(--ustar-heading);
        text-align: center;
      }
      .faq-q::after {
        content: '+';
        font-size: 24px;
        color: var(--ustar-orange);
        flex-shrink: 0;
        transition: transform 0.2s;
      }
      .faq-item.open .faq-q::after {
        transform: rotate(45deg);
      }
      .faq-a {
        font-size: 16px;
        color: var(--ustar-muted);
        line-height: 25px;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s, padding-top 0.3s;
      }
      .faq-item.open .faq-a {
        max-height: 1000px;
        padding-top: 16px;
      }
  
      /* ═══════════════════════════════════════════════
         CTA BANNER
      ═══════════════════════════════════════════════ */
      .cta-banner {
        background: var(--ustar-orange);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
          repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 21px, rgba(255,255,255,0.03) 22px);
        pointer-events: none;
      }
      .cta-banner h2 {
        font-family: "Alegreya", serif;
        font-size: clamp(36px, 5vw, 64px);
        font-weight: 800;
        line-height: 1.15;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 20px;
      }
      .cta-banner p {
        font-size: 18px;
        color: rgba(255,255,255,0.9);
        margin-bottom: 36px;
        line-height: 25px;
      }
      .cta-actions .btn {
        margin: 8px;
      }
  
      /* ═══════════════════════════════════════════════
         QUOTE FORM
      ═══════════════════════════════════════════════ */
      .quote-section {
        background: var(--ustar-navy-dark);
        padding: 80px 0;
      }
      .form-ustar .form-control,
      .appoinment-form .form-control {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: var(--ustar-radius);
        padding: 14px 16px;
        font-family: "Open Sans", sans-serif;
        font-size: 15px;
        color: #fff;
        outline: none;
        transition: border-color 0.2s;
        height: auto;
        line-height: 1.5;
      }
      .form-ustar .form-control::placeholder,
      .appoinment-form .form-control::placeholder {
        color: rgba(255,255,255,0.35);
      }
      .form-ustar .form-control:focus,
      .appoinment-form .form-control:focus {
        border-color: var(--ustar-orange);
        background: rgba(255,255,255,0.06);
        color: #fff;
        box-shadow: none;
      }
      .form-ustar select.form-control option,
      .appoinment-form select.form-control option {
        background: var(--ustar-navy-dark);
        color: #fff;
      }
      .form-ustar textarea.form-control,
      .appoinment-form textarea.form-control {
        resize: vertical;
        min-height: 120px;
      }
      .form-ustar label,
      .appoinment-form label {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.65);
        margin-bottom: 6px;
      }
      .form-note {
        font-size: 14px;
        color: rgba(255,255,255,0.45);
        text-align: center;
        line-height: 25px;
      }
      .quote-section .appoinment-form .form-control {
        background: rgba(255,255,255,0.06) !important;
        color: #fff !important;
        border: 1px solid rgba(255,255,255,0.12) !important;
      }
      .quote-section .appoinment-form .form-control:focus {
        background: rgba(255,255,255,0.06) !important;
        color: #fff !important;
        border-color: var(--ustar-orange) !important;
        box-shadow: none !important;
      }
      .quote-section .appoinment-form .form-control::placeholder {
        color: rgba(255,255,255,0.35) !important;
      }
      .quote-section .appoinment-form .form-control:-webkit-autofill,
      .quote-section .appoinment-form .form-control:-webkit-autofill:hover,
      .quote-section .appoinment-form .form-control:-webkit-autofill:focus {
        -webkit-text-fill-color: #fff !important;
        -webkit-box-shadow: 0 0 0px 1000px rgba(18, 31, 56, 0.95) inset !important;
        transition: background-color 5000s ease-in-out 0s;
      }
  
      /* ═══════════════════════════════════════════════
         FOOTER
      ═══════════════════════════════════════════════ */
      .footer-ustar {
        background: #0a0b0e;
        padding: 48px 0 28px;
      }
      .footer-ustar .brand {
        font-family: "Alegreya", serif;
        font-size: 28px;
        font-weight: 800;
        color: #fff;
        letter-spacing: 1px;
        margin-bottom: 10px;
      }
      .footer-ustar .brand span {
        color: var(--ustar-orange);
      }
      .footer-ustar p {
        font-size: 15px;
        color: rgba(255,255,255,0.45);
        max-width: 300px;
        line-height: 25px;
      }
      .footer-ustar h4 {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.45);
        margin-bottom: 16px;
      }
      .footer-ustar ul {
        list-style: none;
        padding: 0;
      }
      .footer-ustar ul li {
        margin-bottom: 10px;
      }
      .footer-ustar ul li a {
        font-size: 15px;
        color: rgba(255,255,255,0.6);
        transition: color 0.2s;
        line-height: 1.5;
      }
      .footer-ustar ul li a:hover {
        color: #fff;
      }
      .footer-ustar .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.07);
        padding-top: 28px;
        margin-top: 36px;
      }
      .footer-ustar .footer-bottom p {
        font-size: 13px;
        color: rgba(255,255,255,0.35);
        line-height: 25px;
        margin-bottom: 0;
      }
  
      /* ═══════════════════════════════════════════════
         RESPONSIVE OVERRIDES
      ═══════════════════════════════════════════════ */
      @media (max-width: 991px) {
        .process-step:not(:last-child)::after { display: none; }
        .hero-section { padding: 60px 0 50px; min-height: auto; }
        .hero-title { font-size: 36px; }
        h2, .h2 { font-size: 36px; }
      }
      @media (max-width: 767px) {
        .section-ustar { padding: 60px 0; }
        .hero-title { font-size: 32px; }
        .section-title { font-size: 28px; }
        .stat-card { margin-bottom: 12px; }
        .market-card { margin-bottom: 20px; }
        .product-card { margin-bottom: 20px; }
        .usp-card { margin-bottom: 20px; }
        .trust-container { padding-left: 20px; padding-right: 20px; }
      }
      @media (max-width: 480px) {
        h2, .h2 { font-size: 28px; }
        .hero-title { font-size: 28px; }
      }