 /* ============================================================
   DESIGN TOKENS
============================================================ */
    :root {
      /* Brand palette — derived from the Digitaviser mark */
      --navy-950: #060a1a;
      --navy-900: #223db9 ;
      --navy-800: #0e1c5c;
      --blue-600: #0b5fff;
      --blue-500: #2f7dff;
      --blue-400: #5e98ff;
      --blue-100: #dce9ff;
      --ice-50: #f5f8fd;
      --white: #ffffff;
      --slate-900: #101524;
      --slate-600: #5c6478;
      --slate-400: #8c93a6;
      --slate-300: #d7deea;
      --slate-150: #eef1f7;
      --grad-brand: linear-gradient(135deg, var(--navy-900) 0%, var(--blue-600) 100%);
      --grad-brand-soft: linear-gradient(135deg, rgba(10, 20, 66, .06) 0%, rgba(11, 95, 255, .10) 100%);
      --grad-text: linear-gradient(100deg, var(--navy-900) 0%, var(--blue-600) 60%, var(--blue-400) 100%);
      --font-display: 'Outfit', sans-serif;
      --font-body: 'Inter', sans-serif;
      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --shadow-sm: 0 2px 10px rgba(10, 20, 66, .06);
      --shadow-md: 0 14px 36px rgba(10, 20, 66, .10);
      --shadow-lg: 0 28px 70px rgba(10, 20, 66, .16);
      --ease: cubic-bezier(.16, .84, .32, 1);
      --container: 1240px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion:reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
      }
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--slate-900);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-display);
      margin: 0;
      line-height: 1.12;
      color: var(--navy-900);
    }

    p {
      margin: 0;
    }

    :focus-visible {
      outline: 2px solid var(--blue-600);
      outline-offset: 3px;
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 32px;
    }

    .section {
      padding: 120px 0;
      position: relative;
    }

    @media(max-width:768px) {
      .section {
        padding: 80px 0;
      }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--blue-600);
      margin-bottom: 18px;
    }

    .eyebrow .dot-trail {
      display: inline-flex;
      gap: 3px;
    }

    .eyebrow .dot-trail span {
      width: 5px;
      height: 5px;
      border-radius: 1px;
      background: var(--blue-600);
    }

    .eyebrow .dot-trail span:nth-child(2) {
      opacity: .6;
    }

    .eyebrow .dot-trail span:nth-child(3) {
      opacity: .3;
    }

    .section-head {
      max-width: 640px;
      margin-bottom: 64px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-head h2 {
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 600;
      letter-spacing: -.01em;
    }

    .section-head p {
      margin-top: 18px;
      font-size: 17px;
      line-height: 1.7;
      color: var(--slate-600);
    }

    /* Buttons */
    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 30px;
      border-radius: 100px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 15px;
      border: 1px solid transparent;
      cursor: pointer;
      overflow: hidden;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease);
      isolation: isolate;
    }

    .btn:active {
      transform: scale(.97);
    }

    .btn-primary {
      background: var(--grad-brand);
      color: var(--white);
      box-shadow: 0 10px 30px rgba(11, 95, 255, .30);
    }

    .btn-primary:hover {
      box-shadow: 0 16px 40px rgba(11, 95, 255, .42);
      transform: translateY(-2px);
    }

    .btn-primary .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, .5);
      transform: scale(0);
      animation: ripple .6s var(--ease);
      pointer-events: none;
    }

    @keyframes ripple {
      to {
        transform: scale(3);
        opacity: 0;
      }
    }

    .btn-ghost {
      background: var(--white);
      color: var(--navy-900);
      border-color: var(--slate-300);
    }

    .btn-ghost:hover {
      border-color: var(--blue-600);
      color: var(--blue-600);
      transform: translateY(-2px);
    }

    .btn-ghost i {
      transition: transform .35s var(--ease);
    }

    .btn-ghost:hover i {
      transform: translateX(4px);
    }

    .btn-on-dark {
      background: rgba(255, 255, 255, .08);
      color: var(--white);
      border-color: rgba(255, 255, 255, .22);
      backdrop-filter: blur(8px);
    }

    .btn-on-dark:hover {
      background: rgba(255, 255, 255, .16);
      transform: translateY(-2px);
    }

    /* ============================================================
   HEADER
============================================================ */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 10px 0;
      transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
    }

    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .site-header.scrolled {
      padding: 12px 0;
      background: rgba(255, 255, 255, .85);
      backdrop-filter: blur(16px) saturate(160%);
      box-shadow: 0 6px 24px rgba(10, 20, 66, .08);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand img {
      height: 70px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-links a {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 14.5px;
      color: var(--navy-900);
      position: relative;
      padding: 4px 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: var(--grad-brand);
      transition: width .35s var(--ease);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 8px;
      z-index: 1100;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--navy-900);
      transition: transform .35s var(--ease), opacity .35s var(--ease);
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media(max-width:980px) {
      .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(78vw, 360px);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 44px;
        gap: 28px;
        transform: translateX(100%);
        transition: transform .5s var(--ease);
        box-shadow: -20px 0 60px rgba(10, 20, 66, .12);
      }

      .nav-links.open {
        transform: translateX(0);
      }

      .nav-links a {
        font-size: 20px;
      }

      .header-actions .btn-primary {
        display: none;
      }

      .nav-links .mobile-cta {
        display: inline-flex;
        margin-top: 10px;
      }

      .hamburger {
        display: flex;
      }
    }

    .nav-links .mobile-cta {
      display: none;
    }

    /* ============================================================
   HERO
============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 120px;
      overflow: hidden;
      background:
        radial-gradient(900px 500px at 85% 12%, rgba(11, 95, 255, .12), transparent 60%),
        radial-gradient(700px 500px at 8% 90%, rgba(10, 20, 66, .08), transparent 60%),
        var(--ice-50);
    }

    .hero-grid {
      display: flex;
      flex-direction: row;
      gap: 60px;
      width: 100%;
    }

    @media(max-width:980px) {
      .hero-grid {
        flex-direction: column;
      }
    }
    .hero-content {
      width: 65%;
    }
    .hero-visual{
      width: 35%;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 18px 9px 10px;
      background: var(--white);
      border: 1px solid var(--slate-300);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      color: var(--slate-600);
      box-shadow: var(--shadow-sm);
      margin-bottom: 28px;
    }

    .hero-badge .pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--blue-600);
      position: relative;
    }

    .hero-badge .pulse::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--blue-600);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: .7;
      }

      100% {
        transform: scale(2.6);
        opacity: 0;
      }
    }

    .hero h1 {
      font-size: clamp(38px, 5.4vw, 64px);
      font-weight: 700;
      letter-spacing: -.02em;
      color: var(--navy-900);
    }

    .hero h1 .typed-wrap {
      display: block;
      min-height: 1.15em;
    }

    .hero h1 .typed-text {
      background: var(--grad-text);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero h1 .cursor {
      display: inline-block;
      width: 3px;
      height: .85em;
      background: var(--blue-600);
      margin-left: 4px;
      vertical-align: -2px;
      animation: blink 1s step-end infinite;
    }

    @keyframes blink {
      50% {
        opacity: 0;
      }
    }

    .hero p.lead {
      margin-top: 26px;
      font-size: 18px;
      line-height: 1.75;
      color: var(--slate-600);
      max-width: 520px;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      margin-top: 38px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 54px;
    }

    .hero-stats div strong {
      display: block;
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      color: var(--navy-900);
    }

    .hero-stats div span {
      font-size: 13px;
      color: var(--slate-500, var(--slate-600));
    }

    /* Hero visual: dashboard mockup */
    .hero-visual {
      position: relative;
      height: 560px;
    }

    .hero-visual .glow {
      position: absolute;
      inset: 0;
      margin: auto;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11, 95, 255, .22), transparent 70%);
      filter: blur(10px);
    }

    .mock-panel {
      position: absolute;
      top: 40%;
      left: 16%;
      transform: translate(-50%, -50%);
      width: 330px;
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 24px;
      border: 1px solid var(--slate-150);
      animation: float 6s ease-in-out infinite;
    }

    .mock-panel .mp-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .mock-panel .mp-head span {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 14px;
    }

    .mock-panel .mp-bars {
      display: flex;
      align-items: flex-end;
      gap: 10px;
      height: 110px;
    }

    .mock-panel .mp-bars i {
      flex: 1;
      border-radius: 6px 6px 0 0;
      background: var(--grad-brand);
      opacity: .85;
    }

    .mock-panel .mp-foot {
      display: flex;
      justify-content: space-between;
      margin-top: 16px;
      font-size: 12px;
      color: var(--slate-600);
    }

    .mock-panel .mp-foot strong {
      color: var(--blue-600);
    }

    .float-card {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      padding: 12px 16px;
      border-radius: 14px;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--slate-150);
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 13px;
      animation: float 5s ease-in-out infinite;
    }

    .float-card i {
      width: 30px;
      height: 30px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 13px;
    }

    .fc-1 {
      top: 6%;
      left: 0;
      animation-delay: .2s;
    }

    .fc-1 i {
      background: #0b5fff;
    }

    .fc-2 {
      top: 18%;
      right: -4%;
      animation-delay: 1.1s;
    }

    .fc-2 i {
      background: #0a1442;
    }

    .fc-3 {
      bottom: 14%;
      left: -26%;
      animation-delay: .6s;
    }

    .fc-3 i {
      background: #2f7dff;
    }

    .fc-4 {
      bottom: 2%;
      right: 4%;
      animation-delay: 1.6s;
    }

    .fc-4 i {
      background: #5e98ff;
    }
    .fc-5 {
      bottom: 50%;
      left: -50%;
      animation-delay: 1.6s;
    }

    .fc-5 i {
      background: #2d70e3;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-14px);
      }
    }

    .pixel-trail {
      position: absolute;
      display: flex;
    }

    .pixel-trail span {
      display: block;
      border-radius: 2px;
    }

    @media(max-width:980px) {
      .hero-visual {
        height: 420px;
        transform: scale(.82);
      }
    }

    @media(max-width:560px) {
      .hero-stats {
        flex-wrap: wrap;
        row-gap: 18px;
      }
    }

    .scroll-cue {
      position: absolute;
      bottom: 34px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--slate-400);
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .scroll-cue .line {
      width: 1px;
      height: 34px;
      background: linear-gradient(var(--slate-400), transparent);
      animation: scrolldown 1.8s infinite;
    }

    @keyframes scrolldown {
      0% {
        transform: scaleY(0);
        transform-origin: top;
      }

      40% {
        transform: scaleY(1);
        transform-origin: top;
      }

      41% {
        transform-origin: bottom;
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom;
      }
    }

    /* ============================================================
   LOGO STRIP
============================================================ */
    .logo-strip {
      padding: 50px 0;
      border-bottom: 1px solid var(--slate-150);
    }

    .logo-strip .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }

    .logo-strip span.label {
      font-size: 13px;
      color: var(--slate-400);
      white-space: nowrap;
      font-family: var(--font-display);
    }

    .logo-strip .marks {
      display: flex;
      gap: 46px;
      flex-wrap: wrap;
      align-items: center;
    }

    .logo-strip .marks b {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      color: var(--slate-300);
      letter-spacing: .02em;
    }

    /* ============================================================
   ABOUT
============================================================ */
    .about-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 70px;
      align-items: center;
    }

    @media(max-width:900px) {
      .about-grid {
        grid-template-columns: 1fr;
      }
    }

    .about-visual {
      position: relative;
      aspect-ratio: 1/1.05;
      border-radius: var(--radius-lg);
      background: var(--grad-brand);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .about-visual .mesh {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .18), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, .12), transparent 45%);
    }

    .about-visual .center-mark {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-visual .center-mark img {
      width: 46%;
      filter: brightness(0) invert(1);
      opacity: .92;
    }

    .about-visual .pixel-trail span {
      background: rgba(255, 255, 255, .85);
    }

    .about-content .lead-line {
      font-size: 19px;
      line-height: 1.7;
      color: var(--slate-600);
      margin-bottom: 22px;
    }

    .about-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin: 34px 0 40px;
    }

    .pillar {
      padding: 22px;
      border-radius: var(--radius-md);
      background: var(--ice-50);
      border: 1px solid var(--slate-150);
    }

    .pillar i {
      color: var(--blue-600);
      font-size: 20px;
      margin-bottom: 12px;
      display: block;
    }

    .pillar h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .pillar p {
      font-size: 14px;
      color: var(--slate-600);
      line-height: 1.6;
    }

    .counters {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      padding-top: 34px;
      border-top: 1px solid var(--slate-150);
    }

    .counter strong {
      display: block;
      font-family: var(--font-display);
      font-size: 34px;
      font-weight: 700;
      background: var(--grad-text);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .counter span {
      font-size: 13px;
      color: var(--slate-600);
    }

    @media(max-width:560px) {
      .counters {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 26px;
      }

      .about-pillars {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================================
   SERVICES
============================================================ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    @media(max-width:900px) {
      .services-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:600px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    .service-card {
      position: relative;
      padding: 34px 28px;
      border-radius: var(--radius-md);
      background: var(--white);
      border: 1px solid var(--slate-150);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: var(--grad-brand);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity .45s var(--ease);
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card .num {
      position: absolute;
      top: 24px;
      right: 28px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 13px;
      color: var(--slate-300);
    }

    .service-card .ic {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      background: var(--grad-brand-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--blue-600);
      margin-bottom: 22px;
      transition: transform .45s var(--ease);
    }

    .service-card:hover .ic {
      transform: scale(1.08) rotate(-4deg);
    }

    .service-card h3 {
      font-size: 19px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--slate-600);
    }

    .service-card .more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 13.5px;
      color: var(--blue-600);
    }

    .service-card .more i {
      font-size: 11px;
      transition: transform .35s var(--ease);
    }

    .service-card:hover .more i {
      transform: translateX(5px);
    }

    /* ============================================================
   WHY CHOOSE US (dark band)
============================================================ */
    .why-section {
      background: var(--navy-900);
      position: relative;
      overflow: hidden;
      color: var(--white);
    }

    .why-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(700px 400px at 90% 0%, rgba(11, 95, 255, .25), transparent 60%);
    }

    .why-section .section-head h2,
    .why-section .section-head p {
      color: var(--white);
    }

    .why-section .section-head p {
      color: rgba(255, 255, 255, .65);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .1);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    @media(max-width:860px) {
      .why-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:560px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    .why-item {
      background: rgba(10, 20, 66, .55);
      backdrop-filter: blur(6px);
      padding: 38px 30px;
      transition: background .4s var(--ease);
    }

    .why-item:hover {
      background: rgba(11, 95, 255, .18);
    }

    .why-item .check {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--blue-400);
    }

    .why-item h4 {
      color: var(--white);
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .why-item p {
      font-size: 14px;
      color: rgba(255, 255, 255, .6);
      line-height: 1.65;
    }

    /* ============================================================
   PORTFOLIO
============================================================ */
    .tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 46px;
    }

    .tab-btn {
      padding: 11px 22px;
      border-radius: 100px;
      border: 1px solid var(--slate-300);
      background: var(--white);
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 13.5px;
      color: var(--slate-600);
      transition: all .35s var(--ease);
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: var(--grad-brand);
      color: var(--white);
      border-color: transparent;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    @media(max-width:900px) {
      .portfolio-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:600px) {
      .portfolio-grid {
        grid-template-columns: 1fr;
      }
    }

    .pf-card {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--slate-150);
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: box-shadow .4s var(--ease), transform .4s var(--ease);
    }

    .pf-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
    }

    .pf-thumb {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
    }

    .pf-thumb .ph {
      position: absolute;
      inset: 0;
      transition: transform .6s var(--ease);
    }

    .pf-card:hover .pf-thumb .ph {
      transform: scale(1.08);
    }

    .pf-thumb .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(10, 20, 66, .82), transparent 55%);
      display: flex;
      align-items: flex-end;
      padding: 18px;
      opacity: 0;
      transition: opacity .4s var(--ease);
    }

    .pf-card:hover .overlay {
      opacity: 1;
    }

    .overlay .view-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--white);
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 13px;
      padding: 9px 16px;
      border: 1px solid rgba(255, 255, 255, .4);
      border-radius: 100px;
    }

    .pf-body {
      padding: 20px 22px;
    }

    .pf-body .cat {
      font-size: 12px;
      font-weight: 600;
      color: var(--blue-600);
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .pf-body h3 {
      font-size: 17px;
      font-weight: 600;
      margin-top: 6px;
    }

    /* ============================================================
   TESTIMONIALS
============================================================ */
    .testi-section {
      background: var(--ice-50);
      position: relative;
    }

    .testi-track-wrap {
      overflow: hidden;
    }

    .testi-track {
      display: flex;
      transition: transform .6s var(--ease);
    }

    .testi-slide {
      flex: 0 0 100%;
      display: flex;
      justify-content: center;
    }

    .testi-card {
      max-width: 680px;
      width: 100%;
      background: rgba(255, 255, 255, .7);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, .6);
      border-radius: var(--radius-lg);
      padding: 46px 50px;
      box-shadow: var(--shadow-md);
      text-align: center;
    }

    .testi-card .quote {
      font-size: 38px;
      color: var(--blue-600);
      opacity: .35;
      font-family: var(--font-display);
      line-height: 1;
    }

    .testi-card .stars {
      color: #f5b400;
      font-size: 14px;
      margin: 14px 0 22px;
    }

    .testi-card p.msg {
      font-size: 18px;
      line-height: 1.75;
      color: var(--navy-900);
      font-weight: 500;
    }

    .testi-who {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
    }

    .testi-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--grad-brand);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 14px;
    }

    .testi-who div {
      text-align: left;
    }

    .testi-who strong {
      display: block;
      font-family: var(--font-display);
      font-size: 14.5px;
    }

    .testi-who span {
      font-size: 12.5px;
      color: var(--slate-600);
    }

    .testi-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      margin-top: 42px;
    }

    .testi-arrow {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid var(--slate-300);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy-900);
      transition: all .35s var(--ease);
    }

    .testi-arrow:hover {
      background: var(--grad-brand);
      color: #fff;
      border-color: transparent;
    }

    .testi-dots {
      display: flex;
      gap: 9px;
    }

    .testi-dots button {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--slate-300);
      border: none;
      padding: 0;
      transition: all .35s var(--ease);
    }

    .testi-dots button.active {
      width: 24px;
      border-radius: 6px;
      background: var(--blue-600);
    }

    /* ============================================================
   FAQ
============================================================ */
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--slate-150);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 26px 6px;
      background: none;
      border: none;
      text-align: left;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 17px;
      color: var(--navy-900);
    }

    .faq-q .toggle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1px solid var(--slate-300);
      flex: none;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: all .35s var(--ease);
    }

    .faq-q .toggle::before,
    .faq-q .toggle::after {
      content: '';
      position: absolute;
      background: var(--navy-900);
      transition: transform .35s var(--ease);
    }

    .faq-q .toggle::before {
      width: 11px;
      height: 1.5px;
    }

    .faq-q .toggle::after {
      width: 1.5px;
      height: 11px;
    }

    .faq-item.open .toggle {
      background: var(--grad-brand);
      border-color: transparent;
    }

    .faq-item.open .toggle::before,
    .faq-item.open .toggle::after {
      background: #fff;
    }

    .faq-item.open .toggle::after {
      transform: rotate(90deg) scaleY(0);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .45s var(--ease);
    }

    .faq-a p {
      padding: 0 6px 26px;
      font-size: 15px;
      line-height: 1.75;
      color: var(--slate-600);
      max-width: 680px;
    }

    /* ============================================================
   CONTACT
============================================================ */
    .contact-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    @media(max-width:900px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    .contact-info {
      background: var(--grad-brand);
      color: #fff;
      padding: 56px 48px;
      position: relative;
      overflow: hidden;
    }

    .contact-info h3 {
      color: #fff;
      font-size: 26px;
      margin-bottom: 14px;
    }

    .contact-info>p {
      color: rgba(255, 255, 255, .7);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 38px;
    }

    .contact-line {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .contact-line i {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex: none;
    }

    .contact-line div span {
      display: block;
      font-size: 12px;
      color: rgba(255, 255, 255, .55);
    }

    .contact-line div strong {
      font-weight: 600;
      font-size: 14.5px;
    }

    .contact-social {
      display: flex;
      gap: 10px;
      margin-top: 38px;
    }

    .contact-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .35s var(--ease);
    }

    .contact-social a:hover {
      background: #fff;
      color: var(--navy-900);
    }

    .contact-form {
      background: #fff;
      padding: 56px 48px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    @media(max-width:560px) {
      .form-row {
        grid-template-columns: 1fr;
      }
    }

    .field {
      margin-bottom: 18px;
    }

    .field label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy-900);
      margin-bottom: 8px;
      font-family: var(--font-display);
    }

    .field input,
    .field textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid var(--slate-300);
      font-family: var(--font-body);
      font-size: 14.5px;
      background: var(--ice-50);
      transition: all .3s var(--ease);
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--blue-600);
      background: #fff;
      box-shadow: 0 0 0 4px var(--blue-100);
      outline: none;
    }

    .field textarea {
      resize: vertical;
      min-height: 120px;
    }

    .field .err {
      display: none;
      color: #e0473e;
      font-size: 12px;
      margin-top: 6px;
    }

    .field.invalid input,
    .field.invalid textarea {
      border-color: #e0473e;
    }

    .field.invalid .err {
      display: block;
    }

    .form-submit {
      width: 100%;
      justify-content: center;
      margin-top: 6px;
    }

    .form-success {
      display: none;
      align-items: center;
      gap: 12px;
      background: #eafaf1;
      color: #0a8a4a;
      padding: 16px 18px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 500;
      margin-top: 18px;
    }

    .form-success.show {
      display: flex;
    }

    /* ============================================================
   BLOG
============================================================ */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    @media(max-width:900px) {
      .blog-grid {
        grid-template-columns: 1fr;
      }
    }

    .blog-card {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--slate-150);
      background: #fff;
      transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .blog-thumb {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
    }

    .blog-thumb .ph {
      position: absolute;
      inset: 0;
      transition: transform .6s var(--ease);
    }

    .blog-card:hover .blog-thumb .ph {
      transform: scale(1.08);
    }

    .blog-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: #fff;
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--blue-600);
      font-family: var(--font-display);
    }

    .blog-body {
      padding: 24px 24px 26px;
    }

    .blog-date {
      font-size: 12.5px;
      color: var(--slate-400);
      margin-bottom: 10px;
    }

    .blog-body h3 {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .blog-body p {
      font-size: 14px;
      color: var(--slate-600);
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .blog-read {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 13px;
      color: var(--blue-600);
    }

    .blog-read i {
      font-size: 11px;
      transition: transform .35s var(--ease);
    }

    .blog-card:hover .blog-read i {
      transform: translateX(5px);
    }

    /* ============================================================
   CTA BAND
============================================================ */
    .cta-band {
      position: relative;
      background: var(--grad-brand);
      border-radius: var(--radius-lg);
      overflow: hidden;
      padding: 70px 60px;
      text-align: center;
      margin: 0 32px;
    }

    @media(max-width:600px) {
      .cta-band {
        padding: 50px 28px;
      }
    }

    .cta-band h2 {
      color: #fff;
      font-size: clamp(26px, 4vw, 38px);
      margin-bottom: 16px;
    }

    .cta-band p {
      color: rgba(255, 255, 255, .7);
      font-size: 16px;
      margin-bottom: 32px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-band .pixel-trail {
      position: absolute;
      top: 24px;
      right: 36px;
    }

    /* ============================================================
   FOOTER
============================================================ */
    .site-footer {
      background: var(--navy-950);
      color: rgba(255, 255, 255, .62);
      padding: 90px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 50px;
      padding-bottom: 64px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    @media(max-width:900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 44px;
      }
    }

    @media(max-width:560px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    .footer-brand img {
      height: 34px;
      filter: brightness(0) invert(1);
      margin-bottom: 18px;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
      max-width: 280px;
      margin-bottom: 22px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .35s var(--ease);
    }

    .footer-social a:hover {
      background: var(--blue-600);
      border-color: transparent;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 22px;
    }

    .footer-col ul li {
      margin-bottom: 13px;
    }

    .footer-col ul li a {
      font-size: 14px;
      transition: color .3s var(--ease), padding-left .3s var(--ease);
    }

    .footer-col ul li a:hover {
      color: #fff;
      padding-left: 4px;
    }

    .footer-news p {
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .news-form {
      display: flex;
      gap: 8px;
    }

    .news-form input {
      flex: 1;
      padding: 13px 16px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .15);
      background: rgba(255, 255, 255, .05);
      color: #fff;
      font-size: 13.5px;
    }

    .news-form input::placeholder {
      color: rgba(255, 255, 255, .4);
    }

    .news-form button {
      width: 46px;
      border-radius: 10px;
      border: none;
      background: var(--grad-brand);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: none;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 26px 0;
      font-size: 13px;
      flex-wrap: wrap;
      gap: 14px;
    }

    .footer-bottom a {
      font-size: 13px;
    }

    .footer-bottom .legal-links {
      display: flex;
      gap: 24px;
    }

    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--grad-brand);
      color: #fff;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: all .4s var(--ease);
      z-index: 900;
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      transform: translateY(-4px);
    }

    /* AOS tuning */
    [data-aos] {
      transition-duration: .7s !important;
    }
  