 *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --navy: #0B1F3A;
      --navy2: #1E3A5F;
      --yellow: #F5C518;
      --ylw2: #D4A800;
      --light: #F4F6FA;
      --mid: #6B7A8D;
      --white: #FFFFFF;
      --text: #1A2537;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── UTILITY ── */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .tag {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--yellow);
      border-left: 3px solid var(--yellow);
      padding: 2px 0 2px 10px;
      margin-bottom: 14px;
    }

    .tag.dark {
      color: var(--navy);
      border-color: var(--navy);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 14px 30px;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }

    .btn-primary {
      background: var(--yellow);
      color: var(--navy);
    }

    .btn-primary:hover {
      background: var(--ylw2);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--navy);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--navy);
      border: 2px solid var(--navy);
    }

    .btn-outline-dark:hover {
      background: var(--navy);
      color: var(--white);
    }

    .btn-dark {
      background: var(--navy);
      color: var(--white);
    }

    .btn-dark:hover {
      background: var(--navy2);
      transform: translateY(-2px);
    }

    .section-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.9rem, 4vw, 2.7rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--navy);
    }

    .section-title span {
      color: var(--ylw2);
    }

    .section-sub {
      font-size: 1rem;
      color: var(--mid);
      line-height: 1.75;
      max-width: 560px;
    }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--navy);
      padding: 9px 0;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }

    .topbar-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .topbar a {
      color: inherit;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .topbar a:hover {
      color: var(--yellow);
    }

    .topbar-badge {
      background: var(--yellow);
      color: var(--navy);
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 2px;
    }

    /* ── HEADER ── */
    header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(11, 31, 58, 0.10);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-icon {
      width: 44px;
      height: 44px;
      background: var(--navy2);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .logo-icon img {
  width: 42px;
  height: 42px;
    }

    .logo-icon svg {
      width: 26px;
      height: 26px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.03em;
    }

    .logo-name span {
      color: var(--ylw2);
    }

    .logo-sub {
      font-size: 0.68rem;
      color: var(--mid);
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Oswald', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--navy);
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 2px;
      transition: color 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--ylw2);
    }

    .nav-cta {
      margin-left: 12px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .mobile-menu {
      display: none;
      background: var(--white);
      border-top: 1px solid #E8EDF3;
      padding: 16px 24px 20px;
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-menu a {
      display: block;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--navy);
      text-decoration: none;
      padding: 11px 0;
      border-bottom: 1px solid #EEF1F6;
    }

    .mobile-menu a:hover {
      color: var(--ylw2);
    }

    .mobile-menu .btn {
      margin-top: 14px;
      width: 100%;
      justify-content: center;
    }

    /* ── PAGE HERO ── */
    .page-hero {
      position: relative;
      background: var(--navy);
      padding: 80px 0 72px;
      overflow: hidden;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(11, 31, 58, 0.97) 45%, rgba(30, 58, 95, 0.80) 100%),
        url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
    }

    .page-hero::after {
      content: '';
      position: absolute;
      right: 60px;
      top: 0;
      width: 5px;
      height: 100%;
      background: var(--yellow);
      opacity: 0.55;
      transform: skewX(-14deg);
      pointer-events: none;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 20px;
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color 0.2s;
    }

    .breadcrumb a:hover {
      color: var(--yellow);
    }

    .breadcrumb span {
      color: var(--yellow);
    }

    .page-hero h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 16px;
    }

    .page-hero h1 em {
      font-style: normal;
      color: var(--yellow);
    }

    .page-hero p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.72;
      max-width: 600px;
    }

    .page-hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .meta-chip {
      background: rgba(245, 197, 24, 0.15);
      border: 1px solid rgba(245, 197, 24, 0.3);
      color: var(--yellow);
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 2px;
    }

    /* ── SERVICE NAV TABS ── */
    .svc-nav {
      background: var(--white);
      border-bottom: 2px solid #E8EDF3;
      position: sticky;
      top: 70px;
      z-index: 90;
    }

    .svc-nav .container {
      display: flex;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .svc-nav::-webkit-scrollbar {
      display: none;
    }

    .svc-tab {
      font-family: 'Oswald', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--mid);
      text-decoration: none;
      padding: 16px 22px;
      white-space: nowrap;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      transition: color 0.2s, border-color 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .svc-tab:hover {
      color: var(--navy);
    }

    .svc-tab.active {
      color: var(--navy);
      border-bottom-color: var(--yellow);
    }

    .svc-tab svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    /* ── SECTOR INTRO STRIP ── */
    .sector-strip {
      background: var(--light);
      padding: 52px 0;
    }

    .sector-strip .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .sector-card {
      background: var(--white);
      padding: 32px 28px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      border-top: 4px solid transparent;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .sector-card:hover {
      border-top-color: var(--yellow);
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(11, 31, 58, 0.09);
    }

    .sector-num {
      font-family: 'Oswald', sans-serif;
      font-size: 2.6rem;
      font-weight: 700;
      color: #E4EAF3;
      line-height: 1;
      flex-shrink: 0;
      min-width: 52px;
    }

    .sector-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .sector-card p {
      font-size: 0.86rem;
      color: var(--mid);
      line-height: 1.68;
    }

    .sector-card a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ylw2);
      text-decoration: none;
      margin-top: 12px;
      transition: gap 0.2s;
    }

    .sector-card a:hover {
      gap: 10px;
    }

    /* ── RESIDENTIAL SECTION ── */
    .svc-section {
      padding: 96px 0;
    }

    .svc-section.bg-light {
      background: var(--light);
    }

    .svc-section.bg-white {
      background: var(--white);
    }

    .svc-section.bg-navy {
      background: var(--navy);
    }

    .svc-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .svc-layout.reverse {}

    /* section header */
    .svc-sec-header {
      margin-bottom: 36px;
    }

    .svc-sec-header .section-title {
      margin-bottom: 14px;
    }

    .svc-sec-header p {
      font-size: 0.97rem;
      color: var(--mid);
      line-height: 1.8;
    }

    /* detailed service cards — grid of items */
    .svc-items-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    .svc-item {
      background: var(--white);
      padding: 24px 22px;
      border-left: 3px solid transparent;
      transition: border-color 0.2s, background 0.2s;
    }

    .svc-section.bg-light .svc-item {
      background: var(--white);
    }

    .svc-item:hover {
      border-left-color: var(--yellow);
      background: #FDFEFE;
    }

    .svc-item-icon {
      width: 40px;
      height: 40px;
      background: var(--light);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      transition: background 0.2s;
    }

    .svc-item:hover .svc-item-icon {
      background: var(--yellow);
    }

    .svc-item-icon svg {
      width: 20px;
      height: 20px;
    }

    .svc-item h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .svc-item p {
      font-size: 0.83rem;
      color: var(--mid);
      line-height: 1.62;
    }

    /* visual panel (right side) */
    .svc-visual {
      position: sticky;
      top: 130px;
    }

    .svc-panel {
      border-radius: 3px;
      overflow: hidden;
      position: relative;
    }

    .svc-panel-img {
      width: 100%;
      aspect-ratio: 4/3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .svc-panel-img img {
      width: 100%;
      height: 100%;
      opacity: 0.5
    }

    .svc-panel-img svg {
      width: 64px;
      height: 64px;
      opacity: 0.25;
    }

    .svc-panel-img span {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      opacity: 0.35;
    }

    .res-panel .svc-panel-img {
      background: linear-gradient(145deg, #0d2d52 0%, #1E3A5F 100%);
    }

    .res-panel .svc-panel-img svg,
    .res-panel .svc-panel-img span {
      color: white;
    }

    .com-panel .svc-panel-img {
      background: linear-gradient(145deg, #0B1F3A 0%, #0d2d52 100%);
    }

    .com-panel .svc-panel-img svg,
    .com-panel .svc-panel-img span {
      color: white;
    }

    .ind-panel .svc-panel-img {
      background: linear-gradient(145deg, #162d4a 0%, #0B1F3A 100%);
    }

    .ind-panel .svc-panel-img svg,
    .ind-panel .svc-panel-img span {
      color: white;
    }

    .svc-panel-info {
      background: var(--navy);
      padding: 28px 28px 28px;
    }

    .svc-panel-info h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--yellow);
      margin-bottom: 14px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .svc-checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .svc-checklist li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.75);
    }

    .svc-checklist li::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      background: var(--yellow);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── ADDITIONAL SERVICES ── */
    .add-section {
      padding: 96px 0;
      background: var(--white);
    }

    .add-head {
      text-align: center;
      margin-bottom: 56px;
    }

    .add-head .section-title {
      margin-bottom: 12px;
    }

    .add-bigcards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .add-bigcard {
      border-radius: 3px;
      overflow: hidden;
      border: 1px solid #E8EDF3;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .add-bigcard:hover {
      box-shadow: 0 14px 40px rgba(11, 31, 58, 0.10);
      transform: translateY(-4px);
    }

    .add-bigcard-top {
      padding: 32px 28px 24px;
      background: var(--light);
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .add-bigcard-icon {
      width: 54px;
      height: 54px;
      background: var(--navy);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .add-bigcard-icon svg {
      width: 26px;
      height: 26px;
    }

    .add-bigcard h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
    }

    .add-bigcard-body {
      padding: 24px 28px;
      background: var(--white);
    }

    .add-bigcard-body p {
      font-size: 0.88rem;
      color: var(--mid);
      line-height: 1.72;
      margin-bottom: 18px;
    }

    .add-bigcard-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .add-bigcard-list li {
      font-size: 0.85rem;
      color: var(--text);
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    .add-bigcard-list li::before {
      content: '⚡';
      font-size: 0.72rem;
      color: var(--ylw2);
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ── SAFETY STANDARDS ── */
    .safety {
      padding: 80px 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .safety::before {
      content: '';
      position: absolute;
      left: -100px;
      bottom: -100px;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(245, 197, 24, 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .safety .container {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .safety-text {}

    .safety-text .section-title {
      color: var(--white);
      margin-bottom: 16px;
    }

    .safety-text .section-title span {
      color: var(--yellow);
    }

    .safety-text p {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.78;
      margin-bottom: 28px;
    }

    .safety-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .safety-badge {
      background: rgba(245, 197, 24, 0.12);
      border: 1px solid rgba(245, 197, 24, 0.25);
      color: var(--yellow);
      font-family: 'Oswald', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 2px;
    }

    .safety-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .safety-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 3px;
      padding: 24px 22px;
      transition: background 0.2s, border-color 0.2s;
    }

    .safety-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(245, 197, 24, 0.2);
    }

    .safety-card-icon {
      width: 40px;
      height: 40px;
      background: rgba(245, 197, 24, 0.12);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .safety-card-icon svg {
      width: 20px;
      height: 20px;
    }

    .safety-card h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
    }

    .safety-card p {
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    /* ── FAQ SECTION ── */
    .faq {
      padding: 96px 0;
      background: var(--light);
    }

    .faq-inner {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 72px;
      align-items: start;
    }

    .faq-left .section-title {
      margin-bottom: 16px;
    }

    .faq-left p {
      font-size: 0.95rem;
      color: var(--mid);
      line-height: 1.78;
      margin-bottom: 28px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid #DDE3ED;
      overflow: hidden;
    }

    .faq-item:first-child {
      border-top: 1px solid #DDE3ED;
    }

    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      cursor: pointer;
      padding: 18px 4px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }

    .faq-q:hover {
      color: var(--ylw2);
    }

    .faq-q.open {
      color: var(--ylw2);
    }

    .faq-arrow {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      background: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s, background 0.2s;
    }

    .faq-q.open .faq-arrow {
      transform: rotate(180deg);
      background: var(--yellow);
    }

    .faq-arrow svg {
      width: 13px;
      height: 13px;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s ease;
      font-size: 0.9rem;
      color: var(--mid);
      line-height: 1.75;
    }

    .faq-a.open {
      max-height: 300px;
      padding-bottom: 18px;
    }

    /* ── CTA BAND ── */
    .cta-band {
      background: var(--yellow);
      padding: 60px 0;
    }

    .cta-band .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .cta-band-text h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.1;
    }

    .cta-band-text p {
      font-size: 0.95rem;
      color: rgba(11, 31, 58, 0.65);
      margin-top: 6px;
    }

    .cta-band-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    /* ── FOOTER ── */
    footer {
      background: #07172A;
      padding: 60px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      padding-bottom: 50px;
    }

    .footer-desc {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.75;
      margin: 16px 0 20px;
    }

    .footer-creds {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .footer-cred {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.55);
    }

    .footer-cred::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      background: var(--yellow);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .footer-col h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--yellow);
      display: inline-block;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-links a {
      font-size: 0.87rem;
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: color 0.2s;
    }

    .footer-links a::before {
      content: '›';
      color: var(--yellow);
      font-size: 1rem;
    }

    .footer-links a:hover {
      color: var(--yellow);
    }

    .fci-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .fci {
      display: flex;
      align-items: flex-start;
      gap: 11px;
    }

    .fci-icon {
      width: 32px;
      height: 32px;
      background: rgba(245, 197, 24, 0.12);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .fci-icon svg {
      width: 15px;
      height: 15px;
    }

    .fci-text {
      font-size: 0.84rem;
      color: rgba(255, 255, 255, 0.50);
      line-height: 1.55;
    }

    .fci-text a {
      color: rgba(255, 255, 255, 0.50);
      text-decoration: none;
    }

    .fci-text a:hover {
      color: var(--yellow);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 0.79rem;
      color: rgba(255, 255, 255, 0.28);
    }

    .footer-legal {
      display: flex;
      gap: 20px;
    }

    .footer-legal a {
      font-size: 0.79rem;
      color: rgba(255, 255, 255, 0.28);
      text-decoration: none;
    }

    .footer-legal a:hover {
      color: var(--yellow);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .sector-strip .container {
        grid-template-columns: 1fr 1fr;
      }

      .svc-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .svc-visual {
        position: static;
      }

      .add-bigcards {
        grid-template-columns: 1fr;
      }

      .safety .container {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .faq-inner {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 720px) {
      .topbar-left {
        display: none;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .sector-strip .container {
        grid-template-columns: 1fr;
      }

      .svc-items-grid {
        grid-template-columns: 1fr;
      }

      .safety-grid {
        grid-template-columns: 1fr;
      }

      .cta-band .container {
        flex-direction: column;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        transition: none !important;
        animation: none !important;
      }
    }