:root {
      --teal-deep: #0d4a5e;
      --teal-mid: #1b7a9b;
      --teal-bright: #1fa8c9;
      --teal-light: #d6f0f7;
      --cyan-glow: #3dcfec;
      --white: #ffffff;
      --off-white: #f4fbfd;
      --text-dark: #0a2e3a;
      --text-mid: #2c6878;
      --text-light: #7db8c9;
      --border: #c0e4ee;
      --highlight: #ff6b35;
      --highlight2: #ffd166;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 130px;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      font-size: 15px;
      line-height: 1.65;
    }

    .skip-link {
      position: fixed;
      top: 0.75rem;
      left: 0.75rem;
      z-index: 10000;
      padding: 0.65rem 1rem;
      border-radius: 6px;
      background: var(--white);
      color: var(--teal-deep);
      font-weight: 700;
      text-decoration: none;
      transform: translateY(-160%);
      transition: transform 160ms ease;
    }

    .skip-link:focus {
      transform: translateY(0);
      outline: 3px solid var(--cyan-glow);
    }

    h1,
    h2,
    h3,
    h4,
    .logo-text {
      font-family: 'Oxanium', monospace;
      letter-spacing: -0.01em;
    }

    /* ─── COVER ──────────────────────────────────────── */
    .cover {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-mid) 55%, #1e9bbf 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      padding: 7rem 3rem 3rem;
    }

    .cover::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 75% 25%, rgba(61, 207, 236, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(13, 74, 94, 0.6) 0%, transparent 45%);
    }

    .cover-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .cover-top {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 118px;
      padding: 0.9rem 3rem 0.9rem 5rem;
      background: transparent;
      border-bottom: 1px solid transparent;
      box-shadow: none;
      backdrop-filter: none;
      transition: min-height 220ms ease, padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
    }

    .cover-top.is-scrolled {
      min-height: 76px;
      padding: 0.45rem 3rem 0.45rem 5rem;
      background: rgba(9, 44, 57, 0.92);
      border-bottom-color: rgba(61, 207, 236, 0.22);
      box-shadow: 0 14px 34px rgba(3, 27, 36, 0.28);
      backdrop-filter: blur(14px);
    }

    .cover-top>div {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      width: fit-content;
    }

    .header-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.45rem;
      flex-wrap: wrap;
    }

    .header-nav a {
      color: var(--white);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.5rem 0.78rem;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .cover-top.is-scrolled .header-nav a {
      padding: 0.38rem 0.7rem;
    }

    .header-nav a:hover,
    .header-nav a:focus-visible {
      color: var(--white);
      background: rgba(61, 207, 236, 0.14);
      border-color: rgba(61, 207, 236, 0.38);
      outline: none;
    }

    .menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(61, 207, 236, 0.35);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      cursor: pointer;
      transition: background 180ms ease, border-color 180ms ease;
    }

    .menu-toggle:hover,
    .menu-toggle:focus-visible {
      background: rgba(61, 207, 236, 0.14);
      border-color: rgba(61, 207, 236, 0.5);
      outline: none;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: '';
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      display: block;
      position: absolute;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle {
      position: relative;
    }

    .menu-toggle::before {
      transform: translateY(-7px);
    }

    .menu-toggle::after {
      transform: translateY(7px);
    }

    .cover-top.menu-open .menu-toggle span {
      opacity: 0;
    }

    .cover-top.menu-open .menu-toggle::before {
      transform: rotate(45deg);
    }

    .cover-top.menu-open .menu-toggle::after {
      transform: rotate(-45deg);
    }

    .cover,
    section,
    .contact-section {
      scroll-margin-top: 130px;
    }


    /* ── SECTION & SERVICE IMAGES ── */
    .section-photo {
      width: 100%;
      height: auto;
      max-height: 360px;
      object-fit: contain;
      border-radius: 14px;
      display: block;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .service-card-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      object-position: center;
      background: #eaf6f8;
      border-radius: 8px 8px 0 0;
      display: block;
      margin: -1.6rem -1.4rem 0.8rem -1.4rem;
      width: calc(100% + 2.8rem);
    }

    .cc-photo {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
      border-radius: 14px;
      display: block;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

    .amc-photo {
      width: 100%;
      height: 100%;
      min-height: 300px;
      object-fit: cover;
      border-radius: 14px;
      display: block;
      box-shadow: 0 8px 28px rgba(13, 74, 94, 0.18);
    }

    /* ── REAL LOGO IMAGE ── */
    .ipspace-logo-img {
      height: 4.6rem;
      width: auto;
      display: block;
      transition: height 220ms ease;
    }

    .cover-top.is-scrolled .ipspace-logo-img {
      height: 3.2rem;
    }

    .ipspace-logo-img-sm {
      height: 32px;
      width: auto;
      display: block;
      opacity: 0.85;
    }

    .logo-tagline-sub {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-top: 0;
      font-family: 'DM Sans', sans-serif;
      white-space: nowrap;
      text-align: center;
      transition: font-size 220ms ease, letter-spacing 220ms ease;
    }

    .cover-top.is-scrolled .logo-tagline-sub {
      font-size: 0.62rem;
      letter-spacing: 0.16em;
    }

    .logo-badge {
      display: flex;
      align-items: center;
      gap: 0;
      background: rgba(255, 255, 255, 0.08);
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      border-radius: 6px;
      overflow: hidden;
    }

    .logo-ip {
      background: rgba(255, 255, 255, 0.15);
      color: var(--white);
      font-family: 'Oxanium', monospace;
      font-weight: 800;
      font-size: 1.3rem;
      padding: 0.45rem 0.7rem;
      letter-spacing: 0.05em;
    }

    .logo-space {
      color: var(--white);
      font-family: 'Oxanium', monospace;
      font-weight: 700;
      font-size: 1.3rem;
      padding: 0.45rem 0.85rem;
      letter-spacing: 0.12em;
    }

    .cover-tagline-top {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.78rem;
      font-weight: 300;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .cover-center {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.5rem;
      max-width: 920px;
    }

    .cover-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(61, 207, 236, 0.15);
      border: 1px solid rgba(61, 207, 236, 0.4);
      border-radius: 100px;
      padding: 0.3rem 0.9rem;
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      width: fit-content;
    }

    .cover-label::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--cyan-glow);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    .cover-headline {
      font-size: clamp(3rem, 5.8vw, 5.2rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.0;
      letter-spacing: -0.03em;
    }

    .cover-headline span {
      color: var(--white);
    }

    .cover-headline .service-rotate {
      color: var(--cyan-glow);
    }

    .cover-headline .headline-lead,
    .cover-headline .headline-tail {
      color: var(--white);
    }

    .cover-headline .headline-lead,
    .cover-headline .service-rotate,
    .cover-headline .headline-tail {
      display: inline-block;
      transition: opacity 220ms ease, transform 220ms ease;
    }

    .cover-headline .headline-lead.is-changing,
    .cover-headline .service-rotate.is-changing,
    .cover-headline .headline-tail.is-changing {
      opacity: 0;
      transform: translateY(0.12em);
    }

    .cover-headline .nowrap {
      color: var(--white);
      white-space: nowrap;
    }

    .cover-sub {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.05rem;
      font-weight: 300;
      max-width: 520px;
      line-height: 1.7;
    }

    .cover-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 0.5rem;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
    }

    .stat-num {
      font-family: 'Oxanium', monospace;
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
    }

    .stat-label {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .cover-bottom {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .cover-contact-strip {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.8rem;
    }

    .contact-item a {
      color: rgba(255, 255, 255, 0.72);
      text-decoration: none;
      transition: color 180ms ease;
    }

    .contact-item a:hover,
    .contact-item a:focus-visible {
      color: var(--white);
      outline: none;
    }

    .contact-item svg {
      opacity: 0.7;
      flex-shrink: 0;
    }

    .cert-badge {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 0.5rem 1rem;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
    }

    .cover::before,
    .cover-grid,
    .cover-top>div,
    .header-nav a,
    .cover-headline .headline-lead,
    .cover-headline .service-rotate,
    .cover-headline .headline-tail,
    .cover-sub,
    .stat-item,
    .cover-contact-strip .contact-item,
    .cert-badge {
      animation-fill-mode: both;
    }

    .cover::before {
      animation: coverGlowIn 1.4s ease-out both;
    }

    .cover-grid {
      animation: gridReveal 1.5s ease-out both;
    }

    .cover-top>div {
      animation: aosFadeRight 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s both;
    }

    .header-nav a {
      animation: aosFadeDown 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .header-nav a:nth-child(1) {
      animation-delay: 0.22s;
    }

    .header-nav a:nth-child(2) {
      animation-delay: 0.31s;
    }

    .header-nav a:nth-child(3) {
      animation-delay: 0.4s;
    }

    .header-nav a:nth-child(4) {
      animation-delay: 0.49s;
    }

    .header-nav a:nth-child(5) {
      animation-delay: 0.58s;
    }

    .header-nav a:nth-child(6) {
      animation-delay: 0.67s;
    }

    .cover-headline .headline-lead {
      animation: headlineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
    }

    .cover-headline .service-rotate {
      animation: headlineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
    }

    .cover-headline .headline-tail {
      animation: headlineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.69s both;
    }

    .cover-sub {
      animation: aosFadeUp 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s both;
    }

    .stat-item {
      animation: aosZoomUp 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .stat-item:nth-child(1) {
      animation-delay: 1.08s;
    }

    .stat-item:nth-child(2) {
      animation-delay: 1.2s;
    }

    .stat-item:nth-child(3) {
      animation-delay: 1.32s;
    }

    .cover-contact-strip .contact-item {
      animation: aosFadeUp 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .cover-contact-strip .contact-item:nth-child(1) {
      animation-delay: 1.48s;
    }

    .cover-contact-strip .contact-item:nth-child(2) {
      animation-delay: 1.6s;
    }

    .cover-contact-strip .contact-item:nth-child(3) {
      animation-delay: 1.72s;
    }

    .cert-badge {
      animation: aosFadeLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.66s both;
    }

    @keyframes aosFadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes aosFadeDown {
      from {
        opacity: 0;
        transform: translateY(-18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes aosFadeRight {
      from {
        opacity: 0;
        transform: translateX(-28px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes aosFadeLeft {
      from {
        opacity: 0;
        transform: translateX(28px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes aosZoomUp {
      from {
        opacity: 0;
        transform: translateY(22px) scale(0.94);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes headlineReveal {
      from {
        opacity: 0;
        transform: translateY(0.45em);
        filter: blur(6px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    @keyframes coverGlowIn {
      from {
        opacity: 0;
        transform: scale(1.04);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes gridReveal {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .cover::before,
      .cover-grid,
      .cover-top>div,
      .header-nav a,
      .cover-headline .headline-lead,
      .cover-headline .service-rotate,
      .cover-headline .headline-tail,
      .cover-sub,
      .stat-item,
      .cover-contact-strip .contact-item,
      .cert-badge {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
      }
    }

    /* ─── SECTION BASE ───────────────────────────────── */
    section {
      padding: 5rem 3rem;
    }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--teal-mid);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--teal-bright);
      border-radius: 2px;
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--teal-deep);
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    /* ─── ABOUT ──────────────────────────────────────── */
    .about-section {
      background: var(--off-white);
      border-bottom: 1px solid var(--border);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-text p {
      color: #3a5f6e;
      margin-bottom: 1.1rem;
      font-size: 1rem;
      line-height: 1.75;
    }

    .about-text .promise {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--teal-deep);
      border-left: 3px solid var(--teal-bright);
      padding-left: 1rem;
      margin-top: 1.5rem;
      font-style: italic;
    }

    .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .value-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .value-card:hover {
      border-color: var(--teal-bright);
      box-shadow: 0 4px 16px rgba(27, 122, 155, 0.12);
    }

    .value-icon {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--teal-mid), var(--teal-bright));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.25rem;
    }

    .value-icon svg {
      color: white;
    }

    .value-title {
      font-family: 'Oxanium', monospace;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--teal-deep);
    }

    .value-desc {
      font-size: 0.78rem;
      color: var(--text-mid);
      line-height: 1.5;
    }

    /* ─── CALL CENTER HIGHLIGHT ──────────────────────── */
    .callcenter-section {
      background: linear-gradient(135deg, var(--teal-deep) 0%, #0f5570 50%, var(--teal-mid) 100%);
      position: relative;
      overflow: hidden;
    }

    .callcenter-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .callcenter-section::after {
      content: '';
      position: absolute;
      right: -100px;
      top: 50%;
      transform: translateY(-50%);
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(61, 207, 236, 0.12), transparent 70%);
      border-radius: 50%;
    }

    .cc-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .cc-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 107, 53, 0.2);
      border: 1px solid rgba(255, 107, 53, 0.5);
      border-radius: 100px;
      padding: 0.3rem 0.9rem;
      color: #ff9a6c;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      width: fit-content;
    }

    .cc-title {
      font-family: 'Oxanium', monospace;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .cc-title span {
      color: var(--cyan-glow);
    }

    .cc-desc {
      color: rgba(255, 255, 255, 0.72);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .cc-features {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .cc-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.9rem;
    }

    .cc-feature::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--cyan-glow);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .cc-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .cc-stat-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 12px;
      padding: 1.5rem 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      backdrop-filter: blur(4px);
      transition: background 0.2s;
    }

    .cc-stat-card:hover {
      background: rgba(255, 255, 255, 0.11);
    }

    .cc-stat-icon {
      width: 34px;
      height: 34px;
      background: rgba(61, 207, 236, 0.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.5rem;
    }

    .cc-stat-num {
      font-family: 'Oxanium', monospace;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--cyan-glow);
    }

    .cc-stat-label {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.3;
    }

    /* ─── SERVICES ───────────────────────────────────── */
    .services-section {
      background: var(--white);
    }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2.5rem;
    }

    .services-count {
      font-family: 'Oxanium', monospace;
      font-size: 0.75rem;
      color: var(--text-light);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .service-card {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.6rem 1.4rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      position: relative;
      overflow: hidden;
      transition: all 0.25s;
      cursor: default;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal-mid), var(--teal-bright));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
      border-radius: 0 0 12px 12px;
    }

    .service-card:hover {
      border-color: var(--teal-bright);
      box-shadow: 0 8px 28px rgba(27, 122, 155, 0.13);
      transform: translateY(-3px);
    }

    .service-card:hover::after {
      transform: scaleX(1);
    }

    .service-icon-wrap {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, rgba(27, 122, 155, 0.12), rgba(61, 207, 236, 0.15));
      border: 1px solid rgba(27, 122, 155, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .service-icon-wrap svg {
      color: var(--teal-mid);
    }

    .service-name {
      font-family: 'Oxanium', monospace;
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--teal-deep);
      line-height: 1.3;
    }

    .service-desc {
      font-size: 0.8rem;
      color: #5a8a98;
      line-height: 1.55;
    }

    /* ─── AMC ────────────────────────────────────────── */
    .amc-section {
      background: var(--teal-light);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .amc-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .amc-description {
      color: #3a5f6e;
      font-size: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    .amc-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 1.5rem;
    }

    .amc-pill {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 0.35rem 0.9rem;
      font-size: 0.78rem;
      color: var(--teal-deep);
      font-weight: 500;
    }

    .amc-checklist {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .amc-item {
      display: flex;
      align-items: flex-start;
      gap: 0.9rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1rem 1.15rem;
    }

    .amc-check {
      width: 24px;
      height: 24px;
      background: linear-gradient(135deg, var(--teal-mid), var(--teal-bright));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .amc-item-text strong {
      font-family: 'Oxanium', monospace;
      font-size: 0.88rem;
      color: var(--teal-deep);
      display: block;
      margin-bottom: 0.2rem;
    }

    .amc-item-text span {
      font-size: 0.78rem;
      color: var(--text-mid);
    }

    /* ─── CONTACT ────────────────────────────────────── */
    .contact-section {
      background: var(--teal-deep);
      padding: 4rem 3rem;
    }

    .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .contact-left h2 {
      font-family: 'Oxanium', monospace;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 0.75rem;
    }

    .contact-left p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .contact-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.9rem;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 10px;
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .contact-card-label {
      font-size: 0.68rem;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-weight: 600;
    }

    .contact-card-value {
      font-size: 0.88rem;
      color: var(--white);
      font-weight: 400;
      word-break: break-word;
    }

    .contact-card-value a {
      color: var(--cyan-glow);
      text-decoration: none;
    }

    /* ─── FOOTER ──────────────────────────────────────── */
    .footer {
      background: var(--text-dark);
      padding: 1.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0;
      font-family: 'Oxanium', monospace;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--white);
      opacity: 0.6;
    }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.35);
    }

    /* ─── RESPONSIVE ─────────────────────────────────── */
    @media (max-width: 850px) {
      section {
        padding: 3.5rem 1.5rem;
      }

      .cover {
        padding: 7rem 1.5rem 2rem;
      }

      .cover-top {
        min-height: 86px;
        padding: 0.75rem 1.5rem;
      }

      .cover-top.is-scrolled {
        min-height: 70px;
        padding: 0.45rem 1.5rem;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .header-nav {
        position: absolute;
        top: calc(100% + 0.45rem);
        right: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        width: min(230px, calc(100vw - 3rem));
        max-width: none;
        padding: 0.75rem;
        background: rgba(9, 44, 57, 0.96);
        border: 1px solid rgba(61, 207, 236, 0.24);
        border-radius: 12px;
        box-shadow: 0 18px 36px rgba(3, 27, 36, 0.34);
        backdrop-filter: blur(14px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
      }

      .cover-top.menu-open .header-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }

      .header-nav a,
      .cover-top.is-scrolled .header-nav a {
        font-size: 0.78rem;
        padding: 0.75rem 0.85rem;
        text-align: left;
      }

      .ipspace-logo-img {
        height: 4rem;
      }

      .logo-tagline-sub {
        font-size: 0.68rem;
      }

      .about-grid,
      .cc-inner,
      .amc-inner,
      .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .services-grid {
        grid-template-columns: 1fr 1fr;
      }

      .cover-stats {
        gap: 1.5rem;
      }

      .cover-contact-strip {
        flex-wrap: wrap;
        gap: 0.75rem;
      }

      .cc-right {
        grid-template-columns: 1fr 1fr;
      }

      .contact-cards {
        grid-template-columns: 1fr 1fr;
      }

      .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
      }
    }

    @media (max-width: 560px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      .cc-right {
        grid-template-columns: 1fr 1fr;
      }

      .about-values {
        grid-template-columns: 1fr;
      }

      .cover-top {
        min-height: 80px;
        padding: 0.65rem 1rem;
        align-items: center;
      }

      .cover-top.is-scrolled {
        min-height: 66px;
        padding: 0.4rem 1rem;
      }

      .cover-top>div {
        gap: 0.28rem;
      }

      .header-nav {
        right: 1rem;
        width: min(220px, calc(100vw - 2rem));
      }

      .ipspace-logo-img {
        height: 3.8rem;
        max-width: 58vw;
      }

      .logo-tagline-sub {
        font-size: 0.56rem;
        white-space: normal;
      }

      .cover-headline {
        font-size: 2.45rem;
      }
    }

    /* ─── CONTACT WITH MAP ───────────────────────────── */
    .contact-map-section {
      position: relative;
      overflow: hidden;
      padding: clamp(4.5rem, 7vw, 6.5rem) 3rem;
      background:
        radial-gradient(circle at 12% 0%, rgba(61, 207, 236, 0.1), transparent 24rem),
        linear-gradient(180deg, #f4fbfc 0%, #e7f5f7 100%);
      border-top: 1px solid rgba(9, 74, 91, 0.1);
    }

    .contact-map-section::after {
      content: '';
      position: absolute;
      right: -7rem;
      bottom: -7rem;
      width: 20rem;
      height: 20rem;
      border: 1px solid rgba(31, 168, 201, 0.1);
      border-radius: 50%;
      box-shadow: 0 0 0 3.5rem rgba(31, 168, 201, 0.035);
      pointer-events: none;
    }

    .contact-map-container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: clamp(2.5rem, 6vw, 5.5rem);
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-map-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 1rem;
      color: var(--teal-bright);
      font-family: 'Oxanium', monospace;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .contact-map-eyebrow::before {
      content: '';
      width: 2rem;
      height: 2px;
      background: var(--cyan-glow);
    }

    .contact-map-title {
      max-width: 560px;
      margin: 0;
      color: var(--text-dark);
      font-family: 'Oxanium', monospace;
      font-size: clamp(2.1rem, 4.2vw, 3.7rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.035em;
    }

    .contact-map-copy {
      max-width: 570px;
      margin: 1.25rem 0 2rem;
      color: var(--text-mid);
      font-size: 1rem;
      line-height: 1.75;
    }

    .contact-detail-list {
      display: grid;
      gap: 0;
      margin: 0;
      border-top: 1px solid rgba(9, 74, 91, 0.14);
    }

    .contact-detail {
      display: grid;
      grid-template-columns: 2.75rem minmax(0, 1fr);
      gap: 1rem;
      align-items: start;
      padding: 1.05rem 0;
      border-bottom: 1px solid rgba(9, 74, 91, 0.11);
    }

    .contact-detail-icon {
      display: grid;
      width: 2.75rem;
      height: 2.75rem;
      place-items: center;
      color: var(--teal-bright);
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(31, 168, 201, 0.22);
      border-radius: 7px;
    }

    .contact-detail dt {
      margin-bottom: 0.2rem;
      color: var(--teal-deep);
      font-family: 'Oxanium', monospace;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .contact-detail dd {
      margin: 0;
      color: var(--text-mid);
      font-size: 0.95rem;
      line-height: 1.55;
    }

    .contact-detail a {
      color: var(--text-dark);
      font-weight: 600;
      text-decoration: none;
      transition: color 180ms ease;
    }

    .contact-detail a:hover,
    .contact-detail a:focus-visible {
      color: var(--teal-bright);
      outline: none;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .contact-map-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.75rem;
    }

    .contact-map-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      min-height: 46px;
      padding: 0.72rem 1.15rem;
      border: 1px solid var(--teal-mid);
      border-radius: 7px;
      font-family: 'Oxanium', monospace;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
    }

    .contact-map-btn-primary {
      color: var(--white);
      background: var(--teal-deep);
    }

    .contact-map-btn-secondary {
      color: var(--teal-deep);
      background: rgba(255, 255, 255, 0.72);
    }

    .contact-map-btn:hover,
    .contact-map-btn:focus-visible {
      color: var(--text-dark);
      background: var(--cyan-glow);
      border-color: var(--cyan-glow);
      transform: translateY(-2px);
      outline: 3px solid rgba(31, 168, 201, 0.18);
      outline-offset: 2px;
    }

    .contact-map-frame {
      position: relative;
      min-height: 470px;
      margin-right: 4.25rem;
      overflow: hidden;
      background: #cfe5e9;
      border: 1px solid rgba(9, 74, 91, 0.2);
      border-radius: 12px;
      box-shadow: 0 24px 55px rgba(5, 53, 66, 0.14);
    }

    .contact-map-frame::before {
      content: '';
      position: absolute;
      z-index: 2;
      inset: 0;
      border: 6px solid rgba(255, 255, 255, 0.36);
      border-radius: inherit;
      pointer-events: none;
    }

    .contact-map-frame iframe {
      display: block;
      width: 100%;
      height: 470px;
      border: 0;
      filter: saturate(0.78) contrast(1.04);
    }

    .contact-map-caption {
      position: absolute;
      z-index: 3;
      left: 1rem;
      bottom: 1rem;
      max-width: calc(100% - 2rem);
      padding: 0.8rem 1rem;
      color: var(--white);
      background: rgba(5, 48, 61, 0.93);
      border-left: 3px solid var(--cyan-glow);
      box-shadow: 0 8px 22px rgba(3, 35, 44, 0.22);
      font-size: 0.78rem;
      line-height: 1.45;
      text-decoration: none;
      pointer-events: auto;
      transition: background 180ms ease, transform 180ms ease;
    }

    .contact-map-caption:hover,
    .contact-map-caption:focus-visible {
      background: rgba(5, 48, 61, 1);
      transform: translateY(-2px);
      outline: 2px solid var(--cyan-glow);
      outline-offset: 2px;
    }

    .contact-map-caption strong {
      display: block;
      margin-bottom: 0.15rem;
      font-family: 'Oxanium', monospace;
      font-size: 0.74rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    @media (max-width: 960px) {
      .contact-map-container { grid-template-columns: 1fr; }
      .contact-map-frame { min-height: 420px; margin-right: 4.25rem; }
      .contact-map-frame iframe { height: 420px; }
    }

    @media (max-width: 576px) {
      .contact-map-section { padding: 4rem 1.25rem; }
      .contact-map-title { font-size: clamp(2rem, 10vw, 2.8rem); }
      .contact-map-actions { display: grid; grid-template-columns: 1fr; padding-right: 4.25rem; }
      .contact-map-btn { width: 100%; }
      .contact-map-frame { min-height: 340px; margin-right: 3.5rem; border-radius: 9px; }
      .contact-map-frame iframe { height: 340px; }
      .contact-map-caption { right: 0.75rem; left: 0.75rem; bottom: 0.75rem; max-width: none; }
    }

    /* ─── PROFESSIONAL FOOTER ────────────────────────── */
    .footer-section {
      background: var(--teal-deep);
      color: #e2f1f5;
      padding: 5rem 3rem 2rem;
      border-top: 1px solid rgba(61, 207, 236, 0.18);
      position: relative;
    }

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

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1.2fr 1.4fr 1.6fr;
      gap: 3.5rem;
      margin-bottom: 3.5rem;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      opacity: 1;
    }

    .footer-logo-img {
      display: block;
      width: min(240px, 100%);
      height: auto;
    }

    .footer-logo-text {
      font-family: 'Oxanium', monospace;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .footer-logo-text span {
      color: var(--cyan-glow);
    }

    .footer-tagline {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
    }

    .footer-socials {
      display: flex;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 220ms ease;
    }

    .social-btn:hover {
      background: var(--teal-bright);
      border-color: var(--cyan-glow);
      color: var(--text-dark);
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(31, 168, 201, 0.4);
    }

    .footer-heading {
      font-family: 'Oxanium', monospace;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1.4rem;
      position: relative;
      padding-bottom: 0.5rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 28px;
      height: 2px;
      background: var(--cyan-glow);
      border-radius: 2px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: all 180ms ease;
    }

    .footer-links a svg {
      opacity: 0;
      transform: translateX(-4px);
      transition: all 180ms ease;
    }

    .footer-links a:hover {
      color: var(--cyan-glow);
      transform: translateX(4px);
    }

    .footer-links a:hover svg {
      opacity: 1;
      transform: translateX(0);
    }

    .footer-contact-info {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    .contact-info-item svg {
      color: var(--cyan-glow);
      flex-shrink: 0;
      margin-top: 0.2rem;
    }

    .contact-info-item a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      transition: color 180ms ease;
    }

    .contact-info-item a:hover {
      color: var(--cyan-glow);
    }

    .footer-action-btns {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.2rem;
    }

    .footer-btn {
      padding: 0.5rem 1rem;
      border-radius: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: all 180ms ease;
    }

    .footer-btn-primary {
      background: var(--teal-mid);
      color: var(--white);
      border: 1px solid var(--teal-bright);
    }

    .footer-btn-primary:hover {
      background: var(--teal-bright);
      color: var(--text-dark);
    }

    .footer-btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.35);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .footer-bottom-links a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color 180ms ease;
    }

    .footer-bottom-links a:hover {
      color: var(--white);
    }

    .back-to-top {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(61, 207, 236, 0.12);
      border: 1px solid rgba(61, 207, 236, 0.3);
      color: var(--cyan-glow);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 180ms ease;
    }

    .back-to-top:hover {
      background: var(--cyan-glow);
      color: var(--text-dark);
      transform: translateY(-2px);
    }

    @media (max-width: 992px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }
    }

    @media (max-width: 576px) {
      .footer-section {
        padding: 3.5rem 1.5rem 1.5rem;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding-right: 4.25rem;
        box-sizing: border-box;
      }
      .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem 1rem;
      }
    }

    /* ─── FLOATING CONTACT WIDGET ────────────────────── */
    .floating-contact-wrapper {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9999;
      font-family: 'DM Sans', sans-serif;
    }

    .floating-contact-trigger {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-bright) 100%);
      border: 2px solid var(--cyan-glow);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(13, 74, 94, 0.45);
      position: relative;
      transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease;
    }

    .floating-contact-trigger:hover {
      transform: scale(1.08);
      box-shadow: 0 12px 30px rgba(61, 207, 236, 0.55);
    }

    .trigger-pulse {
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid var(--cyan-glow);
      animation: contactPulse 2s infinite;
      pointer-events: none;
    }

    @keyframes contactPulse {
      0% {
        transform: scale(0.95);
        opacity: 0.9;
      }
      70% {
        transform: scale(1.35);
        opacity: 0;
      }
      100% {
        transform: scale(1.35);
        opacity: 0;
      }
    }

    .floating-contact-trigger .icon-close {
      display: none;
    }

    .floating-contact-wrapper.is-open .icon-chat {
      display: none;
    }

    .floating-contact-wrapper.is-open .icon-close {
      display: block;
    }

    .floating-contact-wrapper.is-open .trigger-pulse {
      animation: none;
      opacity: 0;
    }

    /* Popup Modal/Card */
    .floating-contact-popup {
      position: absolute;
      bottom: 72px;
      right: 0;
      width: 275px;
      background: rgba(9, 44, 57, 0.96);
      border: 1px solid rgba(61, 207, 236, 0.3);
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(3, 27, 36, 0.5);
      backdrop-filter: blur(16px);
      padding: 1.25rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(16px) scale(0.95);
      transform-origin: bottom right;
      transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 220ms ease;
      pointer-events: none;
    }

    .floating-contact-wrapper.is-open .floating-contact-popup {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .popup-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .popup-title-group {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .popup-pulse-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #25d366;
      box-shadow: 0 0 10px #25d366;
    }

    .popup-title {
      font-family: 'Oxanium', monospace;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--white);
      line-height: 1.2;
    }

    .popup-sub {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .popup-close-btn {
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.6);
      font-size: 1.4rem;
      line-height: 1;
      cursor: pointer;
      padding: 0.2rem;
      transition: color 180ms ease;
    }

    .popup-close-btn:hover {
      color: var(--white);
    }

    .popup-options {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .popup-option {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 0.75rem 0.9rem;
      border-radius: 10px;
      text-decoration: none;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 180ms ease;
    }

    .popup-option:hover {
      transform: translateX(-3px);
    }

    .opt-whatsapp {
      border-color: rgba(37, 211, 102, 0.3);
    }
    .opt-whatsapp:hover {
      background: rgba(37, 211, 102, 0.15);
      border-color: #25d366;
    }
    .opt-whatsapp .option-icon-wrap {
      background: rgba(37, 211, 102, 0.2);
      color: #25d366;
    }

    .opt-phone {
      border-color: rgba(61, 207, 236, 0.3);
    }
    .opt-phone:hover {
      background: rgba(61, 207, 236, 0.15);
      border-color: var(--cyan-glow);
    }
    .opt-phone .option-icon-wrap {
      background: rgba(61, 207, 236, 0.2);
      color: var(--cyan-glow);
    }

    .opt-email {
      border-color: rgba(255, 255, 255, 0.15);
    }
    .opt-email:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.35);
    }
    .opt-email .option-icon-wrap {
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
    }

    .option-icon-wrap {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .option-text {
      display: flex;
      flex-direction: column;
    }

    .option-text strong {
      font-size: 0.86rem;
      color: var(--white);
      font-weight: 600;
    }

    .option-text span {
      font-size: 0.73rem;
      color: rgba(255, 255, 255, 0.65);
    }

    @media (max-width: 576px) {
      .floating-contact-wrapper {
        bottom: 18px;
        right: 18px;
      }
      .floating-contact-popup {
        width: calc(100vw - 36px);
        right: 0;
      }
    }

    /* Compact floating contact actions */
    .floating-contact-wrapper {
      width: 58px;
      height: 58px;
    }

    .floating-contact-actions {
      position: absolute;
      right: 2px;
      bottom: calc(100% + 12px);
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.75rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px) scale(0.92);
      transform-origin: bottom right;
      pointer-events: none;
      transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .floating-contact-wrapper.is-open .floating-contact-actions {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .floating-contact-icon {
      position: relative;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.28);
      box-shadow: 0 8px 24px rgba(3, 27, 36, 0.38);
      transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 200ms ease;
    }

    .floating-contact-icon.whatsapp-icon {
      background: #25d366;
    }

    .floating-contact-icon.phone-icon {
      background: var(--teal-bright);
    }

    .floating-contact-icon:hover,
    .floating-contact-icon:focus-visible {
      transform: scale(1.12);
      box-shadow: 0 12px 30px rgba(3, 27, 36, 0.5);
      outline: none;
    }

    .contact-hover-label {
      position: absolute;
      top: 50%;
      right: calc(100% + 12px);
      padding: 0.55rem 0.85rem;
      border-radius: 8px;
      background: rgba(9, 44, 57, 0.96);
      border: 1px solid rgba(61, 207, 236, 0.35);
      color: var(--white);
      font-size: 0.82rem;
      font-weight: 600;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transform: translate(8px, -50%);
      pointer-events: none;
      transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .contact-hover-label::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 100%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-left-color: rgba(9, 44, 57, 0.96);
    }

    .floating-contact-icon:hover .contact-hover-label,
    .floating-contact-icon:focus-visible .contact-hover-label {
      opacity: 1;
      visibility: visible;
      transform: translate(0, -50%);
    }

/* Service discovery and stable image space. */
.service-name a { color: inherit; text-decoration: underline; text-decoration-color: #7db8c9; text-underline-offset: 4px; }
.service-name a:hover { color: #1b7a9b; }
.service-name a:focus-visible, .service-detail-link:focus-visible { outline: 3px solid #ffb454; outline-offset: 4px; }
.service-detail-link { display: inline-block; margin-top: 1rem; font-weight: 700; color: #0d4a5e; text-underline-offset: 4px; }
.callcenter-section .service-detail-link { color: white; }
.section-photo { aspect-ratio: 3 / 2; max-width: 100%; }
.footer-logo-img { max-width: 100%; height: auto; }
.cover-headline .location-line { display: block; margin-top: .3em; font-size: .65em; }
.home-service-directory { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #c0e4ee; }
.home-service-directory h3 { font-size: 1.1rem; margin-bottom: .8rem; }
.home-service-directory ul { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; list-style: none; }
.home-service-directory a { color: #0d4a5e; text-underline-offset: 4px; font-weight: 600; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
