/*  DESIGN TOKENS  */
    :root {
      --navy:     #0c1733;
      --navy-mid: #13244b;
      --forest:   #0d3328;
      --green:    #35c264;
      --green-dk: #1e9d55;
      --green-lt: #a8f0c2;
      --blue:     #4272ff;
      --gold:     #e8b84b;
      --white:    #ffffff;
      --off-white:#f4f7ff;
      --muted:    #6b7a99;
      --border:   #e0e8f4;
      --shadow-sm: 0 4px 24px rgba(12,23,51,.07);
      --shadow-md: 0 12px 48px rgba(12,23,51,.13);
      --shadow-lg: 0 24px 72px rgba(12,23,51,.18);
      --r-sm: 12px;
      --r-md: 20px;
      --r-lg: 28px;
    }

    *, *::before, *::after { box-sizing: border-box; }

    body.service-shell {
      background: var(--off-white);
      font-family: 'DM Sans', sans-serif;
      color: var(--navy);
    }

    /*  PRELOADER (unchanged)  */
    .container-preloader { align-items:center;cursor:none;display:flex;height:100%;justify-content:center;position:fixed;left:0;top:0;width:100%;z-index:900; }
    .container-preloader .animation-preloader { position:absolute;z-index:100; }
    .container-preloader .animation-preloader .spinner { animation:spinner 1s infinite linear;border-radius:50%;border:10px solid rgba(0,0,0,.2);border-top-color:#ed1c24;height:9em;margin:0 auto 3.5em auto;width:9em; }
    .container-preloader .animation-preloader .txt-loading { font:bold 5em "Montserrat",sans-serif;text-align:center;user-select:none; }
    .container-preloader .animation-preloader .txt-loading .characters { color:rgba(0,0,0,.2);position:relative; }
    .container-preloader .animation-preloader .txt-loading .characters:before { animation:characters 4s infinite;color:#101933;content:attr(preloader-text);left:0;opacity:0;position:absolute;top:0;transform:rotateY(-90deg); }
    .container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before{animation-delay:.2s}
    .container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before{animation-delay:.4s}
    .container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before{animation-delay:.6s}
    .container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before{animation-delay:.8s}
    .container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before{animation-delay:1s}
    .container-preloader .animation-preloader .txt-loading .characters:nth-child(7):before{animation-delay:1.2s}
    .container-preloader .loader-section { background-color:#fff;height:100%;position:fixed;top:0;width:calc(50% + 1px); }
    .container-preloader .loader-section.section-left { left:0; }
    .container-preloader .loader-section.section-right { right:0; }
    .loaded .animation-preloader { opacity:0;transition:.3s ease-out; }
    .loaded .loader-section.section-left { transform:translateX(-101%);transition:.7s .3s all cubic-bezier(.1,.1,.1,1); }
    .loaded .loader-section.section-right { transform:translateX(101%);transition:.7s .3s all cubic-bezier(.1,.1,.1,1); }
    @keyframes spinner { to { transform:rotateZ(360deg); } }
    @keyframes characters { 0%,75%,100%{opacity:0;transform:rotateY(-90deg)}25%,50%{opacity:1;transform:rotateY(0deg)} }

    .flag-icon {
      display: inline-block;
      vertical-align: middle;
      width: 20px;
      height: 15px;
      margin-right: 5px;
    }
    .country {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
    }
    /* Header UI: css/footer-component.css */

    /*  HERO  */
    .service-hero {
      position: relative;
      overflow: hidden;
      padding: 25px 0 110px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--forest) 100%);
      color: var(--white);
    }

    /* Grid texture overlay */
    .service-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    /* Diagonal accent bar */
    .service-hero::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 44%;
      height: 100%;
      background: linear-gradient(135deg, transparent 40%, rgba(53,194,100,.07) 100%);
      clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
      pointer-events: none;
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(1px);
    }
    .hero-orb.a {
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(53,194,100,.22) 0%, transparent 70%);
      top: -180px; left: -160px;
    }
    .hero-orb.b {
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(66,114,255,.2) 0%, transparent 70%);
      bottom: -140px; right: -80px;
    }
    .hero-orb.c {
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(232,184,75,.15) 0%, transparent 70%);
      top: 50%; right: 28%;
      transform: translateY(-50%);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 20px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 2px;
      background: var(--green);
      border-radius: 2px;
    }

    .service-hero h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 800;
      font-size: clamp(38px, 5.5vw, 64px);
      line-height: 1.06;
      letter-spacing: -.02em;
      color: var(--white);
      margin-bottom: 22px;
      max-width: 820px;
    }
    .service-hero h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--green-lt), var(--green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .service-hero .hero-lead {
      font-size: 17px;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,.78);
      max-width: 680px;
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 52px;
    }
    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--green-dk), var(--green));
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      padding: 14px 30px;
      border-radius: 999px;
      text-decoration: none;
      transition: transform .25s, box-shadow .25s;
      box-shadow: 0 8px 28px rgba(30,157,85,.35);
    }
    .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(30,157,85,.45); color: var(--white); }
    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.88);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      padding: 14px 6px;
      border-bottom: 1px solid rgba(255,255,255,.3);
      transition: color .2s, border-color .2s;
    }
    .btn-hero-secondary:hover { color: var(--green-lt); border-color: var(--green); }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .hero-tag {
      font-family: 'DM Sans', sans-serif;
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(255,255,255,.75);
      padding: 7px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(8px);
      transition: border-color .2s, background .2s;
    }
    .hero-tag:hover { border-color: var(--green); background: rgba(53,194,100,.12); }

    /* Stat bar inside hero */
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 52px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,.1);
      flex-wrap: wrap;
    }
    .hero-stat-item { display: flex; flex-direction: column; gap: 4px; }
    .hero-stat-item .num {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-item .num span { color: var(--green); }
    .hero-stat-item .label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
    }

    /*  MAIN CONTENT SHELL  */
    .service-main {
      margin-top: -52px;
      position: relative;
      z-index: 2;
      padding-bottom: 100px;
    }
    .content-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /*  SECTION LABEL  */
    .s-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--green-dk);
      margin-bottom: 10px;
    }
    .s-label::before {
      content: '';
      display: block;
      width: 22px; height: 2px;
      background: var(--green);
      border-radius: 2px;
    }

    /*  OVERVIEW PANEL  */
    .overview-panel {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      padding: 52px;
      margin-bottom: 30px;
      overflow: hidden;
      position: relative;
    }
    .overview-panel::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--green) 0%, var(--blue) 100%);
      border-radius: 4px 0 0 4px;
    }

    .overview-panel h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 700;
      line-height: 1.22;
      color: var(--navy);
      margin-bottom: 28px;
      max-width: 540px;
    }

    .tick-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 28px;
    }
    .tick-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14.5px;
      line-height: 1.55;
      color: #4a5778;
    }
    .tick-list li::before {
      content: '';
      flex-shrink: 0;
      width: 20px; height: 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-dk), var(--green));
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: 12px;
      background-repeat: no-repeat;
      background-position: center;
      margin-top: 1px;
    }

    .overview-img-wrap {
      position: relative;
      border-radius: var(--r-md);
      overflow: hidden;
      height: 380px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--forest) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .overview-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .overview-img-badge {
      position: absolute;
      bottom: 20px; left: 20px;
      background: rgba(255,255,255,.95);
      backdrop-filter: blur(12px);
      border-radius: var(--r-sm);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: var(--shadow-md);
    }
    .overview-img-badge .dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(53,194,100,.2);
      animation: pulse 2s infinite;
    }
    @keyframes pulse { 0%,100%{box-shadow:0 0 0 4px rgba(53,194,100,.2)} 50%{box-shadow:0 0 0 8px rgba(53,194,100,.05)} }
    .overview-img-badge strong { font-size: 13px; font-weight: 600; color: var(--navy); }
    .overview-img-badge small { font-size: 11px; color: var(--muted); display: block; }

    /*  CAPABILITIES GRID  */
    .section-head {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-head h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      color: var(--navy);
      margin: 8px 0 12px;
      line-height: 1.2;
    }
    .section-head p {
      font-size: 16px;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

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

    .cap-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, border-color .3s;
      cursor: default;
    }
    .cap-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--blue));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }
    .cap-card:hover { transform: translateY(-10px); border-color: rgba(53,194,100,.35); box-shadow: var(--shadow-lg); }
    .cap-card:hover::after { transform: scaleX(1); }

    .cap-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(53,194,100,.12), rgba(66,114,255,.12));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 24px;
      color: var(--green-dk);
      position: relative;
    }
    .cap-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 14px;
      border: 1px solid rgba(53,194,100,.25);
    }

    .cap-card h5 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .cap-card p {
      font-size: 13.5px;
      line-height: 1.65;
      color: var(--muted);
      margin: 0;
    }
    .cap-card-num {
      position: absolute;
      top: 20px; right: 24px;
      font-family: 'Playfair Display', serif;
      font-size: 56px;
      font-weight: 800;
      color: rgba(12,23,51,.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    /*  PROCESS SECTION  */
    .process-section {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 52px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }
    .process-section::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(53,194,100,.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .process-section h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 2.8vw, 30px);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .process-section .sub {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 42px;
    }

    .steps-wrap {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }
    .steps-wrap::before {
      content: '';
      position: absolute;
      left: 25px;
      top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--green) 0%, var(--blue) 100%);
      z-index: 0;
    }

    .step-item {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 24px 0;
      position: relative;
      z-index: 1;
    }
    .step-item:not(:last-child) {
      border-bottom: 1px dashed var(--border);
    }

    .step-badge {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-dk), var(--green));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      box-shadow: 0 6px 20px rgba(30,157,85,.35);
      position: relative;
      z-index: 2;
      transition: transform .3s, box-shadow .3s;
    }
    .step-item:hover .step-badge {
      transform: scale(1.1) rotate(-5deg);
      box-shadow: 0 10px 28px rgba(30,157,85,.45);
    }

    .step-body { flex: 1; padding-top: 8px; }
    .step-body h6 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .step-body p {
      font-size: 14px;
      line-height: 1.65;
      color: var(--muted);
      margin: 0;
    }
    .step-body .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }
    .step-body .tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(53,194,100,.1);
      color: var(--green-dk);
      border: 1px solid rgba(53,194,100,.2);
    }

    /*  TRUST STRIP  */
    .trust-strip {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--forest) 100%);
      border-radius: var(--r-lg);
      padding: 40px 52px;
      margin-bottom: 30px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
      overflow: hidden;
    }
    .trust-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }
    .trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      position: relative;
      z-index: 1;
    }
    .trust-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 10%; bottom: 10%;
      width: 1px;
      background: rgba(255,255,255,.12);
    }
    .trust-item .t-num {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }
    .trust-item .t-num span { color: var(--green); }
    .trust-item .t-label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
    }

    /*  CTA STRIP  */
    .cta-panel {
      background: linear-gradient(135deg, var(--navy) 0%, var(--forest) 100%);
      border-radius: var(--r-lg);
      padding: 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      position: relative;
      overflow: hidden;
      margin-bottom: 30px;
    }
    .cta-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 10% 50%, rgba(53,194,100,.18) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(66,114,255,.14) 0%, transparent 50%);
      pointer-events: none;
    }
    .cta-panel::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .cta-text { position: relative; z-index: 1; }
    .cta-text h4 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 2.5vw, 30px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }
    .cta-text p { font-size: 15px; color: rgba(255,255,255,.68); margin: 0; max-width: 520px; line-height: 1.65; }
    .cta-btn-wrap { flex-shrink: 0; position: relative; z-index: 1; }
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--green-dk), var(--green));
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      padding: 16px 34px;
      border-radius: 999px;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(30,157,85,.4);
      transition: transform .25s, box-shadow .25s;
      white-space: nowrap;
    }
    .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(30,157,85,.5); color: var(--white); }
    .btn-cta svg { width: 16px; height: 16px; }

    /*  LOGO SLIDER  */
    .logo-slider-section { padding: 10px 0 0; }
    .slider-label {
      text-align: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
      padding-top: 20px;
    }
    .logo-slider {
      display: flex;
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 22px 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .logo-slide {
      display: flex;
      align-items: center;
      gap: 48px;
      min-width: 100%;
      width: max-content;
      animation: logoSlide 28s linear infinite;
      will-change: transform;
      flex-shrink: 0;
      padding-right: 48px;
    }
    .logo-slider:hover .logo-slide { animation-play-state: paused; }
    .logo-slide img {
      height: 36px;
      width: auto;
      object-fit: contain;
      opacity: .65;
      filter: grayscale(40%);
      transition: opacity .25s, filter .25s, transform .25s;
    }
    .logo-slide img:hover { opacity: 1; filter: grayscale(0%); transform: translateY(-2px); }

    /*  REVEAL  */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    @keyframes logoSlide { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    /*  RESPONSIVE  */
    @media (max-width: 1199px) {
      .cap-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-strip { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 991px) {
      .service-hero { padding: 110px 0 90px; }
      .service-main { margin-top: -32px; }
      .overview-panel, .process-section, .cta-panel { padding: 32px 28px; }
      .tick-list { grid-template-columns: 1fr; }
      .cta-panel { flex-direction: column; text-align: center; }
      .cta-text p { margin: 0 auto; }
    }
    @media (max-width: 767px) {
      .cap-grid { grid-template-columns: 1fr; }
      .trust-strip { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
      .hero-stats { gap: 24px; }
      .header-top .inner-container {
        min-height: 40px;
        padding: 0 12px;
        gap: 8px;
      }
      .header-top .top-left .list-style-one li:nth-child(4) {
        display: none;
      }
      .header-top .top-left .list-style-one li {
        height: 28px;
        font-size: 10px;
        padding: 0 8px;
      }
      .header-top .top-right .useful-links li a {
        height: 28px;
        font-size: 10px;
        padding: 0 10px;
      }
      .header-top .top-left { overflow: hidden; }
      .main-header.header-style-one .main-box {
        background: transparent;
        border: 0;
        backdrop-filter: none;
      }
      .main-header.header-style-one .logo img { max-height: 56px; }
    }
    @media (max-width: 500px) {
      .trust-strip { grid-template-columns: 1fr; }
      .header-top .top-left .list-style-one li:nth-child(2),
      .header-top .top-left .list-style-one li:nth-child(3) {
        display: none;
      }
    }

    /* preloader tablet/mobile */
    @media (max-width:991px){.container-preloader .animation-preloader .spinner{height:8em;width:8em}.container-preloader .animation-preloader .txt-loading{font:bold 3.5em "Montserrat",sans-serif}}
    @media (max-width:500px){.container-preloader .animation-preloader .spinner{height:7em;width:7em}.container-preloader .animation-preloader .txt-loading{font:bold 2em "Montserrat",sans-serif}}

/* SEO landing overrides */
.cap-grid.seo-cap-grid { grid-template-columns: repeat(3, 1fr); }
.service-hero.seo-hero { padding-bottom: 80px; }
.service-hero.seo-hero .hero-actions { margin-bottom: 28px; }
.service-hero.seo-hero .hero-stats { margin-top: 32px; padding-top: 24px; }
@media (max-width: 991px) { .cap-grid.seo-cap-grid { grid-template-columns: 1fr; } }

.offshore-hub-top {
  margin-bottom: 36px;
}
.offshore-hub-top .section-head {
  margin-bottom: 28px;
}
.offshore-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 8px 0 40px;
}
.offshore-hub-grid--topics {
  margin-bottom: 0;
}
.offshore-hub-group { margin-bottom: 36px; }
.offshore-hub-group-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(53, 194, 100, .35);
}
.offshore-hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 24px 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  min-height: 100%;
  position: relative;
}
.offshore-hub-card.is-featured {
  border-color: rgba(53, 194, 100, .4);
  background: linear-gradient(180deg, rgba(53, 194, 100, .06) 0%, var(--white) 42%);
}
.offshore-hub-card:hover {
  border-color: rgba(53, 194, 100, .45);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.offshore-hub-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.offshore-hub-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.offshore-hub-card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(53, 194, 100, .15);
  color: var(--green-dk);
  border: 1px solid rgba(53, 194, 100, .3);
}
.offshore-hub-card-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-mid);
  line-height: 1.45;
}
.offshore-hub-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}
.offshore-hub-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.offshore-hub-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dk);
  margin-top: 4px;
}
@media (max-width: 991px) {
  .offshore-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .offshore-hub-grid { grid-template-columns: 1fr; }
}

