:root {
  --bg: #06111f;
  --bg-soft: #0d1b2f;
  --surface: #ffffff;
  --surface-soft: #f3f7fb;
  --line: rgba(16, 35, 56, 0.1);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #0b1522;
  --text-soft: #607086;
  --text-light: rgba(255, 255, 255, 0.72);
  --white: #ffffff;
  --primary: #2f7cf6;
  --primary-dark: #205fd3;
  --accent: #7be1c7;
  --shadow: 0 28px 70px rgba(5, 18, 34, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  background: rgba(6, 17, 31, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  border-radius: 22px;
  overflow: hidden;
}

.brand-logo {
  height: 60px;
  width: auto;
  border-radius: 18px;
  object-fit: contain;
  display: block;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.footer-logo {
  height: 34px;
  width: auto;
}

.site-header.scrolled .brand-logo {
  height: 54px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #5f9cff);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(47, 124, 246, 0.22);
}

.header-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(47, 124, 246, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-light {
  background: #ffffff;
  color: #0b1522;
  box-shadow: 0 18px 36px rgba(8, 17, 30, 0.22);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 17, 31, 0.95), rgba(10, 22, 39, 0.88));
  color: var(--white);
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 17, 31, 0.92) 26%, rgba(6, 17, 31, 0.5) 62%, rgba(6, 17, 31, 0.82) 100%),
    radial-gradient(circle at 78% 18%, rgba(47, 124, 246, 0.24), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(123, 225, 199, 0.08), transparent 30%),
    url("../img/hero-bg.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
  padding: 142px 0 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.eyebrow.small {
  margin-bottom: 8px;
}

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

.hero h1,
.section-head h2,
.about-copy h2,
.metrics-copy h2,
.process-copy h2,
.contact-copy h2,
.cta-inner h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(40px, 5vw, 68px);
}

.hero-text,
.section-head p,
.about-copy p,
.metrics-copy p,
.process-copy p,
.contact-copy p,
.cta-inner p {
  color: var(--text-light);
  line-height: 1.75;
  font-size: 17px;
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
}

.hero-card {
  position: relative;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.main-preview {
  padding: 22px;
}

.hero-card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-card-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.preview-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.preview-head h2 {
  margin: 6px 0 0;
  font-size: 28px;
  line-height: 1.2;
  max-width: 420px;
}

.mini-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(123, 225, 199, 0.14);
  color: #d9fff5;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.preview-screen-wrap {
  margin-top: 22px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(10, 20, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-screen {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  object-position: top center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stat-box,
.metric-panel {
  border-radius: 22px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-box strong,
.metric-panel strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stat-box span,
.metric-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.trust-band {
  position: relative;
  z-index: 2;
  margin-top: -48px;
}

.trust-inner {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 39, 65, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px 30px;
}

.trust-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.logo-strip img {
  width: 100%;
  max-width: 94px;
  margin: 0 auto;
  opacity: 0.62;
  filter: grayscale(1);
}

.section {
  padding: 120px 0;
}

.about-grid,
.metrics-grid,
.process-layout,
.contact-grid {
  display: grid;
  gap: 52px;
  align-items: center;
}

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

.image-stack {
  position: relative;
  padding: 0 56px 54px 0;
}

.image-large,
.image-small,
.media-card img,
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-large {
  aspect-ratio: 0.98 / 0.92;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  aspect-ratio: 0.9 / 1;
  border-radius: 22px;
  border: 8px solid #ffffff;
  box-shadow: 0 18px 45px rgba(6, 17, 31, 0.16);
}

.about-copy h2,
.section-head h2,
.metrics-copy h2,
.process-copy h2,
.contact-copy h2 {
  font-size: clamp(32px, 3vw, 48px);
}

.about-copy p,
.section-head p,
.metrics-copy p,
.process-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--text-soft);
}

.about-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.about-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: var(--surface-soft);
  border-radius: 22px;
  border: 1px solid rgba(19, 52, 84, 0.08);
}

.about-item i,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47, 124, 246, 0.14), rgba(123, 225, 199, 0.18));
  color: var(--primary);
  font-size: 24px;
}

.about-item h3,
.service-card h3,
.process-step h3,
.project-content h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.about-item p,
.service-card p,
.process-step p,
.project-content p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 15px;
}

.section-head {
  max-width: 830px;
}

.services-section {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.services-grid,
.metrics-cards,
.project-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.service-card,
.project-card,
.media-card,
.contact-form,
.metric-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 124, 246, 0.14), transparent 70%);
}

.service-icon {
  margin-bottom: 18px;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.project-card {
  border-radius: 26px;
  overflow: hidden;
}

.project-card img {
  aspect-ratio: 1.1 / 0.78;
}

.project-content {
  padding: 24px;
}

.project-content span {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--primary);
  text-transform: uppercase;
}

.metrics-section {
  position: relative;
  background:
    linear-gradient(110deg, rgba(6, 17, 31, 0.96), rgba(9, 28, 49, 0.9)),
    url("../img/features-bg.jpg") center center / cover no-repeat;
  color: var(--white);
}

.metrics-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

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

.metric-panel {
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}

.process-steps {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.process-step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 24px;
  background: #f7fbff;
  border: 1px solid rgba(16, 35, 56, 0.08);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #66a3ff);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
}

.process-media {
  display: grid;
  gap: 20px;
}

.media-card {
  border-radius: 28px;
  overflow: hidden;
}

.media-card.large img {
  aspect-ratio: 1 / 1.05;
}

.media-card.small {
  width: 62%;
  margin-left: auto;
}

.media-card.small img {
  aspect-ratio: 1.08 / 0.9;
}

.cta-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10, 22, 39, 0.88), rgba(12, 31, 53, 0.9)),
    url("../img/cta-bg.jpg") center center / cover no-repeat;
  color: var(--white);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 25%, rgba(47, 124, 246, 0.26), transparent 28%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-grid {
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-points div {
  padding: 22px;
  background: #f7fbff;
  border-radius: 22px;
  border: 1px solid rgba(16, 35, 56, 0.08);
}

.contact-points span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.contact-points strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.contact-form {
  padding: 30px;
  border-radius: 28px;
}

.form-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

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

.contact-form label {
  display: block;
}

.contact-form span {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 56, 0.12);
  background: #f7fbff;
  color: var(--text);
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 124, 246, 0.5);
  box-shadow: 0 0 0 4px rgba(47, 124, 246, 0.08);
}

.btn.full {
  width: 100%;
  border: 0;
  cursor: pointer;
  margin-top: 10px;
}

.site-footer {
  padding: 28px 0 36px;
  background: #081726;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: center;
  gap: 20px;
}

.footer-inner p {
  margin: 14px 0 0;
  max-width: 410px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.delay-1 {
  transition-delay: 0.12s;
}

.reveal.delay-2 {
  transition-delay: 0.22s;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .about-grid,
  .metrics-grid,
  .process-layout,
  .contact-grid,
  .trust-inner {
    grid-template-columns: 1fr;
  }

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

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 880px) {
  .site-header {
    padding: 14px 0;
  }

  .mobile-toggle {
    display: inline-block;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(6, 17, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    transform-origin: top;
    transform: scaleY(0.88);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-grid {
    padding-top: 128px;
    gap: 34px;
  }

  .preview-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid,
  .project-grid,
  .metrics-cards,
  .two-col,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .media-card.small {
    width: 78%;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text,
  .section-head p,
  .about-copy p,
  .metrics-copy p,
  .process-copy p,
  .contact-copy p,
  .cta-inner p {
    font-size: 16px;
  }

  .main-preview,
  .service-card,
  .contact-form,
  .project-content,
  .metric-panel {
    padding: 22px;
  }

  .image-stack {
    padding: 0 26px 36px 0;
  }

  .image-small {
    width: 52%;
    border-width: 6px;
  }

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

  .media-card.small {
    width: 100%;
  }

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

  .brand-logo {
    height: 46px;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  body {
    background: #f5f8fc;
  }

  .site-shell {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 10px 0;
    background: rgba(6, 17, 31, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  }

  .site-header.scrolled {
    padding: 8px 0;
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    min-width: auto;
    max-width: 178px;
  }

  .brand-logo {
    height: 42px;
    max-width: 164px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  }

  .site-header.scrolled .brand-logo {
    height: 40px;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-toggle span {
    width: 18px;
    height: 2px;
    margin: 4px auto;
  }

  .main-nav {
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    padding: 10px;
    gap: 4px;
    border-radius: 22px;
    background: rgba(6, 17, 31, 0.96);
    backdrop-filter: blur(18px);
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
  }

  .main-nav a.active,
  .main-nav a:hover {
    background: rgba(47, 124, 246, 0.18);
    color: #ffffff;
  }

  .header-cta {
    display: none !important;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    background: #06111f;
  }

  .hero::after {
    height: 92px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(6, 17, 31, 0.92) 0%, rgba(6, 17, 31, 0.86) 44%, rgba(6, 17, 31, 0.96) 100%),
      radial-gradient(circle at 80% 16%, rgba(47, 124, 246, 0.35), transparent 26%),
      radial-gradient(circle at 12% 70%, rgba(123, 225, 199, 0.14), transparent 28%),
      url("../img/hero-bg.jpg") center top / cover no-repeat;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    padding: 108px 0 82px;
    gap: 28px;
  }

  .hero-copy {
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .hero-text {
    margin-top: 16px;
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.76);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border-radius: 17px;
    font-size: 14px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 22px;
  }

  .hero-points span {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 15px;
    font-size: 12px;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.075);
  }

  .hero-visual {
    width: 100%;
  }

  .main-preview {
    padding: 14px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  }

  .hero-card-top {
    margin-bottom: 14px;
  }

  .preview-head h2 {
    font-size: 20px;
    line-height: 1.25;
    max-width: 100%;
  }

  .mini-label {
    font-size: 10px;
  }

  .preview-screen-wrap {
    margin-top: 16px;
    border-radius: 18px;
  }

  .preview-screen {
    aspect-ratio: 1 / 0.78;
    object-position: top center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .stat-box {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .stat-box strong {
    font-size: 27px;
  }

  .stat-box span {
    margin: 0;
    font-size: 12.5px;
  }

  .trust-band {
    margin-top: -36px;
  }

  .trust-inner {
    padding: 20px;
    border-radius: 24px;
    gap: 18px;
  }

  .trust-copy p {
    font-size: 14.5px;
  }

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .logo-strip img {
    max-width: 76px;
  }

  .section {
    padding: 74px 0;
  }

  .about-grid,
  .process-layout,
  .contact-grid,
  .metrics-grid {
    gap: 30px;
  }

  .section-head {
    max-width: 100%;
  }

  .about-copy h2,
  .section-head h2,
  .metrics-copy h2,
  .process-copy h2,
  .contact-copy h2,
  .cta-inner h2 {
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -0.04em;
  }

  .about-copy p,
  .section-head p,
  .metrics-copy p,
  .process-copy p,
  .contact-copy p,
  .cta-inner p {
    margin-top: 14px;
    font-size: 15.5px;
    line-height: 1.72;
  }

  .image-stack {
    padding: 0;
  }

  .image-large {
    aspect-ratio: 1 / 0.78;
    border-radius: 24px;
  }

  .image-small {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    margin: -42px 0 0 auto;
    border-width: 6px;
    border-radius: 20px;
  }

  .about-list {
    gap: 12px;
    margin-top: 22px;
  }

  .about-item {
    grid-template-columns: 44px 1fr;
    gap: 13px;
    padding: 16px;
    border-radius: 19px;
  }

  .about-item i,
  .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 20px;
  }

  .about-item h3,
  .service-card h3,
  .process-step h3,
  .project-content h3 {
    font-size: 18px;
  }

  .about-item p,
  .service-card p,
  .process-step p,
  .project-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .services-grid,
  .project-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    margin-left: -14px;
    margin-right: -14px;
    padding: 2px 14px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar,
  .project-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .project-card {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .service-card {
    padding: 20px;
    border-radius: 22px;
  }

  .project-card {
    border-radius: 22px;
  }

  .project-card img {
    aspect-ratio: 1 / 0.72;
  }

  .project-content {
    padding: 18px;
  }

  .project-content span {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .metrics-section {
    background:
      linear-gradient(180deg, rgba(6, 17, 31, 0.96), rgba(9, 28, 49, 0.94)),
      url("../img/features-bg.jpg") center center / cover no-repeat;
  }

  .metrics-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .metric-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .metric-panel strong {
    font-size: 28px;
  }

  .metric-panel span {
    font-size: 12px;
    line-height: 1.45;
  }

  .process-steps {
    gap: 12px;
    margin-top: 22px;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .process-step span {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 14px;
  }

  .process-media {
    gap: 12px;
  }

  .media-card {
    border-radius: 22px;
  }

  .media-card.large img {
    aspect-ratio: 1 / 0.78;
  }

  .media-card.small {
    width: 72%;
    margin-top: -42px;
    border: 6px solid #ffffff;
  }

  .media-card.small img {
    aspect-ratio: 1 / 0.82;
  }

  .cta-section {
    padding: 72px 0;
    background:
      linear-gradient(180deg, rgba(10, 22, 39, 0.92), rgba(12, 31, 53, 0.94)),
      url("../img/cta-bg.jpg") center center / cover no-repeat;
  }

  .cta-inner {
    display: grid;
    gap: 24px;
  }

  .cta-inner .btn {
    width: 100%;
    height: 52px;
    border-radius: 18px;
  }

  .contact-section {
    padding-bottom: 96px;
  }

  .contact-points {
    gap: 12px;
    margin-top: 22px;
  }

  .contact-points div {
    padding: 16px;
    border-radius: 19px;
  }

  .contact-points span {
    font-size: 11px;
  }

  .contact-points strong {
    margin-top: 7px;
    font-size: 15.5px;
  }

  .contact-form {
    padding: 18px;
    border-radius: 23px;
  }

  .form-row {
    gap: 12px;
    margin-bottom: 12px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .contact-form span {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 16px;
    padding: 14px;
    font-size: 15px;
  }

  .contact-form textarea {
    min-height: 126px;
  }

  .btn.full {
    height: 52px;
    border-radius: 18px;
  }

  .site-footer {
    padding: 26px 0 88px;
  }

  .footer-inner {
    gap: 18px;
  }

  .footer-logo {
    height: 32px;
  }

  .footer-inner p {
    margin-top: 12px;
    font-size: 14px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer-links a {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
  }

  .footer-copy {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 31px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .service-card,
  .project-card {
    min-width: 88%;
  }

  .metrics-cards {
    grid-template-columns: 1fr;
  }

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

  .process-step span {
    width: 42px;
    height: 42px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .header-cta {
    display: none !important;
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
  }

  .hero-grid {
    padding-top: 96px;
  }

  .contact-section {
    padding-bottom: 74px;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}
@media (max-width: 920px) {
  .header-cta {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
  }

  .hero-grid {
    padding-top: 96px !important;
  }

  .contact-section {
    padding-bottom: 74px !important;
  }

  .site-footer {
    padding-bottom: 36px !important;
  }
}