﻿
  :root {
    --black: #181818;
    --blue: #881BCC;
    --blue-bright: #881BCC;
    --blue-glow: rgba(136, 27, 204, 0.18);
    --blue-faint: rgba(136, 27, 204, 0.06);
    --white: #FEFEFE;
    --white-dim: rgba(254, 254, 254, 0.7);
    --white-faint: rgba(254, 254, 254, 0.08);
    --border: rgba(254, 254, 254, 0.1);
    --border-blue: rgba(136, 27, 204, 0.3);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white-dim);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    width: 10px; height: 10px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: screen;
    opacity: 0;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(136, 27, 204, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, width 0.15s, height 0.15s;
    opacity: 0;
  }
  body.cursor-active .cursor,
  body.cursor-active .cursor-ring { opacity: 1; }
  a:hover ~ .cursor, button:hover ~ .cursor { width: 18px; height: 18px; }

  .cs-cursor_lg,
  .cs-cursor_sm {
    display: none !important;
  }


  /* NOISE TEXTURE OVERLAY */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1000;
  }

  /* TYPOGRAPHY */
  .display { font-family: 'Poppins', sans-serif; font-weight: 800; }
  .heading { font-family: 'Poppins', sans-serif; font-weight: 700; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    border-bottom: none;
    background: transparent;
    backdrop-filter: none;
  }
  .nav-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none;
  }
  .nav-logo span { color: var(--blue); }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    font-size: 13px;
    color: var(--white-dim);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta {
    background: var(--blue);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 10px 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    justify-self: end;
  }
  .nav-cta:hover { background: var(--blue); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
  }
  .hero-bg-glow {
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(136,27,204,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-bg-glow2 {
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(136,27,204,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; max-width: 1200px; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--border-blue);
    background: var(--blue-faint);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
  }
  .hero-tag-dot {
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }
  .hero h1 {
    font-size: clamp(40px, 5.5vw, 84px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease 0.1s both;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--blue);
    position: relative;
    display: inline-block;
  }
  .hero h1 em::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
  }
  .hero-sub {
    font-size: 18px;
    line-height: 1.65;
    color: var(--white-dim);
    max-width: 560px;
    margin-bottom: 44px;
    animation: fadeUp 0.6s ease 0.2s both;
  }
  .hero-cta-group {
    display: flex; gap: 16px; align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.3s both;
  }
  .hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 24px;
  }
  .hero-cta-row .hero-sub {
    margin: 0;
    max-width: 640px;
    text-align: right;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--blue);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
  }
  .btn-primary:hover {
    background: var(--blue);
  }
  .nav-cta:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-download:hover,
  .btn-submit:hover {
    color: #fff;
  }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--white-dim);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    border: none; background: none; cursor: pointer;
    transition: color 0.2s;
  }
  .btn-secondary:hover { color: var(--blue); }
  .btn-arrow {
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-secondary:hover .btn-arrow {
    border-color: var(--blue);
    background: var(--blue-faint);
  }
  .hero-stats {
    display: flex; gap: 48px;
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.6s ease 0.4s both;
  }
  .stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--white);
    letter-spacing: -1px;
  }
  .stat-num span { color: var(--blue); }
  .stat-label {
    font-size: 12px;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* MARQUEE */
  .marquee-section {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--white-faint);
  }
  .marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .marquee-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-dim);
    display: flex; align-items: center; gap: 16px;
  }
  .marquee-item::after {
    content: '✦';
    color: var(--blue);
    font-size: 10px;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTION WRAPPER */
  section { padding: 100px 60px; }
  .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
  }
  .section-title {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    max-width: 600px;
  }
  .section-sub {
    font-size: 16px;
    color: var(--white-dim);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 60px;
  }

  /* RESULTS SECTION */
  .results-section { background: var(--black); }
  .results-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2px;
    margin-top: 60px;
  }
  .result-card {
    grid-column: span 2;
    background: var(--white-faint);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, background 0.25s;
    cursor: default;
  }
  .result-card:hover {
    border-color: var(--border-blue);
    background: var(--blue-faint);
  }
  .result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .result-card:hover::before { transform: scaleX(1); }
  .result-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 2 / span 2;
  }
  .result-card:last-child:nth-child(3n + 2) {
    grid-column: 4 / span 2;
  }
  .result-industry {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
  }
  .result-headline {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.4;
  }
  .result-metrics {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 24px;
  }
  .metric-row {
    display: flex; align-items: baseline; gap: 10px;
  }
  .metric-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--white);
    letter-spacing: -0.5px;
  }
  .metric-num.blue { color: var(--blue); }
  .metric-label {
    font-size: 16px;
    color: var(--white-dim);
    flex: 1;
  }
  .result-platform {
    font-size: 16px;
    color: var(--white-faint);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 8px;
  }

  /* SNAPSHOT UPLOAD ZONE */
  .snapshot-placeholder {
    border: 1px dashed var(--border-blue);
    background: var(--blue-faint);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    margin-top: 4px;
  }
  .snapshot-placeholder p {
    font-size: 13px;
    color: var(--white-dim);
  }
  .snapshot-placeholder span { color: var(--blue); font-weight: 500; }

  /* SERVICES */
  .services-section { background: var(--black); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 0;
    border: 1px solid var(--border);
  }
  .service-item {
    padding: 44px;
    border: 1px solid transparent;
    position: relative;
    transition: background 0.25s;
    cursor: default;
  }
  .service-item:hover { background: var(--blue-faint); }
  .service-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--blue);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
  }
  .service-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--white);
  }
  .service-desc {
    font-size: 16px;
    color: var(--white-dim);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .service-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .tag {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--blue-bright);
    background: var(--blue-faint);
    border: 1px solid var(--border-blue);
    padding: 4px 10px;
    border-radius: 100px;
  }
  .service-arrow {
    position: absolute;
    top: 44px; right: 44px;
    font-size: 18px;
    color: var(--border);
    transition: color 0.2s, transform 0.2s;
  }
  .service-item:hover .service-arrow {
    color: var(--blue);
    transform: translate(2px, -2px);
  }

  /* TESTIMONIALS */
  .testimonials-section { background: var(--black); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
  .testimonial-card {
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: 2px;
    position: relative;
    transition: border-color 0.25s;
    cursor: default;
  }
  .testimonial-card:hover { border-color: var(--border-blue); }
  .testimonial-quote {
    font-size: 32px;
    color: var(--blue);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
  }
  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white-dim);
    margin-bottom: 28px;
    font-style: normal;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 12px;
  }
  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--blue-glow);
    border: 1px solid var(--border-blue);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--blue);
    flex-shrink: 0;
  }
  .author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
  }
  .author-title {
    font-size: 12px;
    color: var(--white-dim);
    margin-top: 2px;
  }

  /* PDF DOWNLOAD */
  .pdf-section { background: var(--black); }
  .pdf-card {
    border: 1px solid var(--border);
    padding: 56px;
    display: flex; gap: 60px; align-items: center;
    background: var(--white-faint);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }
  .pdf-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top right, rgba(136,27,204,0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .pdf-icon {
    width: 80px; height: 80px;
    background: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative; z-index: 1;
  }
  .pdf-content { flex: 1; position: relative; z-index: 1; }
  .pdf-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
  }
  .pdf-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--white);
  }
  .pdf-desc {
    font-size: 16px;
    color: var(--white-dim);
    line-height: 1.7;
    max-width: 480px;
  }
  .pdf-cta { flex-shrink: 0; position: relative; z-index: 1; }
  .btn-download {
    display: inline-flex; align-items: center; gap: 12px;
    background: transparent;
    border: 1px solid var(--border-blue);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 16px 28px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-download:hover {
    background: var(--blue);
    border-color: var(--blue);
  }
  .pdf-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: none;
  }
  .pdf-modal.is-open {
    display: block;
  }
  .pdf-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
  }
  .pdf-modal__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(840px, calc(100vw - 32px));
    max-height: calc(100vh - 40px);
    overflow: hidden;
    border: 1px solid var(--border-blue);
    background: #141414;
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  }
  .pdf-modal__content {
    padding: 36px 36px 32px;
    overflow-y: auto;
    max-height: calc(100vh - 40px);
  }
  .pdf-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
  }
  .pdf-modal__title {
    max-width: none;
    margin-bottom: 14px;
  }
  .pdf-modal__sub {
    max-width: 560px;
    margin-bottom: 28px;
  }
  .pdf-form {
    margin-top: 0;
  }
  .pdf-form__submit {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
  .pdf-form__success {
    margin-top: 0;
  }

  /* CONTACT / BOOKING */
  .contact-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .contact-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(136,27,204,0.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .contact-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative; z-index: 2;
  }
  .contact-inner .section-title {
    max-width: none;
    font-size: clamp(40px, 5vw, 68px);
  }
  .contact-form {
    margin-top: 48px;
    display: flex; flex-direction: column; gap: 16px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-label {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #FEFEFE;
    text-align: left;
  }
  .form-input, .form-select, .form-textarea {
    background: transparent;
    border: 2px solid #999696;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 15px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
  }
  .form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #881BCC;
    background: transparent;
  }
  .form-select {
    appearance: auto;
    -webkit-appearance: auto;
    background-image: none;
    padding-right: 20px;
    cursor: pointer;
    background-color: transparent;
  }
  .form-select option { background: #181818; color: #fff; }
  .form-textarea { resize: none; min-height: auto; line-height: 1.6; }
  .form-full { grid-column: 1 / -1; }
  .btn-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: #881BCC;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 13px 26px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: auto;
    margin-top: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    line-height: 1.5em;
    align-self: flex-start;
  }
  .btn-submit:hover {
    background: #881BCC;
    color: #fff;
  }

  /* Index-style button hover overlay */
  .nav-cta::before,
  .btn-primary::before,
  .btn-submit::before,
  .btn-download::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(22, 22, 22, 0.4);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: 0.6s;
    transition-timing-function: ease-out;
  }
  .btn-submit::before { border-radius: inherit; }
  .nav-cta:hover::before,
  .btn-primary:hover::before,
  .btn-submit:hover::before,
  .btn-download:hover::before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  .nav-cta > *,
  .btn-primary > *,
  .btn-submit > *,
  .btn-download > * {
    position: relative;
    z-index: 1;
  }
  .contact-trust {
    margin-top: 28px;
    display: flex; align-items: center; justify-content: center; gap: 24px;
    font-size: 14px; color: var(--white-dim);
  }
  .trust-dot { color: var(--blue); margin-right: 4px; }

  /* FOOTER */
  footer {
    padding: 0;
    border: 0;
    display: block;
    background: transparent;
  }
  .footer-left {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
  }
  .footer-left span { color: var(--blue); }
  .footer-right {
    font-size: 16px;
    color: var(--white-dim);
  }
  .cs-fooer .cs-footer_item .cs-text_widget + .cs-social_btns.cs-style1 {
    justify-content: center;
  }
  .cs-fooer .footer-menu-center {
    text-align: center;
  }
  .cs-fooer .footer-menu-center .cs-menu_widget {
    text-align: center;
    padding-left: 0;
  }
  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    .hero { padding: 100px 24px 60px; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; }
    .hero-cta-row .hero-sub { text-align: left; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .results-grid { grid-template-columns: 1fr; }
    .result-card,
    .result-card:nth-last-child(2):nth-child(3n + 1),
    .result-card:last-child:nth-child(3n + 2) { grid-column: auto; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .pdf-card { flex-direction: column; padding: 36px; }
    .pdf-modal__content { padding: 28px 20px 24px; }
    footer { flex-direction: column; gap: 12px; text-align: center; }
  }

@media (max-width: 600px) 
{
.form-row { grid-template-columns: 1fr; }
}

  /* MOBILE */
  @media (max-width: 600px) {
    .hero h1 { letter-spacing: -2px; }
    .section-title { letter-spacing: -1px; }
  }

  /* SUCCESS STATE */
  .form-success {
    display: none;
    text-align: center;
    padding: 48px;
    border: 1px solid var(--border-blue);
    border-radius: 8px;
    background: var(--blue-faint);
  }
  .form-success.show { display: block; }
  .form-success h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--white);
  }
  .form-success p {
    font-size: 15px;
    color: var(--white-dim);
  }

  /* Contact form only visible on widths > 650px */
  #contactForm {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  /* @media (max-width: 650px) {
    #contactForm,
    #formSuccess {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
    }
  } */

  /* TYPOGRAPHY ALIGNMENT WITH index.html */
  .hero h1 {
    font-size: clamp(40px, 6vw, 84px);
    line-height: 1.25em;
    margin-bottom: 40px;
  }
  .hero-title-line {
    display: inline;
  }
  .hero-sub {
    font-size: 18px;
    line-height: 1.9em;
  }
  .section-tag {
    font-size: 18px;
  }
  .section-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }
  .section-sub {
    font-size: 18px;
    line-height: 1.75em;
  }
  .stat-num {
    font-size: 50px;
    line-height: 1.3em;
  }
  .stat-label {
    font-size: 20px;
  }
  .testimonial-text {
    font-size: 16px;
    line-height: 1.6em;
  }
  .author-name {
    font-size: 22px;
  }

  @media (min-width: 1024px) {
    .hero-title-line {
      display: block;
    }
    .hero {
      padding: 120px 60px 60px;
    }
    .hero-sub {
      margin-bottom: 32px;
    }
    .hero-stats {
      margin-top: 48px;
      padding-top: 32px;
    }
  }

  /* Match index.html home background + logo */
  .hero {
    background-image: url("assets/img/hero_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .hero-bg-grid,
  .hero-bg-glow,
  .hero-bg-glow2 {
    opacity: 0;
  }
  .nav-logo img,
  .footer-left img {
    height: 45px;
    width: auto;
    display: block;
  }

  /* Hide the LightGallery slide counter like "3 / 10" in all popups */
  #lg-counter,
  .lg-counter {
    display: none !important;
  }

  /* Re-enable LightGallery zoom controls that are hidden by the shared theme */
  .lg-toolbar #lg-zoom-in,
  .lg-toolbar #lg-zoom-out,
  .lg-toolbar #lg-actual-size {
    display: inline-block !important;
  }

  /* Keep the center portfolio slide above both side previews */
  .cs-slider.cs-style3 .slick-slide {
    position: relative;
    z-index: 1;
  }

  .cs-slider.cs-style3 .slick-center,
  .cs-slider.cs-style3 .slick-current {
    z-index: 2;
  }

  /* Portfolio slider should size from the viewport, not a fixed desktop card width */
  .cs-slider.cs-style3 .cs-portfolio.cs-style1 {
    width: 100%;
    max-width: 100%;
  }

  @media (max-width: 991px) {
    .cs-slider.cs-style3 .slick-list {
      padding: 0 10% !important;
    }

    .cs-slider.cs-style3 .cs-portfolio.cs-style1 {
      padding: 20px 0;
      height: 340px;
    }
  }

  @media (max-width: 767px) {
    .cs-slider.cs-style3 .slick-list {
      padding: 0 24px !important;
    }

    .cs-slider.cs-style3 .cs-portfolio.cs-style1 {
      padding: 0;
      height: 260px;
      border-radius: 12px;
    }

    .cs-slider.cs-style3 .cs-portfolio.cs-style1 .cs-portfolio_bg {
      background-size: cover !important;
      background-position: center !important;
    }

    .cs-slider_arrows.cs-style1 {
      justify-content: center;
      margin-top: 18px;
    }
  }

  /* CASE STUDIES */
  .tcs-section {
    --tcs-bg: var(--black);
    --tcs-bg-2: rgba(254, 254, 254, 0.03);
    --tcs-line: var(--border);
    --tcs-line-2: var(--border-blue);
    --tcs-text: var(--white);
    --tcs-muted: var(--white-dim);
    --tcs-muted-2: rgba(254, 254, 254, 0.45);
    --tcs-accent: var(--blue);
    --tcs-accent-2: var(--blue-glow);
    position: relative;
    background: var(--tcs-bg);
    color: var(--tcs-text);
    padding: 100px 60px;
    overflow: hidden;
  }
  .tcs-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
  }
  .tcs-header {
    max-width: 780px;
    margin-bottom: clamp(40px, 6vw, 72px);
  }
  .tcs-header .section-title {
    max-width: 780px;
    margin-bottom: 18px;
  }
  .tcs-header .section-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--tcs-accent);
  }
  .tcs-header .section-sub {
    max-width: 660px;
    margin-bottom: 0;
  }
  .tcs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .tcs-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white-faint);
    border: 1px solid var(--tcs-line);
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(.2, .7, .2, 1), border-color 0.3s, box-shadow 0.3s;
    outline: none;
  }
  .tcs-card:hover,
  .tcs-card:focus-visible {
    transform: translateY(-6px);
    border-color: var(--tcs-line-2);
    background: var(--blue-faint);
    box-shadow: 0 24px 54px -32px rgba(136, 27, 204, 0.35);
  }
  .tcs-card:focus-visible {
    box-shadow: 0 0 0 2px var(--tcs-accent), 0 24px 54px -32px rgba(136, 27, 204, 0.4);
  }
  .tcs-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--tcs-line);
    background: #f3f4f6;
  }
  .tcs-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
    transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
  }
  .tcs-card:hover .tcs-card__media img {
    transform: scale(1.04);
  }
  .tcs-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.62) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .tcs-card:hover .tcs-card__overlay,
  .tcs-card:focus-visible .tcs-card__overlay {
    opacity: 1;
  }
  .tcs-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tcs-accent);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 10px 16px;
    border-radius: 999px;
  }
  .tcs-card__arrow {
    transition: transform 0.3s ease;
  }
  .tcs-card:hover .tcs-card__arrow {
    transform: translateX(3px);
  }
  .tcs-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 22px 24px;
    flex: 1;
  }
  .tcs-card__tag {
    font-size: 11px;
    letter-spacing: 0.14em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--tcs-muted-2);
  }
  .tcs-card__title {
    margin: 0;
    font-size: clamp(20px, 1.8vw, 24px);
    line-height: 1.18;
    font-weight: 700;
    color: var(--tcs-text);
  }
  .tcs-card__line {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--tcs-muted);
  }
  .tcs-card__line strong {
    color: var(--tcs-text);
    font-weight: 700;
  }
  .tcs-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--tcs-line);
  }
  .tcs-stats li {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .tcs-stats span {
    font-size: 18px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--tcs-accent);
  }
  .tcs-stats small {
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tcs-muted-2);
  }
  .tcs-footnote {
    margin: 36px 0 0;
    text-align: center;
    color: var(--tcs-muted-2);
    font-size: 13px;
  }
  .tcs-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
  }
  .tcs-modal.is-open {
    display: block;
  }
  .tcs-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
  }
  .tcs-modal__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(1080px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    transform: translate(-50%, -50%);
    background: #141414;
    border: 1px solid var(--tcs-line-2);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .tcs-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
  }
  .tcs-modal__scroll {
    overflow-y: auto;
    max-height: calc(100vh - 48px);
  }
  .tcs-modal__hero {
    background: linear-gradient(180deg, rgba(136, 27, 204, 0.12), rgba(24, 24, 24, 0.92));
    padding: 24px 24px 0;
  }
  .tcs-modal__hero img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
  }
  .tcs-modal__content {
    padding: 28px clamp(20px, 4vw, 44px) 44px;
  }
  .tcs-m-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tcs-accent);
    margin-bottom: 10px;
  }
  .tcs-m-title {
    margin: 0 0 8px;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.12;
    font-weight: 700;
    color: var(--tcs-text);
  }
  .tcs-m-sub {
    margin: 0 0 24px;
    color: var(--tcs-muted);
    font-size: 16px;
    line-height: 1.55;
  }
  .tcs-m-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
  }
  .tcs-m-stats div {
    background: var(--white-faint);
    border: 1px solid var(--tcs-line);
    border-radius: 12px;
    padding: 16px 18px;
  }
  .tcs-m-stats b {
    display: block;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    color: var(--tcs-accent);
  }
  .tcs-m-stats small {
    display: block;
    margin-top: 4px;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tcs-muted-2);
  }
  .tcs-m-section {
    margin-top: 28px;
  }
  .tcs-m-section h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--tcs-text);
  }
  .tcs-m-section p,
  .tcs-m-section li {
    color: var(--tcs-muted);
    font-size: 14.5px;
    line-height: 1.6;
  }
  .tcs-m-section ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
  }
  .tcs-m-section li {
    position: relative;
    padding: 8px 0 8px 22px;
    border-bottom: 1px dashed var(--tcs-line);
  }
  .tcs-m-section li:last-child {
    border-bottom: none;
  }
  .tcs-m-section li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--tcs-accent);
    font-weight: 700;
  }
  .tcs-m-section strong {
    color: var(--tcs-text);
  }
  .tcs-m-table-wrap {
    margin-top: 14px;
    overflow-x: auto;
    border: 1px solid var(--tcs-line);
    border-radius: 10px;
  }
  .tcs-m-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 13.5px;
  }
  .tcs-m-table th,
  .tcs-m-table td {
    padding: 11px 14px;
    text-align: left;
    border-bottom: 1px solid var(--tcs-line);
    color: var(--tcs-muted);
  }
  .tcs-m-table th {
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tcs-muted-2);
    background: #121215;
  }
  .tcs-m-table td:first-child {
    color: var(--tcs-text);
    font-weight: 500;
  }
  .tcs-m-table tr:last-child td {
    border-bottom: none;
  }
  .tcs-m-quote {
    margin-top: 32px;
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(136, 27, 204, 0.14), rgba(136, 27, 204, 0.05));
    border-left: 3px solid var(--tcs-accent);
    border-radius: 0 12px 12px 0;
    color: var(--tcs-text);
    font-style: italic;
  }
  body.tcs-locked {
    overflow: hidden;
  }
  body.tcs-locked .cursor {
    z-index: 10030;
    mix-blend-mode: normal;
    opacity: 1;
  }
  body.tcs-locked .cursor-ring {
    z-index: 10029;
    border-color: rgba(136, 27, 204, 0.85);
    opacity: 1;
  }
  @media (max-width: 991px) {
    .tcs-section {
      padding: 72px 24px;
    }
    .tcs-container {
      padding: 0;
    }
    .tcs-grid.slick-slider {
      display: block;
      margin: 0 -10px;
    }
    .tcs-grid.slick-slider .slick-track {
      display: flex;
    }
    .tcs-grid.slick-slider .slick-slide {
      height: inherit;
      padding: 0 10px;
    }
    .tcs-grid.slick-slider .slick-slide > div {
      height: 100%;
    }
    .tcs-grid.slick-slider .tcs-card {
      height: 100%;
    }
    .tcs-grid.slick-slider .slick-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      list-style: none;
      margin: 26px 0 0;
      padding: 0;
    }
    .tcs-grid.slick-slider .slick-dots li {
      margin: 0;
      line-height: 0;
    }
    .tcs-grid.slick-slider .slick-dots button {
      width: 10px;
      height: 10px;
      border: 0;
      border-radius: 999px;
      padding: 0;
      font-size: 0;
      background: rgba(255, 255, 255, 0.2);
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .tcs-grid.slick-slider .slick-dots .slick-active button {
      background: var(--tcs-accent);
      transform: scale(1.1);
    }
  }
  @media (max-width: 640px) {
    .tcs-card__body {
      padding: 18px 18px 20px;
    }
    .tcs-modal__panel {
      width: calc(100vw - 16px);
      max-height: calc(100vh - 24px);
      border-radius: 14px;
    }
    .tcs-modal__hero {
      padding: 16px 16px 0;
    }
    .tcs-modal__hero img {
      max-height: 280px;
    }
    .tcs-modal__content {
      padding: 20px 18px 32px;
    }
  }




