* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --dark-bg: #1a1d21;
    --light-bg: #f5f6f7;
    --white: #F9FAFB;
    --text-dark: #1a1d21;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --text-link: #2563EB;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
  }

  main a {
    color: var(--text-link);
  }

  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
  }

  /* Header */
  .header {
    padding: 1rem 0;
    background: var(--white);
    border-bottom: 1px solid #DCE0E5;
  }

  .header__logo {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
  }

  /* Hero Section */
  .hero {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 5rem 0;
  }

  .hero__content {
    max-width: 700px;
  }

  .hero__title {
    font-size: clamp(2.6rem, 6.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero__text {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.85;
  }

  /* Section Base */
  .section {
    padding: 4rem 0;
  }

  .section--light {
    background: var(--white);
  }

  .section--gray {
    background: var(--light-bg);
  }

  .section--dark {
    background: var(--dark-bg);
    color: var(--text-light);
  }

  .section__label {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
  }

  .section--dark .section__label {
    color: rgba(255, 255, 255, 0.6);
  }

  .section__title {
    font-size: clamp(2rem, 5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 500px;
  }

  /* About Section */
  .about__text {
    max-width: 700px;
  }

  .about__text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  /* Capabilities Grid */
  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 800px;
  }

  .capability {
    padding: 2rem;
  }

  #capability-1 {
    border-right: 1px solid #DCE0E5;
    border-bottom: 1px solid #DCE0E5;
  }

  #capability-2 {
    border-bottom: 1px solid #DCE0E5;
  }

  #capability-3 {
    border-right: 1px solid #DCE0E5;
  }
  

  .capability h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
  }

  .capability p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* Process Grid */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  .process-step__number {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  .process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  .process-step p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* Values Grid */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  .value h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(182, 191, 201, 0.30);
  }

  .value p {
    font-size: 1.05rem;
    opacity: 0.7;
    line-height: 1.5;
  }

  /* Legal Pages */
  .legal {
    padding: 2rem 0 4rem;
    background: var(--white);
  }

  .legal__nav {
    margin-bottom: 2rem;
  }

  .legal__nav a {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .legal__nav a:hover {
    color: var(--text-dark);
  }

  .legal__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }

  .legal__title {
    font-size: clamp(2rem, 5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .legal__updated {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
  }

  .legal__section {
    margin-bottom: 2.5rem;
  }

  .legal__section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }

  .legal__section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
  }

  .legal__section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  .legal__section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .legal__section li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }

  .legal__section a {
    text-decoration: underline;
  }

  .legal__section a:hover {
    text-decoration: none;
  }

  .legal__section strong {
    color: var(--text-dark);
  }

  .legal__caps {
    text-transform: uppercase;
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    background: var(--white);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
  }

  .footer__main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer__company h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .footer__company p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
  }

  .footer__company a {
    font-size: 1.05rem;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-block;
    margin-top: 0.75rem;
  }

  .footer__links {
    list-style: none;
    text-align: right;
  }

  .footer__links li {
    margin-bottom: 0.5rem;
  }

  .footer__links a {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer__links a:hover {
    color: var(--text-dark);
  }

  .footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
  }

  .footer__copyright {
    font-size: 1rem;
    color: var(--text-muted);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero {
      padding: 3rem 0;
    }

    .section {
      padding: 3rem 0;
    }

    .container {
      padding: 0 1.5rem;
    }

    .footer__main {
      flex-direction: column;
    }

    .footer__links {
      text-align: left;
    }

    .capabilities-grid,
    .process-grid,
    .values-grid {
      gap: 1.5rem;
    }

    .legal {
      padding: 1.5rem 0 3rem;
    }

    .legal__title {
      font-size: 1.75rem;
    }

    .legal__section h2 {
      font-size: 1.2rem;
    }

    .legal__section h3 {
      font-size: 1.05rem;
    }

    .legal__section p,
    .legal__section li {
      font-size: 1rem;
    }
  }

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

    .hero {
      padding: 2.5rem 0;
    }

    .section {
      padding: 2.5rem 0;
    }

    .footer {
      padding: 2rem 0;
    }

    .container {
      padding: 0 1.25rem;
    }

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

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