:root {
  --navy-950: #17324a;
  --navy-900: #1f435f;
  --navy-800: #2d5879;
  --navy-700: #4d7492;
  --orange-500: #f58a1d;
  --orange-600: #e47212;
  --slate-900: #1f2f3c;
  --slate-700: #546776;
  --slate-300: #d7dee6;
  --slate-200: #e8edf2;
  --slate-100: #f6f8fb;
  --white: #ffffff;
  --shadow-lg: 0 24px 60px rgba(20, 43, 62, 0.18);
  --shadow-md: 0 14px 32px rgba(20, 43, 62, 0.14);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--slate-900);
  background: linear-gradient(180deg, #edf3f8 0%, #f8fafc 100%);
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0);
  box-shadow: none;
  transition: background 180ms ease, backdrop-filter 180ms ease, box-shadow 180ms ease;
}

.site-header.is-sticky,
.site-header.menu-open {
  background: rgba(20, 47, 70, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(8, 21, 33, 0.18);
}

.navbar {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 36px;
  max-width: min(48vw, 360px);
  object-fit: contain;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  border: 0;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(228, 114, 18, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background: linear-gradient(180deg, #284a67 0%, #1a3449 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.22), transparent 10rem),
    linear-gradient(100deg, rgba(15, 38, 56, 0.88) 0%, rgba(21, 54, 79, 0.68) 44%, rgba(21, 54, 79, 0.2) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 28, 0.06), rgba(7, 17, 28, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 4rem 0 4rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.scroll-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.scroll-cue-icon {
  display: grid;
  gap: 0.2rem;
}

.scroll-cue-icon span {
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
  animation: scrollChevronBounce 1.5s ease-in-out infinite;
}

.scroll-cue-icon span:last-child {
  margin-top: -0.25rem;
  animation-delay: 0.14s;
}

@keyframes scrollChevronBounce {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 1;
  }

  60% {
    transform: rotate(45deg) translate(5px, 5px);
    opacity: 0.35;
  }
}

.hero-copy {
  max-width: 720px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-title h2,
.growth-copy h2,
.cta-inner h2 {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  text-transform: none;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}

.hero-text,
.section-text,
.cta-inner p,
.footer-copy,
.footer-links p {
  line-height: 1.7;
}

.hero-text {
  margin: 1rem 0 0;
  max-width: 38rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.services-band {
  position: relative;
  padding: 3.5rem 0 2.25rem;
  z-index: 1;
  background: linear-gradient(180deg, #edf3f8 0%, #f7fafc 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.service-card,
.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.service-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--navy-950);
}

.service-card p,
.testimonial-card p,
.footer-links a,
.footer-links p,
.footer-bottom p {
  margin: 0;
  color: var(--slate-700);
}

.service-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f5f9fd, #e2ebf4);
  position: relative;
}

.icon-screen::before,
.icon-target::before,
.icon-brand::before,
.icon-target::after,
.icon-brand::after {
  content: "";
  position: absolute;
}

.icon-screen::before {
  inset: 11px 9px 17px;
  border: 3px solid var(--navy-800);
  border-bottom-width: 4px;
  border-radius: 4px;
}

.icon-target::before {
  inset: 10px;
  border: 4px solid var(--orange-500);
  border-radius: 50%;
}

.icon-target::after {
  top: 24px;
  left: 14px;
  width: 26px;
  height: 4px;
  background: var(--orange-600);
  transform: rotate(-35deg);
  transform-origin: right center;
}

.icon-brand::before {
  top: 12px;
  left: 14px;
  width: 26px;
  height: 26px;
  border: 4px solid var(--navy-800);
  border-radius: 50%;
}

.icon-brand::after {
  bottom: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  background: var(--orange-500);
  transform: rotate(45deg);
}

.growth-section {
  padding: 4.6rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.98)),
    linear-gradient(180deg, rgba(55, 84, 108, 0.08), rgba(55, 84, 108, 0.02));
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 2rem;
}

.growth-copy h2,
.section-title h2,
.cta-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--navy-950);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.95rem;
}

.benefits-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
  color: var(--navy-950);
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-700));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.95);
}

.device-stage {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-image-card {
  margin: 0;
  width: min(540px, 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(23, 50, 74, 0.08);
  background: var(--white);
}

.device-image-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
}

.carousel-section {
  padding: 4.25rem 0;
  background: linear-gradient(180deg, #eef4f9 0%, #f8fbfd 100%);
}

.carousel-heading {
  margin-bottom: 1.5rem;
}

.carousel-intro {
  max-width: 44rem;
  margin: 0.75rem auto 0;
  color: var(--slate-700);
  line-height: 1.7;
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 260ms ease;
  will-change: transform;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 420px;
  max-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--navy-900);
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 500px;
  object-fit: cover;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 31, 46, 0.08), rgba(14, 31, 46, 0.56)),
    linear-gradient(120deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 62%, transparent 62%);
}

.slide-overlay {
  position: absolute;
  inset: auto 1.4rem 1.4rem 1.4rem;
  z-index: 1;
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: 12px;
  background: rgba(18, 36, 51, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.slide-tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(245, 138, 29, 0.18);
  color: #ffd7ab;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-overlay h3 {
  margin: 0;
  max-width: 20ch;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(228, 114, 18, 0.22);
}

.carousel-control {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-950);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 700;
}

.carousel-mobile-nav {
  display: none;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(77, 116, 146, 0.28);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--orange-500);
}

.testimonials {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f2f6fb 0%, #e9f0f7 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.testimonial-card strong,
.footer-links h3 {
  display: block;
  margin-top: 0.9rem;
  color: var(--navy-950);
}

.testimonial-card span {
  color: var(--navy-700);
  font-size: 0.95rem;
}

.avatar {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, #f3c7a4 0 20px, transparent 21px),
    radial-gradient(circle at 50% 82%, #59758d 0 26px, transparent 27px),
    linear-gradient(180deg, #9db0c0, #dfe8ef);
}

.avatar-one::before,
.avatar-two::before {
  content: "";
  position: relative;
  display: block;
  width: 74px;
  height: 74px;
  border-radius: 50%;
}

.avatar-one {
  background:
    radial-gradient(circle at 50% 34%, #f2c39f 0 18px, transparent 19px),
    radial-gradient(circle at 50% 84%, #4d6880 0 24px, transparent 25px),
    radial-gradient(circle at 50% 18%, #61788d 0 22px, transparent 23px),
    linear-gradient(180deg, #a8bac9, #eef2f6);
}

.avatar-two {
  background:
    radial-gradient(circle at 50% 34%, #f0c5a7 0 18px, transparent 19px),
    radial-gradient(circle at 50% 84%, #c48c6e 0 24px, transparent 25px),
    radial-gradient(circle at 50% 18%, #7b593f 0 22px, transparent 23px),
    linear-gradient(180deg, #bccbda, #f3f6fa);
}

.cta-banner {
  padding: 4.4rem 0;
  background:
    linear-gradient(180deg, rgba(15, 38, 56, 0.94), rgba(21, 51, 76, 0.96)),
    linear-gradient(180deg, #1d415f, #1b3042);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.light {
  color: rgba(255, 255, 255, 0.78);
}

.cta-inner h2 {
  color: var(--white);
}

.cta-inner p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  background: #13283a;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
  .hero-content,
  .growth-grid,
  .cta-inner,
  .footer-grid,
  .cards-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding: 30vw 1rem;
  }

  .hero-copy {
    max-width: none;
  }

  .growth-copy {
    order: 1;
  }

  .device-stage {
    order: 2;
    min-height: 340px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .carousel-slide {
    min-height: 360px;
  }

  .carousel-slide img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .container,
  .navbar {
    width: min(var(--container), calc(100% - 2rem));
  }

  .hero-content {
    padding-inline: 0;
  }

  .navbar {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-shell {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(21, 47, 69, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .menu-open .nav-shell {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 0.8rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .scroll-cue {
    display: inline-flex;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .services-band {
    padding: 2.5rem 0 1.75rem;
  }

  .service-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .carousel {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .carousel-control {
    display: none;
  }

  .carousel-mobile-nav {
    display: flex;
  }

  .carousel-mobile-nav .carousel-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-heading {
    margin-bottom: 1rem;
  }

  .carousel-intro {
    max-width: 32rem;
    margin-top: 0.5rem;
    font-size: 0.98rem;
  }

  .carousel-slide {
    min-height: 280px;
  }

  .carousel-slide img {
    min-height: 280px;
  }

  .carousel-dots {
    gap: 0.55rem;
    margin-top: 0.95rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .device-stage {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .container,
  .navbar {
    width: min(var(--container), calc(100% - 2rem));
  }

  .brand-logo {
    height: 44px;
    max-width: min(56vw, 260px);
  }

  .hero-text,
  .section-text {
    font-size: 1rem;
  }

  .slide-overlay {
    inset: auto 1rem 1rem 1rem;
    padding: 1rem;
  }

  .slide-tag {
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
  }

  .slide-overlay h3 {
    max-width: 16ch;
    font-size: 1.45rem;
  }

  .device-image-card img {
    min-height: 240px;
  }

}
