  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --primary:       #00af9a;
      --primary-light: #00d4bc;
      --primary-dark:  #008f7e;
      --grad:          linear-gradient(135deg, #00af9a 0%, #00d4bc 100%);
      --bg:            #ffffff;
      --bg2:           #f4fdfb;
      --text:          #0f1f1d;
      --text-muted:    #5a7572;
      --border:        rgba(0,175,154,0.18);
      --wa-green:      #25D366;
      --font-head:     'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --font-body:     'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; }

    /* ══════════════════════════════
       NAVBAR
    ══════════════════════════════ */
    header nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      background: rgba(244,253,251,0.94);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,175,154,0.12);
      box-shadow: 0 2px 24px rgba(0,175,154,0.07);
    }

    /* Logo — slightly center-pulled */
    .logo {
      display: flex; align-items: center; gap: 11px;
      font-family: var(--font-head); font-size: 1.35rem; font-weight: 800;
      color: var(--text); text-decoration: none;
      margin-left: 2%;
    }
    .logo-icon {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, #00af9a, #00d4bc);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 16px; font-weight: 800;
    }

    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a {
      text-decoration: none; color: var(--text-muted);
      font-size: 0.95rem; font-weight: 500;
      position: relative; padding-bottom: 3px;
      transition: color 0.25s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: width 0.25s ease;
    }
    .nav-links a:hover { color: var(--primary); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links .active { color: var(--primary); font-weight: 600; }
    .nav-links .active::after { width: 100%; }

    /* WhatsApp CTA Button */
    .btn-whatsapp {
      display: inline-flex; align-items: center;
      gap: 10px;
      background: #25D366;
      color: white;
      border: 2px solid #25D366;
      border-radius: 50px;
      padding: 6px 18px 6px 6px;
      height: 56px;
      font-size: 1rem; font-weight: 700;
      cursor: pointer; text-decoration: none;
      position: relative; overflow: hidden;
      transition: background 0.35s ease;
      letter-spacing: 0.01em;
    }

    /* Green fill slides out to the right on hover */
    .btn-whatsapp::before {
      content: '';
      position: absolute; inset: 0;
      background: #25D366;
      border-radius: 48px;
      transform: scaleX(1); transform-origin: right;
      transition: transform 0.38s cubic-bezier(0.25,1,0.5,1);
    }
    .btn-whatsapp:hover::before { transform: scaleX(0); }
    .btn-whatsapp:hover { background: transparent; }

    /* Left icon pill */
    .wa-icon-pill {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,0.25);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      position: relative; z-index: 2;
      transition: background 0.35s ease;
    }
    .btn-whatsapp:hover .wa-icon-pill { background: rgba(37,211,102,0.12); }
    .wa-icon-pill svg { fill: white; transition: fill 0.35s ease; }
    .btn-whatsapp:hover .wa-icon-pill svg { fill: #25D366; }

    /* Text roll */
    .wa-texts {
      position: relative; z-index: 2;
      height: 22px; overflow: hidden;
      width: 110px;
    }
    .wa-text-default, .wa-text-hover {
      position: absolute; left: 0; top: 0;
      white-space: nowrap; line-height: 22px; font-weight: 700;
      transition: top 0.32s cubic-bezier(0.25,1,0.5,1), opacity 0.25s ease;
    }
    .wa-text-default { color: white;   font-size: 0.95rem; top: 0;    opacity: 1; }
    .wa-text-hover   { color: #25D366; font-size: 0.88rem; top: 22px; opacity: 0; }
    .btn-whatsapp:hover .wa-text-default { top: -22px; opacity: 0; }
    .btn-whatsapp:hover .wa-text-hover   { top: 0;     opacity: 1; }
    .btn-whatsapp svg { flex-shrink: 0; }

    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      position: relative;
      padding: 200px 40px 80px;
      overflow: hidden;
      background: linear-gradient(160deg, #ffffff 0%, #f0fdf9 55%, #e0faf5 100%);
    }

    /* ── ANIMATED RINGS ── */
    .circle-wrap {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -56%);
      pointer-events: none;
    }
    .ring {
      position: absolute; border-radius: 50%;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border: 2px solid transparent;
    }
    .ring-1 { width: 300px; height: 300px; animation: rp1 3.5s ease-in-out infinite; }
    .ring-2 { width: 460px; height: 460px; animation: rp2 3.5s ease-in-out infinite; }
    .ring-3 { width: 620px; height: 620px; animation: rp3 3.5s ease-in-out infinite; }
    .ring-4 { width: 780px; height: 780px; animation: rp4 3.5s ease-in-out infinite; }

    @keyframes rp1 {
      0%,100% { background: radial-gradient(circle, rgba(0,175,154,0.22) 0%, rgba(0,175,154,0.06) 60%, transparent 100%); border-color: rgba(0,175,154,0.45); box-shadow: 0 0 30px rgba(0,175,154,0.12) inset; }
      50%      { background: radial-gradient(circle, rgba(0,212,188,0.04) 0%, transparent 70%); border-color: rgba(0,175,154,0.08); box-shadow: none; }
    }
    @keyframes rp2 {
      0%,100% { border-color: rgba(0,175,154,0.08); background: transparent; }
      50%      { border-color: rgba(0,175,154,0.38); background: radial-gradient(circle, rgba(0,175,154,0.08) 0%, transparent 70%); box-shadow: 0 0 40px rgba(0,175,154,0.08) inset; }
    }
    @keyframes rp3 {
      0%,100% { border-color: rgba(0,175,154,0.20); }
      50%      { border-color: rgba(0,175,154,0.05); }
    }
    @keyframes rp4 {
      0%,100% { border-color: rgba(0,175,154,0.05); }
      50%      { border-color: rgba(0,175,154,0.20); }
    }

    .hero-glow  { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,175,154,0.16), transparent 70%); bottom: 0; left: 0; pointer-events: none; filter: blur(50px); }

    /* ══════════════════════════════
       FLOATING ICON CARDS — 1.15x bigger
       👇 Change icons here easily
    ══════════════════════════════ */
    .float-card {
      position: absolute;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(14px);
      border: 1.5px solid rgba(0,175,154,0.22);
      border-radius: 50%;
      width: 88px; height: 88px;      /* bigger + closer to center */
      display: flex; align-items: center; justify-content: center;
      font-size: 2.1rem;
      box-shadow: 0 10px 34px rgba(0,175,154,0.18);
      animation: floatY 4s ease-in-out infinite;
      z-index: 3;
    }
    .fc-tl { top: 34%; left: 10%;  animation-delay: 0s;   }
    .fc-bl { top: 60%; left: 17%;  animation-delay: 1.2s; border-radius: 50%; width: 88px; height: 88px; }
    .fc-tr { top: 34%; right: 10%; animation-delay: 0.6s; }
    .fc-br { top: 60%; right: 17%; animation-delay: 1.8s; }
    @keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

    /* ══════════════════════════════
       HERO CONTENT
    ══════════════════════════════ */
    .hero-content { position: relative; z-index: 4; text-align: center; max-width: 860px; }

    /* H1 — top of SEO hierarchy */
    h1.hero-title {
      font-family: var(--font-head);
      font-size: clamp(2.2rem, 4.2vw, 3.6rem);
      font-weight: 800; line-height: 1.22;
      color: #2d2d2d;
      margin-bottom: 28px;
    }
    h1.hero-title .accent { color: #2d2d2d; }
    h1.hero-title .muted  { color: #2d2d2d; font-weight: 800; }

    .hero-sub {
      font-size: 1.05rem; color: var(--text-muted);
      line-height: 1.8; max-width: 580px;
      margin: 0 auto 52px;   /* more gap below sub text */
    }

    .hero-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      background: var(--grad);
      color: white; border: none; border-radius: 50px;
      padding: 0 34px; height: 56px; font-size: 1rem; font-weight: 700;
      cursor: pointer;
      text-decoration: none; display: inline-flex; align-items: center;
      position: relative; overflow: hidden;
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
    }
    .btn-primary::after {
      content: '';
      position: absolute; inset: 0;
      background: #00c4ae;
      opacity: 0; transition: opacity 0.3s;
      border-radius: 50px;
    }
    .btn-primary:hover {
      transform: translateY(-5px) translateX(4px);
      box-shadow: 0 14px 30px rgba(0,175,154,0.45), 0 4px 10px rgba(6,182,212,0.3);
    }
    .btn-primary:hover::after { opacity: 1; }
    .btn-primary span { position: relative; z-index: 1; }

    .btn-outline {
      background: transparent; border: 1.5px solid rgba(0,175,154,0.5);
      border-radius: 50px; padding: 0 34px; height: 56px;
      font-size: 1rem; font-weight: 700; color: var(--text);
      cursor: pointer; transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), border-color 0.2s, color 0.2s, box-shadow 0.25s ease;
      text-decoration: none; display: inline-flex; align-items: center;
    }
    .btn-outline:hover {
      border-color: var(--primary); color: var(--primary);
      transform: translateY(-5px) translateX(-4px);
      box-shadow: 0 14px 30px rgba(0,175,154,0.2);
    }

    /* ══════════════════════════════
       TRUST BAR — SCROLLING with FADE
       👇 Edit company names in HTML below
    ══════════════════════════════ */
    .trust-section {
      position: relative; z-index: 4;
      margin-top: 130px;   /* gap below buttons */
      width: 100%;
      padding-bottom: 50px;  /* gap below moving line */
    }

    /* H2 sub-heading for trust — SEO hierarchy after H1 */
    .trust-heading {
      text-align: center;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 24px;
      font-family: var(--font-body);
    }
    .trust-heading::before { content: '◆ '; color: var(--primary); font-size: 0.6rem; }

    .trust-track-wrap {
      position: relative; overflow: hidden;
      padding: 20px 0;
      border-top: 1px solid rgba(0,175,154,0.1);
      border-bottom: 1px solid rgba(0,175,154,0.1);
    }

    /* Perfect fade — matches hero bg exactly so text truly vanishes */
    .trust-track-wrap::before,
    .trust-track-wrap::after {
      content: '';
      position: absolute; top: 0; bottom: 0;
      width: 220px; z-index: 2;
      pointer-events: none;
    }
    .trust-track-wrap::before {
      left: 0;
      background: linear-gradient(to right,
        #e0faf5 0%,
        #e0faf5 15%,
        rgba(224,250,245,0.85) 40%,
        rgba(224,250,245,0.3)  70%,
        rgba(224,250,245,0)    100%
      );
    }
    .trust-track-wrap::after {
      right: 0;
      background: linear-gradient(to left,
        #e0faf5 0%,
        #e0faf5 15%,
        rgba(224,250,245,0.85) 40%,
        rgba(224,250,245,0.3)  70%,
        rgba(224,250,245,0)    100%
      );
    }

    .trust-track {
      display: flex; align-items: center;
      gap: 80px;           /* increased gap between items */
      width: max-content;
      animation: scrollLeft 24s linear infinite;
    }
    .trust-track:hover { animation-play-state: paused; }
    @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    .t-logo {
      font-family: var(--font-head);
      font-size: 1.18rem;   /* slightly bigger */
      font-weight: 700;
      color: #b0bec5; letter-spacing: 0.06em; white-space: nowrap;
      display: flex; align-items: center; gap: 9px;
      transition: color 0.3s; cursor: default;
    }
    .t-logo:hover { color: var(--primary); }
    .t-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; opacity: 0.5; display: inline-block; }

    /* ══════════════════════════════
       FADE-IN ANIMATION
    ══════════════════════════════ */
    .fade-in { opacity: 0; transform: translateY(24px); animation: fadeUp 0.7s forwards; }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    .d1{animation-delay:0.1s} .d2{animation-delay:0.25s} .d3{animation-delay:0.4s} .d4{animation-delay:0.55s}

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 900px) {
      header nav { padding: 16px 28px; }
      footer nav { display: block; }
      .nav-links { display: none; }
      .logo { margin-left: 0; }
    }
    @media (max-width: 768px) {
      .hero { padding: 120px 24px 50px; }
      .fc-bl, .fc-br { display: none; }
      .ring-3, .ring-4 { display: none; }
      .trust-section { margin-top: 80px; }
      .trust-track-wrap::before,
      .trust-track-wrap::after { width: 60px; }
    }

/* ══════════════════════════════════════
     SERVICES SECTION
  ══════════════════════════════════════ */
  .services-section {
    position: relative;
    padding: 130px 24px 110px;
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
  }

  /* ── Scroll reveal ── */
  .svc-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25,1,0.5,1);
  }
  .svc-reveal.visible { opacity: 1; transform: translateY(0); }
  .svc-d1 { transition-delay: 0.1s; }
  .svc-d2 { transition-delay: 0.22s; }
  .svc-d3 { transition-delay: 0.34s; }

  /* ── Header ── */
  .services-header { text-align: center; margin-bottom: 80px; }

  .services-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: #1e1e1e;
    line-height: 1.22; margin-bottom: 20px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .services-title-accent {
    color: #1e1e1e;
  }

  .services-sub {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 500px; margin: 0 auto; line-height: 1.78;
  }

  /* ── Cards Grid ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative; z-index: 2;
  }

  /* ── Card Base ── */
  .svc-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    border: 1.5px solid rgba(0,140,120,0.1);
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
  }

  /* Travelling shimmer line around border */
  .svc-card::after {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 28px;
    background: conic-gradient(
      from var(--angle, 0deg),
      transparent 0deg,
      transparent 60deg,
      rgba(0,175,154,0.9) 90deg,
      rgba(0,220,190,1) 100deg,
      transparent 130deg,
      transparent 360deg
    );
    animation: borderSpin 3s linear infinite;
    z-index: 0;
    opacity: 0.7;
  }

  /* Mask to show only border line, not fill */
  .svc-card::before {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: #ffffff;
    border-radius: 26px;
    z-index: 1;
  }
  .svc-card--mid::before { background: linear-gradient(160deg, #f0fdfb 0%, #e6faf7 100%); }

  .svc-card-inner { position: relative; z-index: 2; padding: 36px 30px 30px; }
  .svc-hover-bg   { position: absolute; inset: 0; z-index: 1; border-radius: 28px;
    background: linear-gradient(145deg, rgba(0,140,120,0.05) 0%, rgba(0,175,154,0.02) 100%);
    opacity: 0; transition: opacity 0.4s ease;
  }
  .svc-card:hover .svc-hover-bg { opacity: 1; }

  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
  @keyframes borderSpin {
    from { --angle: 0deg; }
    to   { --angle: 360deg; }
  }

  /* Each card different speed for variety */
  .svc-d1::after { animation-duration: 6s; }
  .svc-d2::after { animation-duration: 7.5s; animation-delay: -2.5s; }
  .svc-d3::after { animation-duration: 5.5s; animation-delay: -1.5s; }

  .svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,140,120,0.14), 0 8px 20px rgba(0,0,0,0.05);
    border-color: transparent;
  }
  .svc-card:hover::after { opacity: 1; }

  /* Middle card — teal tint */
  .svc-card--mid {
    background: linear-gradient(160deg, #f0fdfb 0%, #e6faf7 100%);
    border-color: rgba(0,140,120,0.2);
    box-shadow: 0 8px 32px rgba(0,140,120,0.1);
  }
  .svc-card--mid:hover {
    box-shadow: 0 34px 80px rgba(0,140,120,0.2), 0 8px 24px rgba(0,0,0,0.05);
    border-color: rgba(0,140,120,0.35);
  }
  .svc-card--mid .svc-icon-wrap { background: rgba(0,140,120,0.12); }
  .svc-card--mid .svc-tags li {
    background: rgba(0,140,120,0.1);
    border-color: rgba(0,140,120,0.25);
    color: #007d6e;
  }

  /* ── Card Top Row ── */
  .svc-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 24px;
  }

  /* ── Icon ── */
  .svc-icon-wrap {
    width: 60px; height: 60px;
    background: rgba(0,140,120,0.08);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .svc-card:hover .svc-icon-wrap {
    background: rgba(0,140,120,0.15);
    transform: rotate(-6deg) scale(1.08);
  }
  .svc-icon-wrap svg {
    width: 32px; height: 32px;
    color: #007d6e;
  }

  /* ── Title ── */
  .svc-title {
    font-family: var(--font-head);
    font-size: 1.22rem; font-weight: 700;
    color: #1a1a1a; margin-bottom: 12px; line-height: 1.3;
  }

  /* ── Desc ── */
  .svc-desc {
    font-size: 0.9rem; color: var(--text-muted);
    line-height: 1.78; margin-bottom: 22px;
  }

  /* ── Tags ── */
  .svc-tags {
    display: flex; flex-wrap: wrap; gap: 7px;
    list-style: none; margin-bottom: 28px;
  }
  .svc-tags li {
    font-size: 0.74rem; font-weight: 600;
    color: #007d6e;
    background: rgba(0,140,120,0.07);
    border: 1px solid rgba(0,140,120,0.18);
    border-radius: 50px; padding: 4px 12px;
    transition: background 0.25s, transform 0.25s;
  }
  .svc-card:hover .svc-tags li { background: rgba(0,140,120,0.12); }

  /* ── Footer: link only ── */
  .svc-footer {
    display: flex; align-items: center;
  }
  .svc-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.88rem; font-weight: 700; color: #007d6e;
    cursor: pointer;
    position: relative;
    padding: 8px 0;
    text-decoration: none;
  }

  /* Underline that grows on learn more hover */
  .svc-link::after {
    content: '';
    position: absolute; bottom: 4px; left: 0;
    width: 0; height: 2px;
    background: #007d6e;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.25,1,0.5,1);
  }
  .svc-link:hover::after { width: 100%; }

  /* Arrow circle on learn more hover only */
  .svc-link .svc-link-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,125,110,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease,
                border-color 0.3s ease,
                transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }
  .svc-link .svc-link-arrow svg {
    width: 13px; height: 13px;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }
  .svc-link:hover .svc-link-arrow {
    background: #007d6e;
    border-color: #007d6e;
    transform: rotate(-40deg);
  }
  .svc-link:hover .svc-link-arrow svg { color: white; transform: rotate(40deg); }

  /* Non-hovered cards go back to plain border, no shimmer */
  .services-grid:has(.svc-card:hover) .svc-card:not(:hover)::after {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  /* Hovered card shimmer becomes brighter */
  .svc-card:hover::after {
    opacity: 1;
    animation-duration: 1.8s !important;
  }

  @media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  }

  /* ══ WHY SECTION ══ */
  .why-section { padding: 100px 60px 120px; background: #060f0d; position: relative; overflow: hidden; }
  .why-section::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: linear-gradient(rgba(0,175,154,0.13) 1px, transparent 1px), linear-gradient(90deg, rgba(0,175,154,0.13) 1px, transparent 1px); background-size: 55px 55px; mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 20%, black 75%); -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 20%, black 75%); }
  .why-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; max-width: 1200px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
  .why-title { font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; color: #ffffff; line-height: 1.2; max-width: 600px; }
  .why-accent { display: block; color: #00af9a; }
  .why-explore-btn { display: inline-flex; align-items: center; gap: 12px; background: rgba(0,175,154,0.15); border: 1.5px solid rgba(0,175,154,0.6); border-radius: 50px; padding: 0 34px; height: 56px; font-size: 1rem; font-weight: 700; color: #00d4bc; text-decoration: none; white-space: nowrap; align-self: center; transition: background 0.3s, border-color 0.3s, transform 0.3s; letter-spacing: 0.01em; }
  .why-btn-arrow { width: 28px; height: 28px; border-radius: 50%; background: rgba(0,175,154,0.15); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
  .why-btn-arrow svg { width: 14px; height: 14px; color: #00af9a; }
  .why-explore-btn:hover { background: rgba(0,175,154,0.08); border-color: #00af9a; transform: translateY(-2px); }
  .why-explore-btn:hover .why-btn-arrow { background: #00af9a; }
  .why-explore-btn:hover .why-btn-arrow svg { color: #060f0d; }
  .why-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 16px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .why-col-mid { display: flex; flex-direction: column; gap: 16px; }
  .why-card { border-radius: 24px; overflow: hidden; position: relative; transition: transform 0.35s cubic-bezier(0.25,1,0.5,1), box-shadow 0.35s ease; }
  .why-card:hover { transform: translateY(-6px); }
  .why-card-content { position: relative; z-index: 2; padding: 32px 28px; }
  .why-card-content--bottom { margin-top: auto; }
  .why-card-title { font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; color: #ffffff; line-height: 1.35; margin-bottom: 14px; }
  .why-card-title--light { color: #ffffff; }
  .why-card-desc { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
  .why-card--left { background: #0d1f1c; border: 1px solid rgba(0,175,154,0.15); min-height: 400px; display: flex; flex-direction: column; box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
  .why-card--left:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,175,154,0.25); }
  .why-feat-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
  .why-feat-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.75); }
  .why-feat-list li svg { width: 18px; height: 18px; color: #00af9a; flex-shrink: 0; }
  .why-orbit { position: absolute; bottom: -100px; right: -160px; width: 420px; height: 420px; pointer-events: none; }
  .why-orbit-ring { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .why-orbit-ring1 { width: 260px; height: 260px; border: 1.5px solid rgba(255,255,255,0.25); box-shadow: 0 0 12px rgba(255,255,255,0.06) inset; animation: whyOrbit1 9s linear infinite; }
  .why-orbit-ring2 { width: 380px; height: 380px; border: 1px solid rgba(255,255,255,0.12); animation: whyOrbit2 14s linear infinite reverse; }
  .why-orbit-ring3 { width: 160px; height: 160px; border: 1px dashed rgba(255,255,255,0.15); animation: whyOrbit1 6s linear infinite reverse; }
  .why-orbit-dot { position: absolute; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,0.5); top: 50%; left: 50%; }
  .why-orbit-dot svg { width: 22px; height: 22px; }
  .why-od1 { background: linear-gradient(135deg,#1a3a5c,#0d2240); border: 1.5px solid rgba(59,130,246,0.5); box-shadow: 0 0 22px rgba(59,130,246,0.7), 0 0 45px rgba(59,130,246,0.3), 0 4px 14px rgba(0,0,0,0.5); animation: whyDot1 9s linear infinite; }
  .why-od1 svg { color: #60a5fa; }
  .why-od2 { background: linear-gradient(135deg,#3d1f05,#2a1503); border: 1.5px solid rgba(251,146,60,0.5); box-shadow: 0 0 22px rgba(251,146,60,0.7), 0 0 45px rgba(251,146,60,0.3), 0 4px 14px rgba(0,0,0,0.5); animation: whyDot2 9s linear infinite; }
  .why-od2 svg { color: #fb923c; }
  .why-od3 { background: linear-gradient(135deg,#3d3205,#2a2203); border: 1.5px solid rgba(250,204,21,0.5); box-shadow: 0 0 22px rgba(250,204,21,0.7), 0 0 45px rgba(250,204,21,0.3), 0 4px 14px rgba(0,0,0,0.5); animation: whyDot3 9s linear infinite; }
  .why-od3 svg { color: #facc15; }
  .why-od4 { background: linear-gradient(135deg,#2d1a4a,#1e1030); border: 1.5px solid rgba(167,139,250,0.5); box-shadow: 0 0 22px rgba(167,139,250,0.7), 0 0 45px rgba(167,139,250,0.3), 0 4px 14px rgba(0,0,0,0.5); animation: whyDot4 14s linear infinite; }
  .why-od4 svg { color: #a78bfa; }
  .why-od5 { background: linear-gradient(135deg,#3d0f1f,#280a14); border: 1.5px solid rgba(251,113,133,0.5); box-shadow: 0 0 22px rgba(251,113,133,0.7), 0 0 45px rgba(251,113,133,0.3), 0 4px 14px rgba(0,0,0,0.5); animation: whyDot5 14s linear infinite; }
  .why-od5 svg { color: #fb7185; }
  @keyframes whyOrbit1 { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
  @keyframes whyOrbit2 { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
  @keyframes whyDot1 { from { transform: translate(-50%,-50%) rotate(0deg) translateX(130px) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg) translateX(130px) rotate(-360deg); } }
  @keyframes whyDot2 { from { transform: translate(-50%,-50%) rotate(120deg) translateX(130px) rotate(-120deg); } to { transform: translate(-50%,-50%) rotate(480deg) translateX(130px) rotate(-480deg); } }
  @keyframes whyDot3 { from { transform: translate(-50%,-50%) rotate(240deg) translateX(130px) rotate(-240deg); } to { transform: translate(-50%,-50%) rotate(600deg) translateX(130px) rotate(-600deg); } }
  @keyframes whyDot4 { from { transform: translate(-50%,-50%) rotate(0deg) translateX(190px) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg) translateX(190px) rotate(-360deg); } }
  @keyframes whyDot5 { from { transform: translate(-50%,-50%) rotate(180deg) translateX(190px) rotate(-180deg); } to { transform: translate(-50%,-50%) rotate(540deg) translateX(190px) rotate(-540deg); } }
  .why-card--teal { background: linear-gradient(135deg,#00af9a 0%,#006b5e 100%); min-height: 185px; display: flex; align-items: stretch; box-shadow: 0 8px 32px rgba(0,140,120,0.3); }
  .why-card--teal:hover { box-shadow: 0 20px 50px rgba(0,140,120,0.45); }
  .why-card--teal .why-card-content { flex: 1; }
  .why-inline-link { display: inline-block; margin-top: 12px; font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
  .why-inline-link:hover { color: white; }
  .why-teal-visual { display: flex; align-items: center; justify-content: center; padding: 20px; flex-shrink: 0; }
  .why-teal-circle { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; animation: whyTealPulse 3s ease-in-out infinite; }
  .why-teal-circle svg { width: 48px; height: 48px; }
  @keyframes whyTealPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
  .why-card--dark { background: #111c19; border: 1px solid rgba(0,175,154,0.12); flex: 1; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
  .why-card--dark:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,175,154,0.18); }
  .why-stats-row { display: flex; align-items: center; padding: 0 28px 28px; }
  .why-stat { flex: 1; text-align: center; }
  .why-stat-num { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: #00af9a; line-height: 1; }
  .why-stat-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 500; }
  .why-stat-divider { width: 1px; height: 36px; background: rgba(0,175,154,0.2); flex-shrink: 0; }
  .why-card--right { background: #0a1714; border: 1px solid rgba(0,175,154,0.1); min-height: 400px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
  .why-card--right:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,175,154,0.2); }
  .why-right-visual { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; padding: 40px; }
  .why-right-glow { position: absolute; width: 180px; height: 180px; background: radial-gradient(circle,rgba(0,175,154,0.15),transparent 70%); border-radius: 50%; filter: blur(20px); animation: whyRightGlow 4s ease-in-out infinite; }
  .why-right-icon { position: relative; z-index: 2; animation: whyRightFloat 5s ease-in-out infinite; }
  .why-right-icon svg { width: 180px; height: 180px; }
  @keyframes whyRightGlow { 0%,100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.25); opacity: 1; } }
  @keyframes whyRightFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .diff-reveal { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25,1,0.5,1); }
  .diff-reveal.visible { opacity: 1; transform: translateY(0); }
  .diff-d1 { transition-delay: 0.1s; } .diff-d2 { transition-delay: 0.2s; } .diff-d3 { transition-delay: 0.3s; } .diff-d4 { transition-delay: 0.15s; }
  @media (max-width: 960px) { .why-grid { grid-template-columns: 1fr 1fr; } .why-card--left { grid-column: 1/-1; } .why-section { padding: 80px 32px 100px; } }
  @media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } .why-section { padding: 60px 20px 80px; } }

  /* ══════════════════════════════════════
     WHAT WE DO  |  Prefix: ow-
  ══════════════════════════════════════ */
  .ow-section { padding: 110px 60px; background: #ffffff; position: relative; }

  .ow-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
  .ow-title { font-family: var(--font-head); font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 800; color: #1a1a1a; line-height: 1.2; margin-bottom: 16px; }
  .ow-accent { color: #1a1a1a; }
  .ow-header-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }

  .ow-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }

  /* LEFT dark card */
  .ow-left {
    background: #060f0d; border-radius: 28px;
    outline: 2px solid rgba(0,175,154,0.3);
    outline-offset: 3px;
    overflow: hidden; position: sticky; top: 100px;
    min-height: 620px; display: flex; flex-direction: column;
    align-items: center; padding: 40px 32px 32px;
  }
  .ow-left-text { width: 100%; margin-bottom: 20px; }
  .ow-left-big {
    font-family: var(--font-head); font-size: 2rem; font-weight: 800;
    color: #ffffff; line-height: 1.2; margin-bottom: 14px;
  }
  .ow-left-big span { color: #00af9a; }
  .ow-left-small {
    font-size: 0.88rem; color: rgba(255,255,255,0.6);
    line-height: 1.8; margin-bottom: 20px;
  }
  .ow-left-pills { display: flex; flex-wrap: wrap; gap: 8px; }
  .ow-left-pills span {
    font-size: 0.75rem; font-weight: 600;
    background: rgba(0,175,154,0.12);
    border: 1px solid rgba(0,175,154,0.25);
    color: #00d4bc; border-radius: 50px;
    padding: 5px 12px;
  }
  .ow-consult-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--grad);
    border: none; border-radius: 50px;
    padding: 0 34px; height: 56px;
    font-size: 1rem; font-weight: 700; color: white;
    text-decoration: none; width: 100%;
    margin-top: 20px;
    transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .ow-consult-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
  .ow-consult-btn:hover {
    box-shadow: 0 14px 30px rgba(0,175,154,0.45);
    transform: translateY(-3px);
  }
  .ow-consult-btn:hover svg { transform: translateX(5px); }

  .ow-globe-wrap {
    flex: 1; width: 100%; position: relative;
    display: flex; align-items: center; justify-content: center;
    min-height: 260px; height: 260px;
  }
  .ow-globe-wrap::before {
    content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background:
      linear-gradient(to bottom, #060f0d 0%, transparent 30%, transparent 70%, #060f0d 100%),
      linear-gradient(to right,  #060f0d 0%, transparent 25%, transparent 75%, #060f0d 100%);
  }
  #networkCanvas { display:block !important; width:100% !important; height:260px !important; opacity:0.7; }

  /* RIGHT items — full width cards like reference */
  .ow-right { display: flex; flex-direction: column; gap: 14px; }

  .ow-right { display: flex; flex-direction: column; gap: 12px; }

  .ow-item {
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 130px;
    padding: 24px 28px;
    background: #ffffff;
    border: none;
    outline: 2px solid rgba(0,140,120,0.3);
    outline-offset: 0px;
    border-radius: 18px;
    cursor: default; position: relative; overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease,
                box-shadow 0.35s ease, transform 0.3s cubic-bezier(0.25,1,0.5,1);
  }
  .ow-item:hover {
    background: linear-gradient(to left, rgba(0,175,154,0.08) 0%, transparent 60%);
    border-color: rgba(0,140,120,0.4);
    outline-color: rgba(0,140,120,0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,140,120,0.1), 0 4px 12px rgba(0,0,0,0.04);
  }

  /* Top: title */
  .ow-item-left-col { position: relative; z-index: 1; margin-bottom: 10px; }
  .ow-item-title {
    font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
    color: #1a1a1a; line-height: 1.3; transition: color 0.3s;
  }
  .ow-item:hover .ow-item-title { color: #007d6e; }

  .ow-item-divider { display: none; }

  /* Bottom: desc + tags */
  .ow-item-body { position: relative; z-index: 1; }
  .ow-item-desc {
    font-size: 0.86rem; color: var(--text-muted);
    line-height: 1.7; margin-bottom: 10px; transition: color 0.3s;
  }
  .ow-item:hover .ow-item-desc { color: var(--text-muted); }
  .ow-item-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .ow-item-tags span {
    font-size: 0.7rem; font-weight: 600; color: #007d6e;
    background: rgba(0,140,120,0.08); border: 1px solid rgba(0,140,120,0.18);
    border-radius: 50px; padding: 3px 10px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  .ow-item:hover .ow-item-tags span {
    background: rgba(0,140,120,0.14);
    color: #007d6e;
    border-color: rgba(0,140,120,0.3);
  }

  .ow-reveal { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25,1,0.5,1); }
  .ow-reveal.visible { opacity: 1; transform: translateY(0); }
  .ow-d1 { transition-delay: 0.05s; } .ow-d2 { transition-delay: 0.1s; } .ow-d3 { transition-delay: 0.15s; }
  .ow-d4 { transition-delay: 0.2s; } .ow-d5 { transition-delay: 0.25s; } .ow-d6 { transition-delay: 0.3s; } .ow-d7 { transition-delay: 0.35s; }

  @media (max-width: 960px) { .ow-inner { grid-template-columns: 1fr; } .ow-left { position: static; min-height: 360px; } .ow-section { padding: 80px 32px; } }
  @media (max-width: 600px) { .ow-section { padding: 60px 20px; } }

  /* ══════════════════════════════════════
     REVIEWS SECTION  |  Prefix: rv-
  ══════════════════════════════════════ */
  .rv-section {
    padding: 110px 0 120px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
  }

  /* Header */
  .rv-header {
    text-align: center; max-width: 640px;
    margin: 0 auto 56px; padding: 0 24px;
  }
  .rv-badge {
    display: inline-block;
    background: rgba(0,175,154,0.08); border: 1px solid rgba(0,175,154,0.2);
    color: #007d6e; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 18px;
  }
  .rv-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800; color: #1a1a1a;
    line-height: 1.2; margin-bottom: 14px;
  }
  .rv-accent { color: #1a1a1a; }
  .rv-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
  .rv-stars-row { display: flex; align-items: center; justify-content: center; gap: 4px; }
  .rv-stars-row svg { width: 20px; height: 20px; }
  .rv-rating-text { font-size: 0.9rem; font-weight: 700; color: #1a1a1a; margin-left: 6px; }

  /* Track outer */
  .rv-track-outer { position: relative; overflow: hidden; }
  .rv-fade-left, .rv-fade-right {
    position: absolute; top: 0; bottom: 0; width: 180px; z-index: 2; pointer-events: none;
  }
  .rv-fade-left  { left: 0;  background: linear-gradient(to right, #ffffff 0%, transparent 100%); }
  .rv-fade-right { right: 0; background: linear-gradient(to left,  #ffffff 0%, transparent 100%); }

  /* Scrolling tracks */
  .rv-track {
    display: flex; gap: 20px;
    width: max-content;
    padding: 12px 0;
  }
  .rv-track--left  { animation: rvScrollLeft  40s linear infinite; margin-bottom: 20px; }
  .rv-track--right { animation: rvScrollRight 40s linear infinite; }
  .rv-track:hover  { animation-play-state: paused; }

  @keyframes rvScrollLeft  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  @keyframes rvScrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

  /* Cards */
  .rv-card {
    background: #ffffff;
    border: 1.5px solid rgba(0,175,154,0.12);
    border-radius: 22px;
    padding: 28px 26px;
    width: 340px; flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.25,1,0.5,1), box-shadow 0.35s ease, border-color 0.3s;
    cursor: default;
  }
  .rv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,140,120,0.1), 0 4px 14px rgba(0,0,0,0.04);
    border-color: rgba(0,175,154,0.3);
  }
  .rv-card--featured {
    background: linear-gradient(145deg, #f0fdfb, #e6faf7);
    border-color: rgba(0,175,154,0.25);
    box-shadow: 0 4px 20px rgba(0,140,120,0.08);
  }
  .rv-card--featured:hover {
    box-shadow: 0 24px 60px rgba(0,140,120,0.15), 0 4px 14px rgba(0,0,0,0.04);
  }

  .rv-card-top {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  }
  .rv-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: var(--av); display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 800; color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .rv-name { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: #1a1a1a; margin: 0; }
  .rv-role { font-size: 0.78rem; color: var(--text-muted); margin: 2px 0 0; }
  .rv-stars { margin-left: auto; color: #f59e0b; font-size: 0.85rem; letter-spacing: 1px; }

  .rv-text {
    font-size: 0.88rem; color: #3a4a48; line-height: 1.78;
    margin-bottom: 16px; font-style: italic;
  }
  .rv-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600; color: #007d6e;
    background: rgba(0,140,120,0.07); border: 1px solid rgba(0,140,120,0.15);
    border-radius: 50px; padding: 4px 12px;
  }

  /* Reveal */
  .rv-reveal { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25,1,0.5,1); }
  .rv-reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 768px) {
    .rv-section { padding: 80px 0 100px; }
    .rv-card { width: 280px; padding: 22px 20px; }
    .rv-fade-left, .rv-fade-right { width: 60px; }
  }


  /* ══════════════════════════════════════
     CTA BANNER + FOOTER  |  Prefix: ft-
  ══════════════════════════════════════ */

  /* CTA Banner */
  .ft-cta-wrap {
    background: #08100e;
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .ft-cta-wrap::before { display: none; }
  /* Bottom fade to footer */
  .ft-cta-wrap::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to bottom, transparent, #060f0d);
    pointer-events: none; z-index: 0;
  }



  .ft-cta-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800; color: #ffffff;
    line-height: 1.15; margin-bottom: 16px;
    position: relative; z-index: 1;
  }
  .ft-cta-sub {
    font-size: 1rem; color: rgba(255,255,255,0.55);
    line-height: 1.7; margin-bottom: 36px;
    position: relative; z-index: 1;
  }

  /* CTA Buttons */
  .ft-cta-btns {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
    margin-bottom: 20px; position: relative; z-index: 1;
  }
  .ft-cta-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--grad); color: white; border: none;
    border-radius: 50px; padding: 0 34px; height: 56px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    text-decoration: none; font-family: var(--font-body);
    transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .ft-cta-btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s; }
  .ft-cta-btn-primary:hover { box-shadow: 0 12px 32px rgba(0,175,154,0.5); transform: translateY(-3px); }
  .ft-cta-btn-primary:hover svg { transform: translateX(4px); }
  .ft-cta-btn-outline {
    display: inline-flex; align-items: center;
    background: transparent; color: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50px; padding: 0 34px; height: 56px;
    font-size: 1rem; font-weight: 600; cursor: pointer;
    text-decoration: none; font-family: var(--font-body);
    transition: border-color 0.3s, color 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .ft-cta-btn-outline:hover { border-color: rgba(0,175,154,0.6); color: #00af9a; transform: translateY(-3px); }
  .ft-cta-note {
    font-size: 0.8rem; color: rgba(255,255,255,0.35);
    position: relative; z-index: 1;
  }

  /* Footer */
  .ft-footer {
    background: #060f0d;
    padding: 80px 60px 0;
  }

  .ft-footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
    gap: 56px; padding-bottom: 90px;
  }

  /* Brand col */
  .ft-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-head); font-size: 1.45rem; font-weight: 800;
    color: white; text-decoration: none; margin-bottom: 16px;
  }
  .ft-logo-icon {
    width: 44px; height: 44px; border-radius: 11px;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 15px; font-weight: 800;
  }
  .ft-brand-desc {
    font-size: 0.92rem; color: rgba(255,255,255,0.45);
    line-height: 1.85; margin-bottom: 28px;
  }
  .ft-socials { display: flex; gap: 10px; }
  .ft-social {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  .ft-social svg { width: 18px; height: 18px; }
  .ft-social:hover { background: rgba(0,175,154,0.15); color: #00af9a; border-color: rgba(0,175,154,0.4); }

  /* Nav cols */
  .ft-col-title {
    font-family: var(--font-head); font-size: 1rem; font-weight: 700;
    color: #ffffff; margin-bottom: 24px; letter-spacing: 0.02em;
  }
  .ft-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .ft-links a {
    font-size: 0.92rem; color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.25s;
    position: relative; padding-left: 0;
  }
  .ft-links a:hover { color: #00af9a; }

  /* Contact col */
  .ft-contact-item { margin-bottom: 20px; }
  .ft-contact-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
  .ft-contact-val { font-size: 0.94rem; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.25s; }
  a.ft-contact-val:hover { color: #00af9a; }

  /* Bottom bar */
  .ft-bottom {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 0 40px;
    position: relative;
    flex-wrap: wrap; gap: 12px;
  }
  .ft-bottom::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.08) 15%, rgba(255,255,255,0.08) 85%, transparent 100%);
  }
  .ft-copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
  .ft-bottom-links { display: flex; gap: 24px; }
  .ft-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.25s; }
  .ft-bottom-links a:hover { color: #00af9a; }

  @media (max-width: 960px) {
    .ft-footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .ft-col--brand { grid-column: 1 / -1; }
    .ft-footer { padding: 48px 32px 0; }
    .ft-cta-wrap { padding: 80px 24px; }
  }
  @media (max-width: 600px) {
    .ft-footer-inner { grid-template-columns: 1fr; }
    .ft-footer { padding: 40px 20px 0; }
    .ft-bottom { flex-direction: column; align-items: flex-start; }
  } @keyframes opFloat{0%,100%{transform:translateY(0) scale(1);opacity:.6}50%{transform:translateY(-7px) scale(1.3);opacity:1}}
