@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Raleway:wght@400;700&display=swap");

:root {
      --primary-blue: #1d4ed8;
      --accent-lime: #84cc16;
      --white: #ffffff;
      --light-bg: #f9fafb;
      --text-dark: #1f2937;
      --text-light: #6b7280;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      background-color: var(--white);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    h1 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      letter-spacing: -0.01em;
    }

    h3 {
      font-size: 1.5rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1.25rem;
      color: var(--text-dark);
    }

    a {
      color: var(--primary-blue);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--accent-lime);
    }

    button, .button {
      display: inline-block;
      padding: 0.875rem 1.75rem;
      background-color: var(--primary-blue);
      color: var(--white);
      border: none;
      border-radius: 0.375rem;
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
    }

    button:hover, .button:hover {
      background-color: var(--accent-lime);
      color: var(--text-dark);
      transform: translateY(-2px);
    }

    /* Header & Navigation */
    header {
      background-color: var(--white);
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      font-family: 'Raleway', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary-blue);
      text-decoration: none;
    }

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

    nav a {
      font-size: 0.95rem;
      font-weight: 400;
      color: var(--text-dark);
      padding: 0.5rem 1rem;
      border-radius: 1.5rem;
      transition: all 0.3s ease;
    }

    nav a:hover {
      background-color: var(--light-bg);
      color: var(--primary-blue);
    }

    nav a.active {
      background-color: var(--primary-blue);
      color: var(--white);
      font-weight: 700;
    }

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

    main {
      min-height: calc(100vh - 200px);
    }

    /* Hero Section */
    #hero {
      background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
      padding: 6rem 2rem;
      text-align: center;
      min-height: 80vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .hero-label {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--primary-blue);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.5rem;
    }

    #hero h1 {
      color: var(--primary-blue);
      margin-bottom: 1.5rem;
      max-width: 900px;
    }

    #hero .subheading {
      font-size: 1.25rem;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto 3rem;
      font-weight: 400;
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Section Styling */
    section {
      padding: 4rem 2rem;
    }

    section:nth-child(even) {
      background-color: var(--light-bg);
    }

    section:nth-child(odd) {
      background-color: var(--white);
    }

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

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

    .section-header h2 {
      color: var(--primary-blue);
      margin-bottom: 0.75rem;
    }

    .section-header .subheading {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto;
    }

    /* What We Do Section */
    #what_we_do .content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    #what_we_do .text-content h3 {
      color: var(--primary-blue);
      margin-bottom: 1.5rem;
    }

    #what_we_do .text-content p {
      color: var(--text-dark);
      margin-bottom: 1rem;
    }

    #what_we_do .text-content ul {
      list-style: none;
      margin-top: 1.5rem;
    }

    #what_we_do .text-content li {
      padding: 0.75rem 0;
      padding-left: 2rem;
      position: relative;
      color: var(--text-dark);
    }

    #what_we_do .text-content li:before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--accent-lime);
      font-weight: 700;
    }

    #what_we_do .image-container {
      border-radius: 0.5rem;
      overflow: hidden;
      height: 400px;
    }

    #what_we_do .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Our Approach Section */
    #our_approach {
      background-color: var(--primary-blue);
      color: var(--white);
      text-align: center;
    }

    #our_approach .section-header h2,
    #our_approach .section-header .subheading {
      color: var(--white);
    }

    .approach-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .approach-card {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 0.5rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
    }

    .approach-card h3 {
      color: var(--accent-lime);
      margin-bottom: 1rem;
      font-size: 1.25rem;
    }

    .approach-card p {
      color: rgba(255, 255, 255, 0.95);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* Client Fit Section */
    #client_fit {
      background-color: var(--white);
    }

    .client-fit-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .client-fit-image {
      border-radius: 0.5rem;
      overflow: hidden;
      height: 400px;
    }

    .client-fit-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .client-fit-text h3 {
      color: var(--primary-blue);
      margin-bottom: 1.5rem;
    }

    .client-fit-text p {
      color: var(--text-dark);
      margin-bottom: 1rem;
    }

    .fit-traits {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 2px solid var(--accent-lime);
    }

    .fit-traits h4 {
      color: var(--primary-blue);
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .fit-traits ul {
      list-style: none;
    }

    .fit-traits li {
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
      color: var(--text-dark);
    }

    .fit-traits li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent-lime);
      font-weight: 700;
    }

    /* CTA Section */
    #cta_section {
      background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
      color: var(--white);
      text-align: center;
      padding: 5rem 2rem;
    }

    #cta_section h2 {
      color: var(--white);
      margin-bottom: 1rem;
    }

    #cta_section .subheading {
      color: rgba(255, 255, 255, 0.95);
      font-size: 1.15rem;
      margin-bottom: 2.5rem;
    }

    #cta_section .button {
      background-color: var(--accent-lime);
      color: var(--text-dark);
    }

    #cta_section .button:hover {
      background-color: var(--white);
    }

    /* Footer */
    footer {
      background-color: var(--text-dark);
      color: var(--white);
      margin-top: 4rem;
    }

    footer .top-section {
      padding: 3rem 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    footer .footer-column h4 {
      font-family: 'Raleway', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      color: var(--accent-lime);
    }

    footer .footer-column p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 0.75rem;
    }

    footer .footer-column a {
      display: block;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      margin-bottom: 0.75rem;
      transition: color 0.3s ease;
    }

    footer .footer-column a:hover {
      color: var(--accent-lime);
    }

    footer .bottom-bar {
      background-color: rgba(0, 0, 0, 0.3);
      padding: 2rem;
      text-align: center;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
    }

    /* Responsive */
    @media (max-width: 768px) {
      #what_we_do .content,
      .client-fit-content {
        grid-template-columns: 1fr;
      }

      #what_we_do .image-container,
      .client-fit-image {
        height: 300px;
      }

      header .container {
        padding: 1.25rem 1.5rem;
      }

      nav {
        gap: 1rem;
      }

      nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
      }

      .hero-cta {
        flex-direction: column;
        align-items: center;
      }

      button, .button {
        width: 100%;
      }

      section {
        padding: 3rem 1.5rem;
      }

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

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

    @media (max-width: 480px) {
      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.5rem;
      }

      header .logo {
        font-size: 1.1rem;
      }

      nav {
        gap: 0.5rem;
      }

      nav a {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
      }

      section {
        padding: 2rem 1rem;
      }

      .section-header {
        margin-bottom: 2rem;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
