:root {
        --bg-main: #f4f1ea;
        --text-dark: #0e0e0e;
        --text-muted: #6a6862;
        --accent-dark: #2f2c27;
      }

      body {
        overflow-x: hidden;
        margin: 0;
        font-family: "Inter", sans-serif;
        color: var(--text-dark);
        padding-top: 80px;
      }

      /* NAVBAR */
      .navbar-root {
        padding: 1rem 0;
        background: rgba(244, 241, 234, 0.75) !important;
        backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--border-color);
        transition: 0.3s ease;
      }

      /* BRAND */
      .navbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .logo-svg {
        width: 30px;
        transition: 0.3s ease;
      }

      .navbar-brand:hover .logo-svg {
        transform: rotate(-5deg) scale(1.05);
      }

      .brand-text {
        font-family: "Inconsolata", monospace;
        font-size: 1.7rem;
        letter-spacing: 0.5px;
      }

      /* LINKS */
      .nav-link {
        position: relative;
        color: var(--text-dark) !important;
        font-size: 0.95rem;
        font-weight: 400;
        padding: 6px 0;
        transition: 0.3s ease;
      }

      .nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 1px;
        background: var(--text-dark);
        transition: 0.3s ease;
      }

      .nav-link:hover {
        opacity: 0.6;
      }

      .nav-link:hover::after {
        width: 100%;
      }

      /* BUTTON */
      .btn-root {
        background: var(--accent-dark);
        color: var(--bg-main) !important;
        border: 1px solid var(--text-dark);
        padding: 0.6rem 1.4rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        border-radius: 999px;
        transition: 0.3s ease;
      }

      .btn-root:hover {
        background: transparent;
        color: var(--text-dark) !important;
        transform: translateY(-2px);
      }

      /* HERO */
      .hero {
        height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem;
      }

      .hero h1 {
        font-family: "Inconsolata", monospace;
        font-optical-sizing: auto;
        font-weight: 5px;
        font-style: normal;
        font-variation-settings: "wdth" 50;
      }

      .hero p {
        color: var(--text-muted);
        max-width: 500px;
        text-transform: lowercase;
        letter-spacing: 3px;
        text-align: center;
      }

      /* ------- */
      .hero {
        min-height: 90vh;
        display: flex;
        align-items: center;
        padding: 120px 0;
      }

      .hero-content {
        max-width: 520px;
      }

      .badge-root {
        display: inline-block;
        background: #0e0e0e;
        color: #fff;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 18px;
      }

      .hero h1 {
        font-size: 56px;
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 18px;
      }

      .hero p {
        font-size: 18px;
        line-height: 1.7;
        color: #6a6862;
        margin-bottom: 28px;
      }

      .hero-image {
        border-radius: 24px;
        background-attachment: fixed;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      }
      .hero-content {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.8s ease forwards;
      }

      .hero-image {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        animation: fadeUp 0.9s ease forwards;
        animation-delay: 0.2s;
      }

      .badge-root {
        opacity: 0;
        transform: translateY(-10px);
        animation: fadeIn 0.6s ease forwards;
        animation-delay: 0.1s;
      }

      .hero h1 {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.15s;
      }

      .hero p {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.25s;
      }

      .btn-root {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.35s;
      }
      /* ----- */
      .services {
        padding: 100px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 1px;
      }

      .section-title h2 {
        font-family: "Inconsolata", monospace;
        font-size: 52px;
        margin-bottom: 15px;
      }

      .section-title p {
        color: #6a6862;
        max-width: 600px;
        margin: auto;
        font-size: 17px;
        line-height: 1.8;
      }

      .service-card {
        background: #f4f1ea;

        backdrop-filter: blur(12px);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 24px;
        padding: 40px;
        flex-direction: column;
        height: 100%;
        display: flex;
        transition: all 0.35s ease;
      }

      .service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(0, 0, 0, 0.15);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
      }

      .service-card span {
        display: block;
        font-size: 13px;
        letter-spacing: 2px;
        color: #8c8a84;
        margin-bottom: 18px;
        text-transform: uppercase;
      }

      .service-card h4 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
      }

      .service-card p {
        color: #6a6862;
        line-height: 1.8;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .section-title,
      .service-card {
        opacity: 0;
        height: 200px;
        overflow: hidden;
        transform: translateY(40px);
        transition: all 0.8s ease;
      }

      .section-title.show,
      .service-card.show {
        opacity: 1;
        transform: translateY(0);
      }

      .service-card {
        transition:
          opacity 0.8s ease,
          transform 0.8s ease,
          box-shadow 0.3s ease;
      }

      /* ----- */

      .process-timeline {
        padding: 120px 0;
        background: #f4f1ea;
      }

      .process-step {
        display: flex;
        align-items: center;
        gap: 60px;
        margin-bottom: 80px;
      }

      .process-step.reverse {
        flex-direction: row-reverse;
      }

      .step-img {
        flex: 1;
      }

      .step-img img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
      }

      .step-content {
        flex: 1;
      }

      .step-content span {
        font-size: 13px;
        letter-spacing: 2px;
        color: #8c8a84;
      }

      .step-content h3 {
        font-size: 34px;
        margin: 15px 0;
        font-weight: 600;
      }

      .step-content p {
        font-size: 16px;
        color: #6a6862;
        line-height: 1.8;
        max-width: 500px;
      }

      /* ----- */
      .footer-root {
        background: #f4f1ea;
        padding: 90px 0 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
      }

      /* BRAND */
      .footer-brand {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .footer-brand span {
        font-family: "Inconsolata", monospace;
        font-size: 28px;
      }

      .footer-logo {
        width: 28px;
      }

      .footer-desc {
        color: #6a6862;
        font-size: 14px;
        line-height: 1.7;
        max-width: 320px;
      }

      /* TITLES */
      .footer-title {
        font-size: 12px;
        letter-spacing: 2px;
        color: #0e0e0e;
        margin-bottom: 16px;
      }

      /* LINKS */
      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        text-decoration: none;
        color: #6a6862;
        font-size: 14px;
        transition: 0.25s ease;
      }

      .footer-links a:hover {
        color: #0e0e0e;
        transform: translateX(3px);
      }

      /* BUTTON */
      .footer-btn {
        display: inline-block;
        margin-top: 10px;
        padding: 10px 16px;
        border-radius: 999px;
        background: #0e0e0e;
        color: #fff;
        font-size: 13px;
        text-decoration: none;
        transition: 0.3s ease;
      }

      .footer-btn:hover {
        background: transparent;
        color: #0e0e0e;
        border: 1px solid #0e0e0e;
      }

      /* DIVIDER */
      .footer-divider {
        height: 1px;
        background: rgba(0, 0, 0, 0.08);
        margin: 40px 0 20px;
      }

      /* BOTTOM */
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #6a6862;
        font-size: 13px;
      }

      .footer-social {
        display: flex;
        gap: 10px;
      }

      .footer-social a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(0, 0, 0, 0.08);
        color: #0e0e0e;
        transition: 0.3s;
      }

      .footer-social a:hover {
        background: #0e0e0e;
        color: #fff;
        transform: translateY(-3px);
      }
      /* ===== PROCESS ANIMATION ===== */
      .reveal {
        opacity: 0;
        transform: translateY(60px);
        transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
      }

      .reveal.show {
        opacity: 1;
        transform: translateY(0);
      }

      /* STEP IMAGE + TEXT stagger */
      .process-step .step-img,
      .process-step .step-content {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
      }

      .process-step.show .step-img {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
      }

      .process-step.show .step-content {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.25s;
      }
      

      @media (max-width: 768px) {
        .footer-bottom {
          flex-direction: column;
          gap: 15px;
        }

        .footer-desc {
          max-width: 100%;
        }
      }

      @media (max-width: 991px) {
        .footer-root {
          text-align: center;
        }

        .footer-brand {
          justify-content: center;
        }

        .footer-desc {
          margin: auto;
        }

        .footer-social {
          justify-content: center;
        }

        .footer-bottom {
          justify-content: center;
          text-align: center;
        }

        .footer-btn {
          margin-top: 20px;
        }
      }
      /* KEYFRAMES */
      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

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



      @media (max-width: 991px) {
  body {
    padding-top: 150px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 50px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 15px;
    letter-spacing: 1px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-transform: none;
  }

  

  .process-step,
  .process-step.reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }



  .section-title h2 {
    font-size: 36px;
  }
}