* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --navy: #0f2044;
        --navy-mid: #1a3460;
        --navy-light: #2a4a80;
        --teal: #0e7c7b;
        --teal-light: #12a09e;
        --gold: #c9a84c;
        --white: #ffffff;
        --off-white: #f8f9fc;
        --gray-100: #f0f2f7;
        --gray-200: #e2e6ef;
        --gray-400: #8892a4;
        --gray-700: #3d4a5c;
        --text: #1a2340;
        --body-font: "DM Sans", sans-serif;
        --display-font: "Playfair Display", serif;
      }
      body {
        font-family: var(--body-font);
        color: var(--text);
        background: var(--white);
        line-height: 1.7;
        font-size: 16px;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      img {
        max-width: 100%;
      }

      /* NAV */
      nav {
        background: var(--navy);
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
        position: sticky;
        top: 0;
        z-index: 100;
      }
      .logo {
        color: var(--white);
        font-family: var(--display-font);
        font-size: 22px;
        letter-spacing: 0.5px;
      }
      .logo span {
        color: var(--gold);
      }
      .nav-links {
        display: flex;
        gap: 32px;
        list-style: none;
      }
      .nav-links a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.3px;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--white);
      }
      .nav-cta {
        background: var(--teal);
        color: var(--white);
        padding: 9px 22px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        transition: background 0.2s;
      }
      .nav-cta:hover {
        background: var(--teal-light);
      }

      /* HERO */
      .hero {
        background: linear-gradient(
          135deg,
          var(--navy) 0%,
          var(--navy-mid) 60%,
          var(--navy-light) 100%
        );
        color: var(--white);
        padding: 96px 5% 80px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        min-height: 580px;
      }
      .hero-eyebrow {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 500;
        margin-bottom: 20px;
      }
      .hero h1 {
        font-family: var(--display-font);
        font-size: 52px;
        line-height: 1.15;
        margin-bottom: 24px;
        font-weight: 600;
      }
      .hero h1 em {
        color: var(--gold);
        font-style: normal;
      }
      .hero-sub {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.7;
        margin-bottom: 36px;
        font-weight: 300;
      }
      .hero-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
      }
      .btn-primary {
        background: var(--teal);
        color: var(--white);
        padding: 13px 30px;
        border-radius: 4px;
        font-size: 15px;
        font-weight: 500;
        transition: background 0.2s;
      }
      .btn-primary:hover {
        background: var(--teal-light);
      }
      .btn-outline {
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        color: var(--white);
        padding: 12px 28px;
        border-radius: 4px;
        font-size: 15px;
        font-weight: 400;
        transition:
          border-color 0.2s,
          background 0.2s;
      }
      .btn-outline:hover {
        border-color: var(--white);
        background: rgba(255, 255, 255, 0.06);
      }
      .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 48px;
      }
      .hero-stat {
        border-top: 1.5px solid rgba(255, 255, 255, 0.15);
        padding-top: 20px;
      }
      .hero-stat-num {
        font-family: var(--display-font);
        font-size: 36px;
        color: var(--gold);
        font-weight: 600;
      }
      .hero-stat-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 4px;
        font-weight: 300;
      }
      .hero-visual {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .hero-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        padding: 20px 24px;
      }
      .hero-card-tag {
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 8px;
        font-weight: 500;
      }
      .hero-card-title {
        font-size: 15px;
        color: var(--white);
        font-weight: 500;
        margin-bottom: 4px;
      }
      .hero-card-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
      }
      .hero-card-row {
        display: flex;
        gap: 8px;
        margin-top: 12px;
        flex-wrap: wrap;
      }
      .tag {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.65);
        font-size: 11px;
        padding: 3px 10px;
        border-radius: 20px;
        font-weight: 400;
      }

      /* SECTIONS */
      section {
        padding: 80px 5%;
      }
      .section-label {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--teal);
        font-weight: 500;
        margin-bottom: 12px;
      }
      .section-title {
        font-family: var(--display-font);
        font-size: 38px;
        color: var(--navy);
        font-weight: 600;
        margin-bottom: 16px;
        line-height: 1.2;
      }
      .section-sub {
        font-size: 16px;
        color: var(--gray-400);
        max-width: 560px;
        line-height: 1.7;
        font-weight: 300;
      }
      .section-head {
        margin-bottom: 52px;
      }

      /* ABOUT */
      .about {
        background: var(--white);
      }
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
      }
      .about-body p {
        color: var(--gray-700);
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 18px;
        font-weight: 300;
      }
      .about-body p strong {
        color: var(--navy);
        font-weight: 500;
      }
      .about-pillars {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 32px;
      }
      .pillar {
        background: var(--off-white);
        border-left: 3px solid var(--teal);
        padding: 20px 22px;
        border-radius: 0 6px 6px 0;
      }
      .pillar-title {
        font-size: 14px;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 6px;
      }
      .pillar-body {
        font-size: 13px;
        color: var(--gray-400);
        line-height: 1.6;
      }
      .about-right {
        background: var(--navy);
        border-radius: 10px;
        padding: 40px;
        color: var(--white);
      }
      .about-right h3 {
        font-family: var(--display-font);
        font-size: 26px;
        margin-bottom: 24px;
        color: var(--white);
      }
      .about-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 16px 0;
        display: flex;
        gap: 16px;
        align-items: flex-start;
      }
      .about-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .about-num {
        font-family: var(--display-font);
        font-size: 28px;
        color: var(--gold);
        min-width: 48px;
        font-weight: 600;
      }
      .about-item-text {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        font-weight: 300;
      }
      .about-item-text strong {
        color: var(--white);
        display: block;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 3px;
      }

      /* SERVICES */
      .services {
        background: var(--off-white);
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .service-card {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        padding: 32px;
        transition:
          border-color 0.2s,
          transform 0.2s;
      }
      .service-card:hover {
        border-color: var(--teal);
        transform: translateY(-2px);
      }
      .service-icon {
        width: 44px;
        height: 44px;
        background: var(--navy);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 20px;
      }
      .service-card h3 {
        font-size: 17px;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 10px;
      }
      .service-card p {
        font-size: 14px;
        color: var(--gray-400);
        line-height: 1.7;
        font-weight: 300;
      }
      .service-card.featured {
        border-color: var(--navy);
        background: var(--navy);
      }
      .service-card.featured h3 {
        color: var(--white);
      }
      .service-card.featured p {
        color: rgba(255, 255, 255, 0.65);
      }
      .service-card.featured .service-icon {
        background: var(--gold);
      }
      .service-tags {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
      }
      .service-tag {
        font-size: 11px;
        padding: 3px 10px;
        border-radius: 20px;
        font-weight: 400;
      }
      .service-tag-dark {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
      }
      .service-tag-light {
        background: var(--gray-100);
        color: var(--gray-700);
      }

      /* PROJECTS */
      .projects {
        background: var(--white);
      }
      .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .project-card {
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        overflow: hidden;
      }
      .project-top {
        padding: 28px;
        border-bottom: 1px solid var(--gray-100);
      }
      .project-industry {
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--teal);
        font-weight: 500;
        margin-bottom: 10px;
      }
      .project-card h3 {
        font-size: 16px;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 10px;
        line-height: 1.4;
      }
      .project-card p {
        font-size: 13px;
        color: var(--gray-400);
        line-height: 1.65;
        font-weight: 300;
      }
      .project-bottom {
        padding: 18px 28px;
        background: var(--off-white);
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .project-result {
        font-size: 12px;
        color: var(--teal);
        font-weight: 500;
        background: rgba(14, 124, 123, 0.08);
        padding: 4px 10px;
        border-radius: 20px;
      }

      /* BLOGS */
      .blogs {
        background: var(--off-white);
      }
      .blogs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .blog-card {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        overflow: hidden;
        transition: border-color 0.2s;
      }
      .blog-card:hover {
        border-color: var(--teal);
      }
      .blog-top {
        padding: 28px 28px 20px;
      }
      .blog-cat {
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 500;
        margin-bottom: 12px;
      }
      .blog-card h3 {
        font-size: 15px;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 10px;
        line-height: 1.5;
      }
      .blog-card p {
        font-size: 13px;
        color: var(--gray-400);
        line-height: 1.65;
        font-weight: 300;
      }
      .blog-bottom {
        padding: 14px 28px;
        border-top: 1px solid var(--gray-100);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .blog-meta {
        font-size: 12px;
        color: var(--gray-400);
      }
      .blog-read {
        font-size: 12px;
        color: var(--teal);
        font-weight: 500;
      }

      /* TEAM */
      .team {
        background: var(--white);
      }
      .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }
      .team-card {
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        overflow: hidden;
      }
      .team-header {
        background: var(--navy);
        padding: 32px 28px 24px;
      }
      .team-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--display-font);
        font-size: 22px;
        color: var(--navy);
        font-weight: 600;
        margin-bottom: 16px;
      }
      .team-name {
        font-size: 18px;
        font-weight: 500;
        color: var(--white);
        margin-bottom: 4px;
      }
      .team-role {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 2px;
        font-weight: 300;
      }
      .team-loc {
        font-size: 12px;
        color: var(--gold);
        margin-top: 6px;
        font-weight: 400;
      }
      .team-body {
        padding: 24px 28px;
      }
      .team-bio {
        font-size: 13px;
        color: var(--gray-700);
        line-height: 1.7;
        margin-bottom: 18px;
        font-weight: 300;
      }
      .team-skills {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 16px;
      }
      .skill-tag {
        font-size: 11px;
        background: var(--gray-100);
        color: var(--gray-700);
        padding: 3px 10px;
        border-radius: 20px;
      }
      .team-linkedin {
        font-size: 12px;
        color: var(--teal);
        font-weight: 500;
      }

      /* TESTIMONIALS */
      .testimonials {
        background: var(--navy);
      }
      .testimonials .section-label {
        color: var(--gold);
      }
      .testimonials .section-title {
        color: var(--white);
      }
      .testimonials .section-sub {
        color: rgba(255, 255, 255, 0.5);
      }
      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .testi-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 28px;
      }
      .testi-quote {
        font-size: 32px;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 12px;
        font-family: var(--display-font);
      }
      .testi-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.75;
        font-weight: 300;
        margin-bottom: 20px;
        font-style: italic;
      }
      .testi-author {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 16px;
      }
      .testi-name {
        font-size: 14px;
        color: var(--white);
        font-weight: 500;
      }
      .testi-title {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.45);
        margin-top: 2px;
        font-weight: 300;
      }

      /* CONTACT */
      .contact {
        background: var(--off-white);
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
      }
      .contact-left p {
        font-size: 15px;
        color: var(--gray-700);
        line-height: 1.75;
        margin-bottom: 28px;
        font-weight: 300;
      }
      .contact-detail {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 8px;
      }
      .contact-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
      }
      .contact-item-icon {
        width: 36px;
        height: 36px;
        background: var(--navy);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 15px;
      }
      .contact-item-label {
        font-size: 12px;
        color: var(--gray-400);
        margin-bottom: 2px;
        font-weight: 300;
      }
      .contact-item-value {
        font-size: 14px;
        color: var(--navy);
        font-weight: 500;
      }
      .contact-form {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        padding: 36px;
      }
      .form-row {
        margin-bottom: 20px;
      }
      .form-row label {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 7px;
      }
      .form-row input,
      .form-row select,
      .form-row textarea {
        width: 100%;
        border: 1px solid var(--gray-200);
        border-radius: 5px;
        padding: 11px 14px;
        font-size: 14px;
        font-family: var(--body-font);
        color: var(--text);
        background: var(--white);
        outline: none;
        transition: border-color 0.2s;
      }
      .form-row input:focus,
      .form-row select:focus,
      .form-row textarea:focus {
        border-color: var(--teal);
      }
      .form-row textarea {
        resize: vertical;
        min-height: 100px;
      }
      .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .submit-btn {
        width: 100%;
        background: var(--navy);
        color: var(--white);
        padding: 13px;
        border-radius: 5px;
        font-size: 15px;
        font-weight: 500;
        border: none;
        cursor: pointer;
        font-family: var(--body-font);
        transition: background 0.2s;
      }
      .submit-btn:hover {
        background: var(--navy-mid);
      }

      /* FOOTER */
      footer {
        background: var(--navy);
        color: rgba(255, 255, 255, 0.5);
        padding: 32px 5%;
        text-align: center;
        font-size: 13px;
        font-weight: 300;
      }
      footer span {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
      }

      /* RESPONSIVE */
      @media (max-width: 900px) {
        .hero {
          grid-template-columns: 1fr;
          padding: 60px 5%;
        }
        .hero-visual {
          display: none;
        }
        .about-grid,
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .services-grid,
        .projects-grid,
        .blogs-grid,
        .team-grid,
        .testi-grid {
          grid-template-columns: 1fr;
        }
        .hero h1 {
          font-size: 36px;
        }
        .section-title {
          font-size: 28px;
        }
        .nav-links {
          display: none;
        }
      }