
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    /* --ink: #005bb5;
    --paper: #f5f2ee;
    --gold: #b8933a;
    --gold-lt: #d4ac5a;
    --mist: #e8e4de;
    --grey: #888078;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif; */


     --ink: #2baaa9;
    --paper: #f5f2ee;
    --gold: #005bb5;
    --gold-lt: #d4ac5a;
    --mist: #e8e4de;
    --grey: #005bb5;
    --textcolor:#111827;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;


      --primary-color: #2baaa9;
        --background-dark: #ffffff;
        --text-lightt: #132743;
        --text-faded: #000000;
        --nav-bar-dark: #1b2a49;
        --slide-x: 0;
  }

 
  html { scroll-behavior: smooth; }

  body {
    
    /* font-weight: 300; */
    overflow-x: hidden;
    /* cursor: none; */
  }

  /* Custom cursor */
  .sx-cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
  }
  .sx-cursor-outline {
    position: fixed; top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.6;
  }
  .sx-cursor-outline.sx-active { width: 60px; height: 60px; opacity: 0.3; }

  /* NAV */
 

  /* MARQUEE */
  .sx-marquee-container {
    border-top: 1px solid var(--mist);
    border-bottom: 1px solid var(--mist);
    padding: 18px 0; overflow: hidden;
    background: var(--ink);
    
  }
  .sx-marquee-scroller {
    display: flex; gap: 0; white-space: nowrap;
    animation: marquee 30s linear infinite;
  }
  .sx-marquee-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: white;
    padding: 0 40px;
    display: inline-flex; align-items: center; gap: 40px;
    flex-shrink: 0;
  }
  .sx-marquee-separator { width: 4px; height: 4px; background: var(--grey); border-radius: 50%; }

  /* SERVICES */
  .sx-services-section {
    padding: 120px 60px;
    max-width: 1300px;
    margin: 0 auto;

  }
  .sx-header-block {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 80px;
    border-bottom: 1px solid var(--mist);
    padding-bottom: 32px;
  }
  .sx-label-sm {
    font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: white; margin-bottom: 16px;
    background-color: var(--gold);
    display: inline-block;
  }
  .sx-title-lg {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.1;
    max-width: 480px;
  }
  .sx-title-lg em { font-style: italic; }
  .sx-desc-sm {
    font-size: 1rem; line-height: 1.9; color: var(--textcolor);
    max-width: 340px; text-align: right;
  }
  .sx-services-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    /* background: var(--mist); */
    border: 1px solid var(--mist);
  }
  .sx-service-box {
    /* background: var(--paper); */
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }
  .sx-service-box::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
  }
  .sx-service-box:hover::before { transform: scaleX(1); }
  .sx-service-box:hover { background: #ffffff; }
  .sx-service-index {
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 32px;
  }
  .sx-service-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .sx-service-info {
    font-size: 0.9rem; line-height: 1.85; color: var(--textcolor);
    margin-bottom: 36px;
  }
  .sx-service-cta {
    font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--ink); text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.3s;
  }
  .sx-service-cta:hover { color: var(--gold); }
  .sx-service-cta svg { transition: transform 0.3s; }
  .sx-service-cta:hover svg { transform: translateX(4px); }

  /* STATS */
  .sx-stats-bar {
    background: var(--ink);
    padding: 100px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
     
  }
  .sx-stat-cell {
    padding: 48px 40px;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }
  .sx-stat-cell:last-child { border-right: none; }
  .sx-stat-value {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--paper);
    line-height: 1;
    margin-bottom: 8px;
  }
  .sx-stat-value span { color: var(--gold); font-style: italic; }
  .sx-stat-name {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(245,242,238,0.35);
  }

  /* INDUSTRIES */
  .sx-industries-section { padding: 120px 60px; max-width: 1300px;
    margin: 0 auto;}
  .sx-industries-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--mist);
    border: 1px solid var(--mist);
    margin-top: 64px;
  }
  .sx-industry-tag {
    background: white;
    /* border: 1px solid var(--mist); */
    padding: 36px 10px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
    color: var(--textcolor);
    transition: background 0.3s, color 0.3s;
    cursor: default;
    position: relative;
    text-align: center;
  }
  .sx-industry-tag:hover { background: var(--ink); color:white; }

  /* PROCESS */
  .sx-process-section {
    background: var(--ink); color: white;
    padding: 120px 60px;
    max-width: 1800px;
    margin: 0 auto;
  }
  .sx-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 72px;
    position: relative;
  }
  .sx-process-grid::after {
    content: '';
    position: absolute;
    top: 28px; left: 80px; right: 80px;
    height: 1px; background: white;
    z-index: 0;
  }
  .sx-process-card {
    padding: 0 24px;
    position: relative; z-index: 1;
    text-align: center;
  }
  .sx-step-icon {
    width: 56px; height: 56px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: white;
    background: var(--ink);
    transition: background 0.3s;
  }
  .sx-process-card:hover .sx-step-icon { background: var(--gold); color: var(--ink); }
  .sx-step-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 400;
  }
  .sx-step-detail {
    font-size: 1rem; line-height: 1.8;
    color: white;
  }

  /* FAQ */
  .sx-faq-section { padding: 40px 60px; max-width: 1200px; margin: 0 auto; }
  .sx-faq-wrapper {
    border-bottom: 1px solid var(--mist);
    overflow: hidden;
  }
  .sx-faq-trigger {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 0;
    font-family: var(--serif);
    font-size: 1.10rem;
    font-weight: 400;
    background: none; border: none; color: var(--gold);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
  }
  .sx-faq-trigger:hover { color: var(--gold); }
  .sx-faq-plus {
    width: 24px; height: 24px; flex-shrink: 0;
    border: 1px solid currentColor; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.4s, background 0.3s, border-color 0.3s;
    background-color: var(--gold);
    /* border-color: red; */
  }
  .sx-faq-wrapper.sx-open .sx-faq-plus { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--ink); }
  .sx-faq-content {
    font-size: 1rem; line-height: 1.9; color: var(--textcolor);
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23,1,0.32,1), padding 0.4s;
    padding: 0;
  }
  .sx-faq-wrapper.sx-open .sx-faq-content { max-height: 200px; padding-bottom: 28px; }

  /* CTA */
  .sx-cta-banner {
    padding: 120px 60px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    max-width: 1300px;
    margin: 0 auto;
  }
  .sx-cta-heading {
    font-family: var(--serif);
    font-weight: 300;
    /* font-size: clamp(2.5rem, 4vw, 4rem); */
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.08;
  }
  .sx-cta-heading em { font-style: italic; color: var(--gold); }
  .sx-cta-info {
    border-left: 1px solid var(--mist);
    padding-left: 80px;
  }
  .sx-cta-subtext {
    font-size: 1rem; line-height: 1.9; color: var(--textcolor);
    margin-bottom: 40px;
  }
  .sx-cta-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
  .sx-cta-link-item {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--nav-bar-dark); text-decoration: none;
    transition: color 0.3s;
    
  }
  .sx-cta-link-item:hover { color: var(--gold);
    }

  /* FOOTER */
  .sx-footer {
    background: var(--ink); color: rgba(245,242,238,0.5);
    padding: 80px 60px 40px;
  }
  .sx-footer-main {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .sx-footer-logo .sx-logo { color: var(--paper); display: block; margin-bottom: 20px; }
  .sx-footer-text { font-size: 0.78rem; line-height: 1.9; }
  .sx-footer-title {
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
  }
  .sx-footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .sx-footer-list a {
    font-size: 0.78rem; color: rgba(245,242,238,0.45);
    text-decoration: none; transition: color 0.3s;
  }
  .sx-footer-list a:hover { color: var(--gold); }
  .sx-footer-legal {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px; font-size: 0.7rem;
  }
  .sx-footer-legal a { color: rgba(245,242,238,0.35); text-decoration: none; transition: color 0.3s; }
  .sx-footer-legal a:hover { color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes zoomOut {
    from { transform: scale(1.12); }
    to   { transform: scale(1); }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes lineGrow {
    to { transform: scaleY(1); }
  }

  /* REVEAL ON SCROLL */
  .sx-reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1);
  }
  .sx-reveal.sx-visible { opacity: 1; transform: translateY(0); }
  .sx-delay-1 { transition-delay: 0.1s; }
  .sx-delay-2 { transition-delay: 0.2s; }
  .sx-delay-3 { transition-delay: 0.3s; }
  .sx-delay-4 { transition-delay: 0.4s; }

  @media (max-width: 900px) {
    .sx-navbar { padding: 20px 24px; }
    .sx-nav-menu, .sx-nav-btn { display: none; }
    .sx-hero { grid-template-columns: 1fr; }
    .sx-hero-visual { height: 50vw; }
    .sx-hero-content { padding: 100px 24px 60px; }
    .sx-services-section, .sx-industries-section, .sx-process-section, .sx-faq-section, .sx-cta-banner { padding: 80px 24px; }
    .sx-services-layout { grid-template-columns: 1fr; }
    .sx-stats-bar { grid-template-columns: 1fr 1fr; padding: 80px 24px; }
    .sx-industries-list { grid-template-columns: repeat(2, 1fr); }
    .sx-process-grid { grid-template-columns: 1fr; gap: 48px; }
    .sx-process-grid::after { display: none; }
    .sx-cta-banner { grid-template-columns: 1fr; }
    .sx-cta-info { border-left: none; border-top: 1px solid var(--mist); padding-left: 0; padding-top: 48px; }
    .sx-footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .sx-header-block { flex-direction: column; align-items: flex-start; gap: 20px; }
    .sx-desc-sm { text-align: left; }
  }
