:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e7edf4;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --dark: #071827;
  --blue: #1a237e;          /* brand navy (from logo) */
  --blue-light: #3949c6;    /* brand navy tint for gradients */
  --cyan: #12c6dc;
  --green: #28b463;
  --orange: #ff6d00;        /* brand orange (from logo) */
  --orange-dark: #e05e00;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Outfit, Arial, sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  font-weight: 800;
}

.brand img {
  border-radius: 0;
}

.brand strong {
  color: var(--blue);
}

.brand-logo {
  width: clamp(178px, 22vw, 260px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #283548;
  font-size: .95rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 18px 40px rgba(26, 35, 126, .26);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 20px 44px rgba(255, 109, 0, .38);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 8vw, 108px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(18, 198, 220, .18), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #fff 70%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .82rem;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.process h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  font-weight: 800;
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 700px;
  justify-self: center;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(16, 24, 40, .18);
  object-fit: cover;
}

.growth-panel,
.marketing-panel {
  position: absolute;
  z-index: 2;
  width: 172px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 55px rgba(16, 24, 40, .22);
  backdrop-filter: blur(4px);
}

.growth-panel {
  top: 22px;
  left: -18px;
}

.marketing-panel {
  right: -14px;
  bottom: 26px;
}

.growth-panel span,
.marketing-panel span {
  display: block;
  color: var(--blue);
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
}

.growth-panel p,
.marketing-panel p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

section {
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  color: #fff;
  background: var(--dark);
}

.feature-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 3.5vw, 40px);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #123353, #0c2339);
}

.feature-intro strong {
  display: block;
  color: var(--orange);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .9;
}

.feature-intro h2 {
  max-width: 520px;
  margin: 14px 0 0;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.15;
}

.feature-intro ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-intro li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--cyan);
}

.feature-cards,
.service-grid,
.project-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

.feature-cards {
  grid-template-columns: repeat(3, 1fr);
}

.feature-cards article,
.service-grid article,
.project-grid article,
.team-grid article {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-cards article:hover,
.service-grid article:hover,
.project-grid article:hover,
.team-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 35, 126, .28);
  box-shadow: 0 22px 48px rgba(16, 24, 40, .13);
}

.service-grid article:hover span {
  background: var(--orange);
  transform: scale(1.06);
}

.service-grid span {
  transition: background .3s ease, transform .3s ease;
}

.feature-cards article {
  padding: 24px;
  color: var(--ink);
}

.feature-cards span {
  margin-bottom: 14px !important;
}

.feature-cards span,
.service-grid span,
.process-strip span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.feature-cards h3,
.service-grid h3,
.project-grid h3,
.team-grid h3,
.process-strip h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.feature-cards p,
.service-grid p,
.project-grid p,
.process-strip p {
  margin: 0;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.media-mosaic {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  justify-self: center;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(16, 24, 40, .16);
  object-fit: cover;
}

.section-copy h2,
.section-heading h2,
.process h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-copy > p:not(.eyebrow),
.text-list p {
  color: var(--muted);
}

.text-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.text-list strong {
  display: block;
  color: var(--ink);
}

.services,
.projects {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article {
  padding: 28px;
  min-height: 260px;
}

.service-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  min-height: 260px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--blue-light));
  box-shadow: 0 22px 48px rgba(26, 35, 126, .22);
}

.service-cta h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
}

.service-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
}

.service-cta .button {
  align-self: flex-start;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 30px rgba(4, 12, 40, .28);
}

.service-cta .button:hover,
.service-cta .button:focus-visible {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
}

.process {
  background: #fff;
}

.process-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 34px;
}

.process-top strong {
  color: var(--blue);
}

.meters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.meters div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.meters span {
  display: block;
  color: var(--green);
  font-size: 2.4rem;
  font-weight: 800;
}

.meters p {
  margin: 6px 0 0;
  color: var(--muted);
}

.process-strip {
  display: grid;
  grid-template-columns: 1.08fr repeat(3, 1fr);
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, #082035, #103c64);
}

.process-strip p {
  color: #c9d9e8;
}

.process-strip h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-grid article {
  overflow: hidden;
}

.project-grid h3,
.project-grid p {
  padding-inline: 24px;
}

.project-grid p {
  padding-bottom: 24px;
}

.project-art {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.team-grid {
  grid-template-columns: repeat(5, 1fr);
}

.team-grid article {
  overflow: hidden;
  text-align: center;
}

.team-grid img,
.avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.avatar {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #246bfe, #071827);
}

.team-grid h3 {
  padding: 20px 16px 24px;
  margin: 0;
  font-size: 1.05rem;
}

.team-card-link {
  display: block;
  height: 100%;
}

.team-card-link:hover h3 {
  color: var(--blue);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-content: center;
  padding-top: clamp(74px, 9vw, 128px);
  padding-bottom: clamp(64px, 8vw, 116px);
  background:
    radial-gradient(circle at 82% 24%, rgba(18, 198, 220, .2), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #fff 76%);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero > p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.profile-stack {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  background: var(--soft);
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 70px rgba(16, 24, 40, .08);
}

.profile-card:nth-child(even) .profile-photo {
  order: 2;
}

.profile-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.profile-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.profile-copy p:not(.eyebrow) {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--dark);
  color: #fff;
}

.stats div {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}

.stats strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
}

.stats span {
  color: #cbd7e3;
  font-weight: 700;
}

.testimonials {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background: var(--soft);
}

.rating-visual {
  min-height: 420px;
  display: grid;
  place-content: center;
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 25%, rgba(255,255,255,.25), transparent 22%),
    linear-gradient(155deg, #246bfe, #071827);
}

.rating-visual span {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 800;
  line-height: .9;
}

.rating-visual p {
  margin: 12px 0 0;
  font-size: 1.25rem;
}

.testimonial-slider {
  position: relative;
  min-height: 360px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  background: #fff;
}

.testimonial-slider article {
  display: none;
}

.testimonial-slider article.active {
  display: block;
}

.testimonial-slider h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.08;
}

.testimonial-slider p {
  color: var(--muted);
  font-size: 1.1rem;
}

.slider-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.slider-actions button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
}

.partners {
  padding-block: 56px;
  color: #fff;
  background: #0b2136;
}

.partners p {
  margin: 0 0 24px;
  text-align: center;
  color: #bfcddd;
  font-weight: 700;
}

.partner-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-logos {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 14px;
  animation: partner-scroll 42s linear infinite;
}

.partner-marquee:hover .partner-logos {
  animation-play-state: paused;
}

@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partner-logos {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}

.partners span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: min(210px, 42vw);
  min-height: 112px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: #fff;
}

.partners img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.footer {
  padding: clamp(48px, 6vw, 86px) clamp(18px, 5vw, 72px) 28px;
  color: #d9e5ef;
  background: #06121f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .75fr 1fr 1fr;
  gap: 34px;
}

.footer h2,
.footer h3 {
  margin: 0 0 16px;
  color: #fff;
}

.footer a,
.footer p {
  display: block;
  margin: 9px 0;
  color: #d9e5ef;
}

.newsletter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.newsletter button {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.copyright {
  margin: 42px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 1080px) {
  .hero,
  .feature-band,
  .about,
  .process-top,
  .testimonials,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .growth-panel { left: 8px; top: 12px; }
  .marketing-panel { right: 8px; bottom: 12px; }

  .feature-intro,
  .feature-cards,
  .service-grid,
  .project-grid,
  .team-grid,
  .stats,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .profile-card:nth-child(even) .profile-photo {
    order: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 4px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

}

@media (max-width: 640px) {
  section,
  .hero,
  .footer {
    padding-inline: 16px;
  }

  .growth-panel { left: 8px; top: 12px; }
  .marketing-panel { right: 8px; bottom: 12px; }

  .feature-intro,
  .feature-cards,
  .service-grid,
  .project-grid,
  .team-grid,
  .stats,
  .meters,
  .footer-grid {
    grid-template-columns: 1fr;
  }

}
