:root {
  --navy: #063e5c;
  --navy-dark: #032f46;
  --teal: #16b89a;
  --orange: #ff6b00;
  --sky: #29b6e8;
  --ink: #111827;
  --muted: #53627a;
  --soft: #f1f5fa;
  --line: #dce4ee;
  --white: #ffffff;
  --shadow: 0 16px 38px rgba(3, 47, 70, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #eef7fa;
  border-bottom: 1px solid #d7edf4;
  box-shadow: 0 4px 20px rgba(3, 47, 70, 0.04);
}

.navbar {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--sky));
  font-size: 22px;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(22, 184, 154, 0.28);
}

.brand-logo {
  width: 58px;
  height: 58px;
  padding: 6px;
  border-radius: 14px;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 10px 22px rgba(22, 184, 154, 0.28);
}

.footer-brand .brand-logo {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 25px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-tagline {
  width: max-content;
  margin-top: 5px;
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a,
.dropdown-label {
  position: relative;
  padding: 35px 2px 30px;
  color: #31445b;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-links a::after,
.dropdown-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--teal);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.dropdown:hover .dropdown-label::after {
  transform: scaleX(1);
}

.dropdown {
  position: relative;
}

.dropdown-label span {
  color: var(--orange);
  font-size: 11px;
}

.dropdown-menu {
  position: absolute;
  top: 82px;
  left: 50%;
  min-width: 230px;
  padding: 10px;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.dropdown:hover .dropdown-menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  text-transform: none;
}

.dropdown-menu a:hover {
  color: var(--navy);
  background: #eef7fa;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  padding: 82px 0 70px;
  background: radial-gradient(circle at 85% 18%, rgba(41, 182, 232, 0.18), transparent 28%), var(--white);
  color: var(--ink);
}

.hero-grid,
.page-hero-grid,
.split,
.contact-grid,
.differ-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p,
.section-heading p,
.split p {
  color: var(--muted);
  font-size: 17px;
}

.hero-copy p {
  color: var(--muted);
}

.hero-copy h1 span,
.blue-text {
  color: #0758ff;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #0758ff;
  background: #eef4ff;
  font-weight: 800;
  font-size: 13px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.primary {
  color: var(--white);
  background: var(--orange);
}

.btn.primary:hover {
  background: #e85f00;
  transform: translateY(-2px);
}

.btn.secondary {
  color: #0758ff;
  border-color: #0758ff;
  background: var(--white);
}

.device-showcase {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-illustration img {
  width: min(620px, 100%);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(6, 62, 92, 0.18);
}

.dot-pattern {
  position: absolute;
  inset: 0 0 auto auto;
  width: 220px;
  height: 180px;
  opacity: 0.38;
  background-image: radial-gradient(#0758ff 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

.desktop-frame {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 16px;
  border: 12px solid #0b1020;
  border-radius: 24px 24px 10px 10px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(6, 62, 92, 0.22);
  transform: rotate(4deg);
}

.desktop-screen {
  min-height: 270px;
  padding: 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f8fbff, #eef4ff);
}

.desktop-screen h3 {
  max-width: 260px;
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.12;
}

.screen-bars {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.screen-bars span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0758ff, var(--sky));
}

.screen-bars span:nth-child(2) {
  width: 70%;
}

.screen-bars span:nth-child(3) {
  width: 46%;
  background: var(--teal);
}

.phone-frame {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 18px;
  width: 138px;
  padding: 12px;
  border: 9px solid #0b1020;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone-frame h4 {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.15;
}

.phone-chart {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 62px;
  margin-top: 14px;
}

.phone-chart span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--teal), #0758ff);
}

.phone-chart span:nth-child(1) { height: 35%; }
.phone-chart span:nth-child(2) { height: 58%; }
.phone-chart span:nth-child(3) { height: 45%; }
.phone-chart span:nth-child(4) { height: 82%; }

.floating-check {
  position: absolute;
  z-index: 4;
  right: 126px;
  bottom: 128px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0758ff;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-feature-row,
.hero-stat-row,
.about-stat-row,
.contact-benefits {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(3, 47, 70, 0.08);
}

.hero-feature-row {
  grid-template-columns: repeat(5, 1fr);
  max-width: 640px;
  margin-top: 34px;
  box-shadow: none;
  border: 0;
}

.hero-feature-row div,
.hero-stat-row div,
.about-stat-row div,
.contact-benefits div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.hero-feature-row div {
  padding-left: 0;
}

.hero-feature-row div:last-child,
.hero-stat-row div:last-child,
.about-stat-row div:last-child,
.contact-benefits div:last-child {
  border-right: 0;
}

.mini-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 12px;
  color: #0758ff;
  background: #eef4ff;
  font-size: 20px;
}

.hero-feature-row strong,
.hero-stat-row strong,
.about-stat-row strong,
.contact-benefits strong {
  display: block;
  color: var(--ink);
  line-height: 1.2;
}

.hero-feature-row span,
.hero-stat-row span,
.about-stat-row span,
.contact-benefits span {
  color: var(--muted);
  font-size: 13px;
}

.hero-stat-row,
.about-stat-row {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 36px;
}

.hero-stat-row strong,
.about-stat-row strong {
  color: #0758ff;
  font-size: 28px;
}

.about-hero {
  padding: 74px 0 38px;
  background: radial-gradient(circle at 90% 20%, rgba(7, 88, 255, 0.08), transparent 26%), var(--white);
}

.about-hero-card {
  position: relative;
}

.about-hero-card::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  width: 210px;
  height: 170px;
  border-radius: 14px;
  background: #0758ff;
}

.about-hero-card img {
  position: relative;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.experience-card {
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 120px;
  padding: 22px 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.experience-card strong {
  display: block;
  color: #0758ff;
  font-size: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.value-tile {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.value-tile h3 {
  margin: 0 0 6px;
}

.value-tile p {
  margin: 0;
  color: var(--muted);
}

.story-card {
  position: relative;
}

.story-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.story-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 12px;
  color: var(--white);
  background: #0758ff;
  box-shadow: var(--shadow);
}

.play-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  border-radius: 50%;
  color: #0758ff;
  background: var(--white);
}

.team-strip {
  display: grid;
  grid-template-columns: 1.6fr repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 14px;
  background: #f4f8ff;
}

.team-mini {
  text-align: center;
}

.team-mini img {
  width: 62px;
  height: 62px;
  margin: 0 auto 8px;
  border-radius: 50%;
  object-fit: cover;
}

.team-mini strong {
  display: block;
  font-size: 13px;
}

.team-mini span {
  color: var(--muted);
  font-size: 11px;
}

.contact-hero {
  padding: 78px 0 42px;
  background: radial-gradient(circle at 50% 45%, rgba(7, 88, 255, 0.08), transparent 26%), var(--white);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr 1fr;
  gap: 38px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.contact-list-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.contact-list-item i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0758ff;
  background: #eef4ff;
  font-size: 22px;
}

.contact-list-item strong {
  display: block;
}

.contact-list-item span {
  color: var(--muted);
  font-size: 14px;
}

.mail-illustration {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.mail-envelope {
  position: relative;
  width: 240px;
  height: 170px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0758ff, var(--sky));
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}

.mail-envelope::before {
  content: "";
  position: absolute;
  inset: 18px 28px auto;
  height: 105px;
  border-radius: 12px;
  background: var(--white);
  transform: translateY(-42px);
  box-shadow: 0 12px 28px rgba(3, 47, 70, 0.08);
}

.mail-envelope::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 35%, 50% 72%, 100% 35%, 100% 100%, 0 100%);
  border-radius: 22px;
  background: linear-gradient(135deg, #0b61ff, #4aa9ff);
}

.orbit-icon {
  position: absolute;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0758ff;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 22px;
}

.orbit-icon.one { left: 34px; top: 110px; }
.orbit-icon.two { right: 26px; bottom: 92px; }

.contact-card-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card-form h2 {
  margin: 0 0 10px;
}

.form-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-card-form input,
.contact-card-form select,
.contact-card-form textarea {
  width: 100%;
  margin: 0 0 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-card-form textarea {
  min-height: 130px;
}

.contact-card-form button {
  width: 100%;
}

.contact-benefits {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
}

.contact-cta-strip {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 36px 44px;
  border-radius: 18px;
  background: #eef4ff;
}

.contact-cta-strip h2 {
  margin: 0 0 8px;
}

.contact-cta-strip p {
  margin: 0;
  color: var(--muted);
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 18px;
  align-items: end;
}

.hero-media img,
.page-hero img,
.contact-info img,
.image-stack img {
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.hero-media img:first-child {
  aspect-ratio: 4 / 3;
}

.hero-media img:last-child {
  aspect-ratio: 3 / 4;
  transform: translateY(30px);
}

.section {
  padding: 76px 0;
}

.section.soft,
.page-hero,
.clients-section {
  background: var(--soft);
}

.page-hero {
  padding: 68px 0;
}

.page-hero.compact {
  text-align: center;
}

.page-hero.compact p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.split h2,
.cta h2,
.differ-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading h2 span,
.differ-copy h2 span {
  color: var(--orange);
}

.title-line {
  width: 70px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--navy);
  position: relative;
}

.title-line::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--orange);
}

.cards,
.service-grid {
  display: grid;
  gap: 26px;
}

.cards.three,
.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.service-card,
.value-card,
.portfolio-item,
.contact-form,
.contact-info,
.process-step {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.card,
.service-card,
.portfolio-item {
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(3, 47, 70, 0.06);
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card h3,
.card h2,
.value-card h3,
.portfolio-item h2,
.contact-info h2,
.process-step h3 {
  margin: 20px 20px 8px;
  line-height: 1.25;
  letter-spacing: 0;
}

.card p,
.value-card p,
.portfolio-item p,
.process-step p {
  margin: 0 20px 22px;
  color: var(--muted);
}

.service-card {
  min-height: 272px;
  padding: 28px 26px;
  text-align: center;
  transition: 0.25s ease;
}

.service-card.featured {
  text-align: left;
}

.service-card.featured .icon-badge {
  margin-bottom: 22px;
}

.service-detail-hero {
  background:
    linear-gradient(90deg, rgba(3, 47, 70, 0.94), rgba(6, 62, 92, 0.76)),
    var(--hero-image) center/cover;
  color: var(--white);
}

.service-detail-hero p {
  color: #e4f3f8;
}

.detail-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.detail-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(3, 47, 70, 0.06);
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(3, 47, 70, 0.06);
  text-align: center;
}

.team-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card h3 {
  margin: 18px 16px 4px;
}

.team-card p {
  margin: 0 16px 20px;
  color: var(--orange);
  font-weight: 800;
}

.team-showcase {
  padding: 76px 0;
  background: radial-gradient(circle at 20% 12%, rgba(41, 182, 232, 0.22), transparent 38%), linear-gradient(180deg, #032233, #021926);
  color: #d7edf7;
}

.team-showcase .section-heading h2 {
  color: var(--white);
}

.team-showcase .section-heading p {
  color: #c0d7e2;
}

.team-showcase .team-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  text-align: left;
}

.team-showcase .team-card img {
  border-radius: 14px 14px 0 0;
  object-position: center top;
}

.team-showcase .team-card h3 {
  margin: 16px 18px 6px;
  color: var(--white);
  font-size: 18px;
}

.team-showcase .team-card p {
  margin: 0 18px 20px;
  color: #c0d7e2;
  font-weight: 700;
}

.ceo-quote {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 38px;
  align-items: center;
  padding: 34px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
}

.ceo-quote img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
}

.ceo-quote blockquote {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
}

.ceo-quote cite {
  display: block;
  margin-top: 20px;
  color: #9de6d9;
  font-style: normal;
  font-weight: 800;
}

.contact-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.contact-feature div {
  padding: 22px;
  border-radius: 4px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--sky));
  box-shadow: var(--shadow);
}

.contact-feature i {
  display: block;
  margin-bottom: 12px;
  color: #ffd7bd;
  font-size: 24px;
}

.landing-hero-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.landing-hero-panel h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.landing-hero-panel ul,
.package-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.landing-hero-panel li {
  margin: 10px 0;
  color: #e4f3f8;
}

.landing-hero-panel li i {
  color: #8ce0d0;
  margin-right: 8px;
}

.feature-grid,
.tech-grid,
.pricing-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tech-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-grid,
.testimonial-grid,
.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-box,
.tech-pill,
.package-card,
.testimonial-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(3, 47, 70, 0.06);
}

.feature-box,
.testimonial-card,
.faq-item {
  padding: 24px;
}

.feature-box i {
  color: var(--orange);
  font-size: 30px;
}

.feature-box h3,
.testimonial-card h3,
.faq-item h3 {
  margin: 14px 0 8px;
}

.feature-box p,
.testimonial-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.tech-pill {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.tech-pill i {
  font-size: 22px;
  color: #0758ff;
}

.tech-pill span {
  display: inline-block;
}

.testimonial-user {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0758ff;
  background: #eef4ff;
  font-size: 18px;
}

.testimonial-user h3 {
  margin: 0;
}

.testimonial-user span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.package-card {
  padding: 28px;
}

.package-card.featured-package {
  border-color: var(--orange);
  transform: translateY(-8px);
}

.package-card h3 {
  margin: 0 0 8px;
}

.price {
  display: block;
  margin: 10px 0 18px;
  color: var(--orange);
  font-size: 32px;
  font-weight: 900;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  margin: 11px 0;
  color: var(--muted);
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--teal);
  color: var(--teal);
  font-weight: 900;
}

.package-card .btn {
  width: 100%;
  margin-top: 18px;
}

.package-card.package-v2 {
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
}

.package-card.package-v2.featured-package {
  transform: translateY(-8px);
}

.package-card.package-v2 .package-top {
  position: relative;
  padding: 22px 22px 18px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #0c7a63, #2ac57a);
}

.package-card.package-v2.plan-premium .package-top {
  background: linear-gradient(135deg, #0b61ff, #29b6e8);
}

.package-card.package-v2.plan-custom .package-top {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

.package-card.package-v2 .package-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 22px;
}

.package-card.package-v2 .package-top h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0;
}

.package-card.package-v2 .package-top p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 13px;
}

.package-card.package-v2 .package-price {
  margin-top: 14px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.package-card.package-v2 .package-note {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0.95;
}

.package-card.package-v2 .package-ribbon {
  position: absolute;
  top: 14px;
  right: -42px;
  width: 150px;
  padding: 6px 0;
  background: rgba(0, 0, 0, 0.22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  transform: rotate(45deg);
}

.package-card.package-v2 .package-body {
  padding: 20px 22px 22px;
}

.package-card.package-v2 .package-section-title {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 88, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.package-card.package-v2.plan-basic .package-section-title {
  background: rgba(12, 122, 99, 0.95);
}

.package-card.package-v2.plan-custom .package-section-title {
  background: rgba(124, 58, 237, 0.95);
}

.package-card.package-v2 ul {
  margin-top: 16px;
}

.package-card.package-v2 li {
  margin: 10px 0;
  color: var(--muted);
}

.package-card.package-v2 li::before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #16b89a;
  top: 6px;
}

.package-card.package-v2.plan-premium li::before {
  background: #0b61ff;
}

.package-card.package-v2.plan-custom li::before {
  background: #7c3aed;
}

.pricing-highlights {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pricing-highlights.pricing-highlights-5 {
  grid-template-columns: repeat(5, 1fr);
}

.pricing-highlight {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(3, 47, 70, 0.05);
}

.pricing-highlight-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0758ff;
  background: #eef4ff;
  font-size: 20px;
}

.pricing-highlight div strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.pricing-highlight div span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.lead-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.lead-card {
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.lead-card p {
  color: #d7edf7;
}

.final-banner {
  padding: 44px;
  border-radius: 4px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 47, 70, 0.94), rgba(6, 62, 92, 0.82)),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1600&q=80") center/cover;
  text-align: center;
}

.final-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.final-banner p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #e4f3f8;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 30px;
  align-items: start;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.filter-row a {
  padding: 10px 18px;
  border-radius: 8px;
  background: #eef4ff;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}

.filter-row a.active {
  color: var(--white);
  background: #0758ff;
}

.portfolio-card-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-project,
.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(3, 47, 70, 0.06);
}

.portfolio-project img,
.article-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.portfolio-project .tag,
.article-card .tag {
  display: inline-flex;
  margin: -18px 16px 10px;
  position: relative;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--white);
  background: #0758ff;
  font-size: 12px;
  font-weight: 900;
}

.portfolio-project h3,
.article-card h3 {
  margin: 0 16px 8px;
  line-height: 1.3;
}

.portfolio-project p,
.article-card p {
  margin: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

.portfolio-project a,
.article-card a {
  display: inline-flex;
  margin: 0 16px 18px;
  padding: 8px 12px;
  border: 1px solid #0758ff;
  border-radius: 6px;
  color: #0758ff;
  font-weight: 800;
  font-size: 13px;
}

.side-panel {
  display: grid;
  gap: 22px;
}

.side-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(3, 47, 70, 0.06);
}

.side-box h3 {
  margin: 0 0 18px;
}

.side-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  margin: 16px 0;
}

.side-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #0758ff;
  background: #eef4ff;
}

.side-item strong {
  display: block;
  font-size: 14px;
}

.side-item span {
  color: var(--muted);
  font-size: 12px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: center;
}

.tool-grid i {
  display: block;
  margin-bottom: 6px;
  color: #0758ff;
  font-size: 24px;
}

.tool-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.article-meta {
  display: flex;
  gap: 14px;
  margin: 0 16px 10px;
  color: var(--muted);
  font-size: 12px;
}

.author-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  margin: 0 16px 18px;
}

.author-row img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-row strong {
  display: block;
  font-size: 13px;
}

.author-row span {
  color: var(--muted);
  font-size: 11px;
}

.service-project-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.service-project-row .portfolio-project {
  min-width: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: #b6dfe7;
}

.icon-badge {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--sky));
  font-size: 29px;
  font-weight: 900;
  animation: floatIcon 3s ease-in-out infinite;
}

.service-card:nth-child(2n) .icon-badge {
  background: linear-gradient(135deg, var(--orange), #ff9d3f);
  animation-delay: 0.35s;
}

.service-card:nth-child(3n) .icon-badge {
  background: linear-gradient(135deg, var(--teal), #6ed6c6);
  animation-delay: 0.7s;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.read-more {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 4px;
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.differ-list {
  display: grid;
  gap: 26px;
}

.differ-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
}

.differ-item .icon-badge {
  margin: 0;
}

.differ-item h3 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 500;
}

.differ-item p {
  margin: 0;
  color: var(--muted);
}

.image-stack {
  position: relative;
  min-height: 380px;
}

.image-stack img {
  position: absolute;
  width: 62%;
  aspect-ratio: 4 / 3;
}

.image-stack img:nth-child(1) {
  top: 0;
  left: 0;
}

.image-stack img:nth-child(2) {
  top: 38px;
  right: 0;
}

.image-stack img:nth-child(3) {
  left: 14%;
  bottom: 0;
}

.clients-grid,
.badges-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.client-logo,
.trust-badge {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: #6d7788;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 6px 16px rgba(3, 47, 70, 0.04);
}

.client-logo img {
  width: auto;
  max-width: 132px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.82;
  transition: 0.2s ease;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.client-logo i {
  font-size: 34px;
  color: #6d7788;
  transition: 0.2s ease;
}

.client-logo .client-text {
  font-size: 18px;
  color: #6d7788;
}

.client-logo:hover i {
  transform: scale(1.06);
}

.client-logo.google svg {
  width: 40px;
  height: 40px;
}

.client-logo.microsoft svg {
  width: 40px;
  height: 40px;
}

.client-logo.amazon i { color: #111827; }
.client-logo.shopify i { color: #95BF47; }
.client-logo.hubspot i { color: #FF7A59; }
.client-logo.salesforce i { color: #00A1E0; }
.client-logo.adobe i { color: #FF0000; }
.client-logo.meta i { color: #0866FF; }
.client-logo.slack i { color: #4A154B; }
.client-logo.stripe i { color: #635BFF; }
.client-logo.wordpress i { color: #21759B; }
.client-logo.figma i { color: #F24E1E; }

.trust-badge {
  min-height: 56px;
  color: var(--navy);
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: #344054;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--orange);
}

.stats-panel,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stats-panel div,
.process-step {
  padding: 24px;
}

.stats-panel div {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.stats-panel strong {
  display: block;
  color: var(--orange);
  font-size: 40px;
  line-height: 1;
}

.stats-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.process-grid.compact {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

.process-grid.compact .process-step {
  padding: 18px;
}

.process-grid.compact .icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 0;
  font-size: 18px;
  animation: none;
}

.process-grid.compact .process-step h3 {
  margin: 14px 0 6px;
}

.process-grid.compact .process-step p {
  margin: 0;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
}

.cta .eyebrow {
  color: #8ce0d0;
}

.cta h2 {
  margin-bottom: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.portfolio-item img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.portfolio-item span,
.post-meta {
  display: block;
  margin: 20px 20px 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 20px 22px;
}

.portfolio-tags em {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--navy);
  background: #eef7fa;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.post a {
  display: inline-block;
  margin: 0 20px 22px;
  color: var(--orange);
  font-weight: 800;
}

.contact-grid {
  align-items: start;
}

.contact-info {
  overflow: hidden;
}

.contact-info div {
  padding: 6px 0 22px;
}

.contact-info p {
  margin: 8px 20px;
  color: var(--muted);
}

.contact-form {
  padding: 30px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #344054;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid #cfd7e3;
  border-radius: 4px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255, 107, 0, 0.16);
  border-color: var(--orange);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 72px 0 24px;
  color: #d7edf7;
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 42px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-tagline {
  background: var(--sky);
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 20px;
}

.site-footer a {
  display: block;
  margin: 10px 0;
  color: #e5f6fb;
}

.site-footer a:hover {
  color: var(--orange);
}

.site-footer p {
  margin: 10px 0;
  color: #c0d7e2;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-row a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sky);
  font-size: 12px;
  font-weight: 900;
}

.development-credit {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  color: #9fc0d0;
  text-align: center;
  font-size: 14px;
}

.footer-badges {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-badges .badges-row {
  grid-template-columns: repeat(5, 1fr);
}

.footer-badges .trust-badge {
  padding: 12px;
}

.footer-badges .trust-badge a {
  display: grid;
  place-items: center;
  gap: 8px;
  margin: 0;
  color: inherit;
}

.footer-badges .trust-badge a:hover {
  color: inherit;
}

.footer-badges .trust-badge img {
  width: auto;
  max-width: 140px;
  max-height: 38px;
  object-fit: contain;
}

.footer-badges .trust-badge i {
  font-size: 28px;
  color: #0758ff;
}

.footer-badges .trust-badge.google svg {
  width: 28px;
  height: 28px;
}

.footer-badges .trust-badge.seo i { color: #FF6B00; }
.footer-badges .trust-badge.meta i { color: #0866FF; }
.footer-badges .trust-badge.msme i { color: #FF6B00; }
.footer-badges .trust-badge.secure i { color: #16b89a; }

.footer-badges .trust-badge span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.footer-badges .trust-badge.google span { color: #1f2937; }

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

@media (max-width: 980px) {
  .navbar {
    min-height: 82px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .dropdown-label {
    width: 100%;
    padding: 13px 14px;
    text-align: left;
  }

  .nav-links a::after,
  .dropdown-label::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-grid,
  .portfolio-grid,
  .differ-grid,
  .contact-hero-grid,
  .portfolio-layout {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.four,
  .service-grid,
  .footer-grid,
  .clients-grid,
  .team-grid,
  .contact-feature,
  .hero-stat-row,
  .about-stat-row,
  .hero-feature-row,
  .contact-benefits,
  .team-strip,
  .values-grid,
  .feature-grid,
  .tech-grid,
  .pricing-grid,
  .testimonial-grid,
  .faq-grid,
  .portfolio-card-grid,
  .article-grid,
  .service-project-row,
  .lead-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 56px;
  }

  .desktop-frame {
    transform: none;
  }

  .phone-frame {
    right: 18px;
  }

  .contact-cta-strip {
    grid-template-columns: 1fr;
  }

  .pricing-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-tagline {
    font-size: 8px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-media img:last-child {
    transform: none;
  }

  .section,
  .page-hero {
    padding: 50px 0;
  }

  .cards.three,
  .cards.four,
  .service-grid,
  .stats-panel,
  .process-grid,
  .footer-grid,
  .clients-grid,
  .team-grid,
  .contact-feature,
  .hero-stat-row,
  .about-stat-row,
  .hero-feature-row,
  .contact-benefits,
  .team-strip,
  .values-grid,
  .form-grid-two,
  .feature-grid,
  .tech-grid,
  .pricing-grid,
  .testimonial-grid,
  .faq-grid,
  .portfolio-card-grid,
  .article-grid,
  .service-project-row,
  .lead-section,
  .footer-badges .badges-row {
    grid-template-columns: 1fr;
  }

  .package-card.featured-package {
    transform: none;
  }

  .pricing-highlights {
    grid-template-columns: 1fr;
  }

  .ceo-quote {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .ceo-quote blockquote {
    font-size: 22px;
  }

  .differ-item {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: auto;
  }

  .image-stack img {
    position: static;
    width: 100%;
    margin-bottom: 14px;
  }

  .cta {
    display: block;
    padding: 28px;
  }

  .cta .btn {
    width: 100%;
    margin-top: 20px;
  }

  .device-showcase {
    min-height: 360px;
  }

  .phone-frame {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -70px;
    justify-self: end;
  }

  .floating-check {
    right: 40px;
    bottom: 110px;
  }

  .about-hero-card::before {
    display: none;
  }

  .experience-card {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .story-overlay {
    position: static;
    margin-top: 16px;
  }

  .contact-cta-strip {
    padding: 28px;
  }
}
