:root {
  --blue: #2563eb;
  --blue-dark: #0f172a;
  --blue-mid: #1d4ed8;
  --blue-soft: #dbeafe;
  --cyan: #38bdf8;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #eef2f7;
  --gray-200: #e2e8f0;
  --gray-text: #64748b;
  --ink: #111827;
  --mint: #14b8a6;
  --amber: #f59e0b;
  --rose: #fb7185;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--blue-dark);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--blue-dark);
  color: var(--white);
  padding: 10px 16px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.94);
}

.navbar {
  width: min(100% - 40px, var(--container));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-dark);
  border: 1px solid rgba(37, 99, 235, 0.28);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
  overflow: hidden;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  border-radius: 0 0 5px 0;
}

.brand-mark svg {
  position: relative;
  z-index: 1;
  width: 33px;
  height: 33px;
}

.logo-path {
  fill: none;
  stroke: var(--white);
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-accent {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-dot {
  fill: var(--white);
}

.brand-text {
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
  letter-spacing: 0;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  color: #334155;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 160ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--gray-50);
}

.language-btn {
  min-width: 42px;
  min-height: 34px;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-btn.is-active {
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-dark);
  transition: transform 200ms ease, opacity 200ms ease;
}

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

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  color: var(--blue-dark);
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.34);
}

.btn-secondary {
  background: var(--white);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: rgba(37, 99, 235, 0.34);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.btn-large {
  min-height: 56px;
  padding: 0 28px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 88px;
  overflow: hidden;
  background:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #eef7ff 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: 140px;
  width: 520px;
  height: 230px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.1));
  transform: rotate(-18deg);
  border-radius: 42px;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-corner,
.hero-wire,
.hero-tile {
  position: absolute;
  display: block;
}

.hero-corner {
  width: 88px;
  height: 88px;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-right: 0;
  border-bottom: 0;
  border-radius: 18px 0 0 0;
  animation: cornerDrift 9s ease-in-out infinite;
}

.hero-corner-one {
  left: 7vw;
  top: 22%;
}

.hero-corner-two {
  right: 8vw;
  bottom: 22%;
  transform: rotate(180deg);
  animation-delay: 1.8s;
}

.hero-wire {
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.42), transparent);
  animation: wireGlide 7s ease-in-out infinite;
}

.hero-wire-one {
  top: 30%;
  left: 42%;
  transform: rotate(-8deg);
}

.hero-wire-two {
  left: 8%;
  bottom: 19%;
  width: 190px;
  transform: rotate(7deg);
  animation-delay: 2.4s;
}

.hero-tile {
  width: 96px;
  height: 58px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  animation: tileFloat 8s ease-in-out infinite;
}

.hero-tile::before,
.hero-tile::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 5px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.22);
}

.hero-tile::before {
  top: 16px;
}

.hero-tile::after {
  top: 30px;
  right: 36px;
  background: rgba(56, 189, 248, 0.32);
}

.hero-tile-one {
  top: 19%;
  right: 33%;
}

.hero-tile-two {
  left: 36%;
  bottom: 13%;
  width: 78px;
  height: 50px;
  animation-delay: 1.2s;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  align-items: center;
  gap: 72px;
}

@keyframes cornerDrift {
  0%,
  100% {
    opacity: 0.42;
    translate: 0 0;
  }
  50% {
    opacity: 0.86;
    translate: 10px -12px;
  }
}

@keyframes wireGlide {
  0%,
  100% {
    opacity: 0.28;
    scale: 0.74 1;
  }
  50% {
    opacity: 0.78;
    scale: 1 1;
  }
}

@keyframes tileFloat {
  0%,
  100% {
    opacity: 0.48;
    translate: 0 0;
  }
  50% {
    opacity: 0.86;
    translate: 0 -14px;
  }
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--blue-mid);
  background: rgba(219, 234, 254, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--blue-dark);
}

h1 {
  max-width: 760px;
  font-size: 4rem;
}

h2 {
  font-size: 2.65rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  color: var(--gray-text);
}

.hero-lead {
  max-width: 660px;
  margin-top: 24px;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 570px;
  margin-top: 38px;
}

.proof-row div {
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.proof-row strong {
  display: block;
  color: var(--blue);
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
}

.proof-row span {
  display: block;
  color: var(--gray-text);
  font-weight: 700;
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-photo img {
  width: min(100%, 620px);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.visual-grid {
  position: absolute;
  inset: 28px 20px auto auto;
  width: 370px;
  height: 370px;
  opacity: 0.58;
  background:
    linear-gradient(rgba(37, 99, 235, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 30px;
  transform: rotate(8deg);
}

.laptop {
  position: absolute;
  inset: 82px 0 auto auto;
  width: min(100%, 530px);
  min-height: 360px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 28px;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-bar span:nth-child(1) {
  background: var(--rose);
}

.browser-bar span:nth-child(2) {
  background: var(--amber);
}

.browser-bar span:nth-child(3) {
  background: var(--mint);
}

.screen-content {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  min-height: 282px;
  border-radius: 20px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(29, 78, 216, 0.9)),
    var(--blue-dark);
}

.screen-sidebar {
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(180deg, transparent 0 20px, rgba(255, 255, 255, 0.1) 20px 21px);
}

.screen-main {
  padding: 12px 0;
}

.screen-pill,
.screen-title,
.screen-text,
.screen-cards span {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.screen-pill {
  width: 104px;
  height: 20px;
  background: rgba(56, 189, 248, 0.82);
}

.screen-title {
  width: 86%;
  height: 34px;
  margin-top: 26px;
}

.screen-text {
  width: 72%;
  height: 12px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.screen-text.small {
  width: 58%;
  margin-top: 10px;
}

.screen-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.screen-cards span {
  height: 82px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.86);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  animation: float 4.8s ease-in-out infinite;
}

.floating-card strong {
  font-size: 0.92rem;
  white-space: nowrap;
}

.mini-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.float-one {
  top: 26px;
  right: 52px;
}

.float-two {
  top: 250px;
  left: 0;
  animation-delay: 0.8s;
}

.float-three {
  right: 0;
  bottom: 52px;
  animation-delay: 1.4s;
}

.float-four {
  left: 62px;
  bottom: 8px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.section-heading p:not(.section-kicker),
.why-copy > p,
.faq-intro > p,
.about-copy > p,
.cta-panel > p {
  margin-top: 18px;
  font-size: 1.05rem;
}

.services-section,
.pricing-section,
.faq-section {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.process-step,
.portfolio-card,
.pricing-card,
.faq-item {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card {
  min-height: 246px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow-md);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, var(--mint), var(--cyan));
}

.service-card:nth-child(3) .service-icon,
.service-card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, var(--amber), var(--rose));
}

.service-card h3,
.process-step h3,
.pricing-card h3,
.portfolio-card h3 {
  margin-bottom: 12px;
}

.why-section {
  position: relative;
  background:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    var(--white);
  background-size: 54px 54px;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-copy .btn {
  margin-top: 30px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 96px;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.why-item span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--blue), var(--cyan));
  position: relative;
}

.why-item span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.why-item p {
  color: #334155;
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  position: relative;
  min-height: 256px;
  padding: 30px;
  overflow: hidden;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 5px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue-mid);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.portfolio-section {
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.42), rgba(248, 250, 252, 0.88)),
    var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card > div:last-child {
  padding: 24px;
}

.portfolio-card p {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card span {
  color: var(--gray-text);
}

.portfolio-preview {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: var(--blue-soft);
}

.portfolio-preview-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}

.portfolio-preview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 42%, rgba(15, 23, 42, 0.18));
  pointer-events: none;
}

.portfolio-preview::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.26);
}

.portfolio-preview-image::before {
  display: none;
}

.portfolio-preview span {
  position: absolute;
  display: block;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.portfolio-preview span:nth-child(1) {
  left: 52px;
  top: 52px;
  width: 42%;
  height: 18px;
}

.portfolio-preview span:nth-child(2) {
  left: 52px;
  top: 88px;
  width: 62%;
  height: 56px;
}

.portfolio-preview span:nth-child(3) {
  right: 52px;
  bottom: 42px;
  width: 30%;
  height: 72px;
}

.preview-cleaning {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.78), rgba(56, 189, 248, 0.68)),
    var(--blue);
}

.preview-construction {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(245, 158, 11, 0.74)),
    var(--amber);
}

.preview-photo {
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.76), rgba(251, 113, 133, 0.66)),
    var(--mint);
}

.preview-local {
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.78), rgba(20, 184, 166, 0.72)),
    var(--blue-mid);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: 0 28px 80px rgba(37, 99, 235, 0.16);
  transform: translateY(-10px);
}

.plan-badge {
  position: absolute;
  right: 24px;
  top: 24px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin: 14px 0 14px;
  color: var(--blue);
  font-family: "Poppins", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-weight: 700;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue-soft);
}

.pricing-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 4px;
  height: 8px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-dark);
  box-shadow: var(--shadow-md);
}

.about-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0) 44%, rgba(15, 23, 42, 0.76) 100%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(56, 189, 248, 0.04));
  pointer-events: none;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.about-photo-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.about-photo-badge > span {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.about-photo-badge strong,
.about-photo-badge small {
  display: block;
}

.about-photo-badge strong {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.about-photo-badge small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.about-copy p {
  max-width: 700px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.about-highlights div {
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about-highlights strong,
.about-highlights span {
  display: block;
}

.about-highlights strong {
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
  color: var(--blue-dark);
}

.about-highlights span {
  color: var(--gray-text);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  color: var(--blue-dark);
  text-align: left;
  font-weight: 900;
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 13px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 24px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.final-cta {
  background: var(--white);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 62px;
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow-md);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: 42px;
  width: 300px;
  height: 128px;
  border-radius: 28px;
  background: rgba(56, 189, 248, 0.2);
  transform: rotate(-18deg);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel .section-kicker {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.cta-panel h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--white);
}

.cta-panel p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .btn {
  margin-top: 30px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.site-footer {
  padding: 72px 0 24px;
  background: #07111f;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.85fr;
  gap: 54px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.site-footer .btn-secondary {
  color: var(--blue-dark);
}

.site-footer .btn-secondary:hover,
.site-footer .btn-secondary:focus {
  color: var(--blue);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 92px;
    display: grid;
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nav-links a {
    display: block;
    padding: 12px;
    border-radius: 14px;
    background: var(--gray-50);
  }

  .nav-actions {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-photo {
    min-height: auto;
    justify-content: center;
  }

  .hero-photo img {
    width: min(100%, 760px);
  }

  .laptop {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .float-one {
    right: 12%;
  }

  .float-two {
    left: 6%;
  }

  .float-three {
    right: 8%;
  }

  .float-four {
    left: 12%;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }
}

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

  .navbar {
    min-height: 74px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-text {
    max-width: 180px;
    font-size: 0.92rem;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 58px;
  }

  .hero-ambient {
    opacity: 0.58;
  }

  .hero-corner-one {
    left: 5vw;
    top: 16%;
    width: 62px;
    height: 62px;
  }

  .hero-wire-two {
    left: 42%;
    bottom: 33%;
    width: 120px;
  }

  .hero-corner-two,
  .hero-wire-one,
  .hero-tile-one {
    display: none;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .nav-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .nav-actions .btn {
    width: 100%;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-photo img {
    border-radius: 22px;
  }

  .visual-grid {
    width: 260px;
    height: 260px;
  }

  .laptop {
    width: 100%;
    min-height: 288px;
    padding: 12px;
    border-radius: 22px;
    inset: 58px auto auto 50%;
  }

  .screen-content {
    grid-template-columns: 64px 1fr;
    min-height: 226px;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
  }

  .screen-cards {
    gap: 8px;
    margin-top: 28px;
  }

  .screen-cards span {
    height: 58px;
  }

  .floating-card {
    min-height: 50px;
    padding: 9px 12px;
    border-radius: 16px;
  }

  .floating-card strong {
    font-size: 0.78rem;
  }

  .mini-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 0.62rem;
  }

  .float-one {
    top: 10px;
    right: 6px;
  }

  .float-two {
    top: 210px;
    left: 0;
  }

  .float-three {
    right: 0;
    bottom: 18px;
  }

  .float-four {
    left: 12px;
    bottom: -18px;
  }

  .services-grid,
  .pricing-grid,
  .process-grid,
  .portfolio-grid,
  .why-list,
  .about-highlights,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step,
  .pricing-card {
    min-height: auto;
  }

  .portfolio-preview {
    min-height: 205px;
  }

  .about-panel {
    min-height: 360px;
    border-radius: 24px;
  }

  .cta-panel {
    padding: 42px 22px;
    border-radius: 24px;
  }
}

@media (max-width: 460px) {
  .nav-panel {
    left: 14px;
    right: 14px;
    padding: 18px;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .language-switch {
    width: 100%;
  }

  .language-btn {
    flex: 1;
  }

  h1 {
    font-size: 2.12rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .float-four {
    display: none;
  }
}
