:root {
      --ink: #0A0A0A;
      --bg: #FFFFFF;
      --muted: #64748B;
      --line: #E2E8F0;
      --accent: #DC2626;
      --gold: #D97706;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    
    body {
      font-family: 'Barlow', -apple-system, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
      font-size: 16px;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* NAV */
    header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.5rem 0;
      background: transparent;
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 3rem;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    
    .nav-container .logo {
      transition: none !important;
      display: flex;
      align-items: center;
      padding: 0;
      margin-right: auto;
      background: none;
      border-radius: 0;
    }

    .logo img {
      height: 50px;
      width: auto;
      display: block;
    }

    /* HAMBURGER MENU */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 45px;
      height: 45px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      margin-left: auto;
      z-index: 101;
    }

    .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background: white;
      margin: 5px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    nav, .nav-menu {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    nav a, .nav-menu a {
      padding: 0.5rem 0;
      font-size: 1.0625rem;
      font-weight: 700;
      font-family: 'Bebas Neue', sans-serif;
      color: white;
      transition: all 0.25s ease;
      position: relative;
      text-shadow: 0 1px 3px rgba(0,0,0,0.4);
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    nav a::after, .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0%;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    nav a:hover::after, .nav-menu a:hover::after {
      width: 100%;
    }

    nav a.cta, .nav-menu a.cta {
      border: 2px solid var(--accent) !important;
      background: transparent !important;
      color: var(--accent) !important;
      padding: 0.75rem 1.75rem !important;
      border-radius: 0 !important;
      font-weight: 700 !important;
      font-size: 0.9375rem !important;
      font-family: 'Bebas Neue', sans-serif !important;
      position: relative !important;
      overflow: hidden !important;
      isolation: isolate !important;
      z-index: 0 !important;
      margin-left: 1rem !important;
      text-shadow: none !important;
      text-transform: uppercase !important;
      letter-spacing: 0.02em !important;
      cursor: pointer !important;
      display: inline-block !important;
      text-align: center !important;
      transition: color 0.5s !important;
    }

    nav a.cta::before, .nav-menu a.cta::before {
      content: '' !important;
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 0 !important;
      height: 100% !important;
      background: var(--accent) !important;
      display: block !important;
      z-index: -1 !important;
      transition: width 0.5s ease !important;
    }

    nav a.cta::after, .nav-menu a.cta::after { 
      display: none !important;
    }

    nav a.cta:hover, .nav-menu a.cta:hover {
      color: white !important;
    }

    nav a.cta:hover::before, .nav-menu a.cta:hover::before {
      width: 100% !important;
    }

    /* HERO MINI */
    .hero-mini {
      background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('../images/BG\ gradient.png') center/cover;
      min-height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 3rem 4rem;
      position: relative;
    }

    .hero-mini h1 {
      font-size: 3.5rem;
      font-weight: 400;
      font-family: 'Bebas Neue', sans-serif;
      color: white;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    /* CONTENT SECTION */
    .content-section {
      padding: 5rem 3rem;
      background: var(--bg);
      position: relative;
    }

    .content-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--line), transparent);
    }

    .content-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .content-block h2 {
      font-size: 2rem;
      font-weight: 400;
      font-family: 'Bebas Neue', sans-serif;
      color: var(--ink);
      letter-spacing: 0.02em;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
    }

    .content-block p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.7;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .content-block strong {
      color: var(--ink);
      font-weight: 600;
    }

    /* VALUES GRID */
    .values-section {
      padding: 5rem 0;
      background: #0A0A0A;
      position: relative;
    }

    .values-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--accent), transparent);
    }

    .values-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
    }

    .values-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .values-header h2 {
      font-size: 2.5rem;
      font-weight: 400;
      font-family: 'Bebas Neue', sans-serif;
      color: white;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .values-header p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .value-item {
      padding: 3rem 2rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .value-item:nth-child(1) {
      background: #DC2626;
    }

    .value-item:nth-child(2) {
      background: #D97706;
    }

    .value-item:nth-child(3) {
      background: #FEF3C7;
      color: #0A0A0A;
    }

    .value-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 3px;
      height: 0;
      background: white;
      transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .value-item:nth-child(3)::before {
      background: #0A0A0A;
    }

    .value-item:hover::before {
      height: 100%;
    }

    .value-item:hover {
      border-color: rgba(255, 255, 255, 0.2);
    }

    .value-number {
      font-size: 3rem;
      font-weight: 700;
      font-family: 'Bebas Neue', sans-serif;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 1rem;
      line-height: 1;
    }

    .value-item:nth-child(3) .value-number {
      color: rgba(10, 10, 10, 0.2);
    }

    .value-item h3 {
      font-size: 1.4rem;
      font-weight: 600;
      color: white;
      margin-bottom: 1rem;
      letter-spacing: -0.01em;
    }

    .value-item:nth-child(3) h3 {
      color: #0A0A0A;
    }

    .value-item p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.6;
      font-weight: 500;
    }

    .value-item:nth-child(3) p {
      color: rgba(10, 10, 10, 0.65);
    }

    /* TEAM SECTION */
    .team-section {
      padding: 5rem 3rem;
      background: #FAFAFA;
      position: relative;
    }

    .team-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--line), transparent);
    }

    .team-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .team-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .team-header h2 {
      font-size: 2.5rem;
      font-weight: 400;
      font-family: 'Bebas Neue', sans-serif;
      color: var(--ink);
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .team-header p {
      font-size: 1.1rem;
      color: var(--muted);
      font-weight: 500;
    }

    .team-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .team-content p {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.7;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .team-cta {
      margin-top: 2rem;
    }

    .team-cta a {
      display: inline-block;
      padding: 1rem 2.5rem;
      background: var(--accent);
      color: white;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      border: 2px solid var(--accent);
    }

    .team-cta a:hover {
      background: transparent;
      color: var(--accent);
    }

    /* FOOTER */
    footer {
      background: var(--ink);
      padding: 2rem 3rem;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.5);
    }

    .footer-links {
      display: flex;
      gap: 2rem;
    }

    .footer-links a {
      font-size: 0.9375rem;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: white;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      header {
        padding: 1rem 0;
      }

      .nav-container {
        padding: 0 1.5rem;
      }

      .logo img {
        height: 40px;
      }

      /* HAMBURGER MENU MOBILE */
      .hamburger {
        display: flex;
      }

      nav, .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.95));
        backdrop-filter: blur(20px);
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 99;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      }

      nav.active, .nav-menu.active {
        display: flex;
      }

      nav a, .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: left;
      }

      nav a:last-child, .nav-menu a:last-child {
        border-bottom: none;
      }

      nav a::after, .nav-menu a::after {
        display: none;
      }

      nav a.cta, .nav-menu a.cta {
        background: var(--accent) !important;
        color: white !important;
        border: none !important;
        padding: 1rem 1.5rem !important;
        margin: 0.5rem 1rem !important;
        border-radius: 0 !important;
        width: auto !important;
      }

      .hero-mini {
        min-height: 40vh;
        padding: 3rem 1.5rem;
      }

      .hero-mini h1 {
        font-size: 2rem;
      }

      .content-section {
        padding: 3rem 1.5rem;
      }

      .content-container {
        padding: 0 1.5rem;
      }

      .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .content-block h2 {
        font-size: 1.5rem;
      }

      .content-block p {
        font-size: 0.95rem;
      }

      .values-section {
        padding: 3rem 0;
      }

      .values-container {
        padding: 0 1.5rem;
      }

      .values-header h2 {
        font-size: 2rem;
      }

      .values-header p {
        font-size: 1rem;
      }

      .values-grid {
        grid-template-columns: 1fr;
      }

      .value-item {
        padding: 2rem 1.5rem;
      }

      .value-number {
        font-size: 2.5rem;
      }

      .value-item h3 {
        font-size: 1.1rem;
      }

      .value-item p {
        font-size: 0.9375rem;
      }

      .team-section {
        padding: 3rem 1.5rem;
      }

      .team-container {
        padding: 0 1.5rem;
      }

      .team-header h2 {
        font-size: 1.75rem;
      }

      .team-header p {
        font-size: 1rem;
      }

      .team-content p {
        font-size: 0.95rem;
      }

      footer {
        padding: 2rem 1.5rem;
      }

      .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
      }

      .footer-copy {
        font-size: 0.875rem;
      }

      .footer-links {
        gap: 1rem;
        justify-content: center;
      }

      .footer-links a {
        font-size: 0.875rem;
      }
    }

    @media (max-width: 480px) {
      header {
        padding: 1rem 0;
      }

      .nav-container {
        padding: 0 1rem;
      }

      .logo img {
        height: 35px;
      }

      .hamburger {
        width: 40px;
        height: 40px;
      }

      .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
      }

      nav, .nav-menu {
        top: 100%;
      }

      nav a, .nav-menu a {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
      }

      .hero-mini {
        min-height: 35vh;
        padding: 2rem 1rem;
      }

      .hero-mini h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
      }

      .content-section {
        padding: 2.5rem 1rem;
      }

      .content-container {
        padding: 0 1rem;
      }

      .content-grid {
        gap: 1.5rem;
      }

      .content-block h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
      }

      .content-block p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.875rem;
      }

      .values-section {
        padding: 2.5rem 0;
      }

      .values-container {
        padding: 0 1rem;
      }

      .values-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
      }

      .values-header p {
        font-size: 0.95rem;
      }

      .values-grid {
        gap: 0;
      }

      .value-item {
        padding: 1.75rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .value-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
      }

      .value-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
      }

      .value-item p {
        font-size: 0.875rem;
        line-height: 1.5;
      }

      .team-section {
        padding: 2.5rem 1rem;
      }

      .team-container {
        padding: 0 1rem;
      }

      .team-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
      }

      .team-header p {
        font-size: 0.95rem;
      }

      .team-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
      }

      footer {
        padding: 1.5rem 1rem;
      }

      .footer-content {
        gap: 1rem;
      }

      .footer-copy {
        font-size: 0.8rem;
      }

      .footer-links {
        gap: 0.75rem;
      }

      .footer-links a {
        font-size: 0.8rem;
      }
    }
