* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background: #f4f5f9;
  color: #1a1a1a;
}

/* BREADCRUMB */
.breadcrumb-bar {
  width: 100%;
  background: #f3f3f3;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-container a {
  color: #6c63ff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-container .current {
  color: #222;
  font-weight: 500;
}

/* HERO */
.hero-optimization {
  position: relative;
  overflow: hidden;
  padding: 18px 20px 14px;
  background: linear-gradient(180deg, #f7f8fc 0%, #eef1f8 100%);
}

.hero-optimization-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-blur-one {
  top: -60px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.18) 0%, transparent 70%);
}

.hero-blur-two {
  right: -80px;
  top: 30px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.12) 0%, transparent 70%);
}

.hero-optimization-left,
.hero-optimization-right {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(108, 99, 255, 0.14);
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.06);
  backdrop-filter: blur(10px);
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.hero-optimization-left h1 {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.04;
  color: #1a1a2e;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  max-width: 580px;
}

.hero-optimization-left h1 span {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 14px;
  line-height: 1.58;
  color: #555;
  max-width: 580px;
  margin-bottom: 8px;
}

.hero-highlight {
  font-size: 13px;
  line-height: 1.45;
  color: #6c63ff;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 85px; /* increased spacing */
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  padding: 11px 18px;
  text-decoration: none;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.28s, box-shadow 0.28s, background 0.28s, color 0.28s, opacity 0.28s;
}

.btn-primary {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  color: #fff;
  box-shadow: 0 14px 30px rgba(108, 99, 255, 0.2);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(108, 99, 255, 0.26);
}

.btn-outline {
  border: 1px solid rgba(108, 99, 255, 0.35);
  color: #6c63ff;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  transform: translateY(-3px);
  background: #6c63ff;
  color: #fff;
  box-shadow: 0 12px 28px rgba(108, 99, 255, 0.18);
}

.hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 80px; /* more breathing space */
}

.hero-trust-points span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.08);
  border: 1px solid rgba(108, 99, 255, 0.12);
  color: #4b4f63;
  font-size: 11px;
  font-weight: 600;
}

.hero-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT SIDE SHOWCASE */
.hero-dev-showcase {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(45, 43, 85, 0.96) 100%);
  border: 1px solid rgba(108, 99, 255, 0.22);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 20px 44px rgba(26, 26, 46, 0.14);
  position: relative;
  overflow: hidden;
}

.hero-dev-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.14), transparent 30%);
  pointer-events: none;
}

.hero-dev-showcase-top,
.hero-dev-browser,
.hero-dev-bottom-strip {
  position: relative;
  z-index: 2;
}

.hero-dev-showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-dev-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7dbff;
}

.hero-dev-status {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-dev-browser {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero-dev-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.hero-dev-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-dev-browser-bar span:nth-child(1) {
  background: rgba(255, 255, 255, 0.85);
}

.hero-dev-browser-bar span:nth-child(2) {
  background: rgba(108, 99, 255, 0.75);
}

.hero-dev-browser-bar span:nth-child(3) {
  background: rgba(255, 122, 24, 0.75);
}

.hero-dev-browser-body {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 235px;
}

.hero-dev-sidebar {
  padding: 14px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  align-content: start;
  gap: 8px;
}

.hero-dev-sidebar-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.hero-dev-sidebar-line.line-lg {
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.26), rgba(255, 122, 24, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dev-main {
  padding: 14px;
}

.hero-dev-hero-block {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.14), rgba(255, 122, 24, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

.hero-dev-hero-block small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8dcff;
  margin-bottom: 8px;
}

.hero-dev-hero-block strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.hero-dev-hero-block span {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.hero-dev-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hero-dev-feature-card {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dev-feature-card strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #f4f6ff;
  margin-bottom: 5px;
}

.hero-dev-feature-card span {
  display: block;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

.hero-dev-bottom-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.hero-dev-point {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dev-point strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.hero-dev-point span {
  display: block;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

/* POPUP */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 38, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-container {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #555;
}

.popup-container h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.popup-container p {
  font-size: 14px;
  line-height: 1.7;
  color: #5b6072;
  margin-bottom: 18px;
}

.popup-container form {
  display: grid;
  gap: 14px;
}

.popup-container input,
.popup-container select,
.popup-container textarea {
  width: 100%;
  border: 1px solid rgba(108, 99, 255, 0.14);
  background: #f8f9fd;
  color: #1a1a2e;
  border-radius: 16px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
}

.popup-container input:focus,
.popup-container select:focus,
.popup-container textarea:focus {
  border-color: rgba(108, 99, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.12);
}

.popup-container textarea {
  resize: vertical;
  min-height: 120px;
}

.popup-container button[type="submit"] {
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(108, 99, 255, 0.2);
  transition: transform 0.28s, box-shadow 0.28s;
}

.popup-container button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(108, 99, 255, 0.26);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-optimization-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-optimization-left {
    text-align: center;
  }

  .hero-optimization-left h1,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-trust-points {
    justify-content: center;
  }

  .hero-dev-showcase {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .breadcrumb-bar {
    padding: 8px 0;
  }

  .breadcrumb-container {
    padding: 0 16px;
    font-size: 12px;
  }

  .hero-optimization {
    padding: 14px 16px 12px;
  }

  .hero-optimization-container {
    gap: 18px;
  }

  .hero-optimization-left h1 {
    font-size: 26px;
    line-height: 1.08;
    margin-bottom: 8px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .hero-highlight {
    margin-bottom: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 8px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
  }

  .hero-trust-points {
    gap: 6px;
    
  }

  .hero-trust-points span {
    font-size: 10px;
    padding: 6px 9px;
  }

  .hero-dev-showcase {
    max-width: 100%;
    padding: 14px;
    border-radius: 20px;
  }

  .hero-dev-showcase-top {
    margin-bottom: 12px;
  }

  .hero-dev-browser-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-dev-sidebar {
    grid-template-columns: repeat(4, 1fr);
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px;
  }

  .hero-dev-main {
    padding: 12px;
  }

  .hero-dev-feature-grid,
  .hero-dev-bottom-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-dev-hero-block {
    padding: 12px;
    margin-bottom: 8px;
  }

  .hero-dev-hero-block strong {
    font-size: 15px;
  }

  .popup-container {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .popup-container h2 {
    font-size: 24px;
  }
}

/* WHAT WE OFFER SECTION */
.what-we-offer-section {
  position: relative;
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
  overflow: hidden;
}

.what-we-offer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.what-we-offer-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.what-we-offer-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.what-we-offer-head h2 span {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.what-we-offer-head p {
  font-size: 17px;
  line-height: 1.8;
  color: #5c6275;
  max-width: 700px;
  margin: 0 auto;
}

.what-we-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.what-we-offer-card {
  position: relative;
  padding: 28px 24px 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(108, 99, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(31, 41, 55, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.what-we-offer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  opacity: 0.95;
}

.what-we-offer-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.10) 0%, transparent 68%);
  pointer-events: none;
}

.what-we-offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(31, 41, 55, 0.12);
  border-color: rgba(108, 99, 255, 0.24);
}

.what-we-offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.14), rgba(255, 122, 24, 0.14));
  border: 1px solid rgba(108, 99, 255, 0.14);
  color: #6c63ff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.what-we-offer-card h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #1c1f33;
  margin-bottom: 14px;
  max-width: 95%;
}

.what-we-offer-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #5f6578;
}

.what-we-offer-bottom {
  margin-top: 34px;
}

.what-we-offer-bottom-card {
  position: relative;
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(20, 22, 44, 0.18);
}

.what-we-offer-bottom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.18), transparent 28%);
  pointer-events: none;
}

.what-we-offer-bottom-label,
.what-we-offer-bottom-card p {
  position: relative;
  z-index: 2;
}

.what-we-offer-bottom-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d6dbff;
  margin-bottom: 10px;
}

.what-we-offer-bottom-card p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
  max-width: 850px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .what-we-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .what-we-offer-section {
    padding: 70px 16px;
  }

  .what-we-offer-head {
    margin-bottom: 34px;
  }

  .what-we-offer-head h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .what-we-offer-head p {
    font-size: 15px;
    line-height: 1.7;
  }

  .what-we-offer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .what-we-offer-card {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }

  .what-we-offer-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 14px;
  }

  .what-we-offer-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    max-width: 100%;
  }

  .what-we-offer-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .what-we-offer-bottom {
    margin-top: 22px;
  }

  .what-we-offer-bottom-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .what-we-offer-bottom-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* WHAT MAKES OUR WEBSITES BETTER */
.web-quality-section {
  position: relative;
  padding: 58px 20px 95px;
  margin-top: -8px;
  background:
    radial-gradient(circle at top right, rgba(108, 99, 255, 0.08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 122, 24, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
  overflow: hidden;
}

.web-quality-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.web-quality-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.web-quality-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.web-quality-head h2 span {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.web-quality-head p {
  font-size: 17px;
  line-height: 1.8;
  color: #5c6275;
  max-width: 720px;
  margin: 0 auto;
}

.web-quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.web-quality-card {
  position: relative;
  padding: 28px 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(108, 99, 255, 0.12);
  box-shadow: 0 18px 45px rgba(31, 41, 55, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.web-quality-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
}

.web-quality-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.web-quality-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(31, 41, 55, 0.12);
  border-color: rgba(108, 99, 255, 0.24);
}

.web-quality-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.14), rgba(255, 122, 24, 0.14));
  border: 1px solid rgba(108, 99, 255, 0.14);
  color: #6c63ff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.web-quality-card h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #1c1f33;
  margin-bottom: 12px;
}

.web-quality-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #5f6578;
}

.web-quality-highlight {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 30px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  box-shadow: 0 24px 50px rgba(20, 22, 44, 0.18);
  position: relative;
  overflow: hidden;
}

.web-quality-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.18), transparent 28%);
  pointer-events: none;
}

.web-quality-highlight-left,
.web-quality-highlight-right {
  position: relative;
  z-index: 2;
}

.web-quality-highlight-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d6dbff;
  margin-bottom: 12px;
}

.web-quality-highlight-left h3 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  max-width: 460px;
}

.web-quality-highlight-right p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.84);
  max-width: 560px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .web-quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-quality-highlight {
    grid-template-columns: 1fr;
  }

  .web-quality-highlight-left h3,
  .web-quality-highlight-right p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .web-quality-section {
    padding: 46px 16px 72px;
    margin-top: -6px;
  }

  .web-quality-head {
    margin-bottom: 34px;
  }

  .web-quality-head h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .web-quality-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .web-quality-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 22px;
  }

  .web-quality-card {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }

  .web-quality-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 14px;
  }

  .web-quality-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .web-quality-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .web-quality-highlight {
    padding: 22px 18px;
    border-radius: 22px;
    gap: 14px;
  }

  .web-quality-highlight-left h3 {
    font-size: 24px;
  }

  .web-quality-highlight-right p {
    font-size: 14px;
    line-height: 1.75;
  }
}
/* SIMPLE PROJECT CTA */
.project-cta-section {
  padding: 34px 20px 90px;
  background: linear-gradient(180deg, #f7f8fc 0%, #eef1f8 100%);
  position: relative;
}

.project-cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.project-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 38px;
  background: #ffffff;
  border: 1px solid rgba(108, 99, 255, 0.10);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.project-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(108, 99, 255, 0.06), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 122, 24, 0.05), transparent 20%);
  pointer-events: none;
}

.project-cta-content,
.project-cta-action {
  position: relative;
  z-index: 2;
}

.project-cta-content {
  flex: 1;
  max-width: 760px;
}

.project-cta-content h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.14;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.project-cta-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #5c6275;
  max-width: 780px;
  margin: 0;
}

.project-cta-action {
  flex-shrink: 0;
}

.project-cta-btn {
  min-width: 220px;
  min-height: 52px;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(108, 99, 255, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.project-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(108, 99, 255, 0.24);
}

.project-cta-btn:focus-visible {
  outline: 2px solid rgba(108, 99, 255, 0.35);
  outline-offset: 3px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .project-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }

  .project-cta-action {
    width: 100%;
  }

  .project-cta-btn {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .project-cta-section {
    padding: 24px 16px 72px;
  }

  .project-cta-card {
    gap: 18px;
    border-radius: 10px;
    padding: 22px 18px;
  }

  .project-cta-content h2 {
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 10px;
  }

  .project-cta-content p {
    font-size: 14px;
    line-height: 1.75;
  }

  .project-cta-btn {
    min-height: 48px;
    font-size: 14px;
    border-radius: 8px;
  }
}

/* OUR PROCESS ALTERNATING SECTION */
.dev-process-alt-section {
  position: relative;
  padding: 56px 20px 92px;
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.06), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.06), transparent 24%),
    linear-gradient(180deg, #eef1f8 0%, #f7f8fc 100%);
  overflow: hidden;
}

.dev-process-alt-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dev-process-alt-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.dev-process-alt-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.9px;
  margin-bottom: 14px;
}

.dev-process-alt-head h2 span {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dev-process-alt-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #5c6275;
  max-width: 720px;
  margin: 0 auto;
}

.dev-process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
}

.dev-process-row:last-child {
  margin-bottom: 0;
}

.dev-process-row.reverse .dev-process-content {
  order: 2;
}

.dev-process-row.reverse .dev-process-visual {
  order: 1;
}

.dev-process-content {
  padding: 8px 0;
}

.dev-process-content h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 800;
  color: #1c1f33;
  margin-bottom: 14px;
  max-width: 560px;
}

.dev-process-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #5f6578;
  margin-bottom: 16px;
  max-width: 560px;
}

.dev-process-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.dev-process-content ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #43495d;
}

.dev-process-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
}

.dev-process-visual {
  display: flex;
  justify-content: center;
}

.dev-process-mockup {
  width: 100%;
  max-width: 520px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(45, 43, 85, 0.96) 100%);
  border: 1px solid rgba(108, 99, 255, 0.20);
  box-shadow: 0 22px 48px rgba(26, 26, 46, 0.16);
  position: relative;
  overflow: hidden;
}

.dev-process-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.20), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.14), transparent 30%);
  pointer-events: none;
}

.mockup-topbar,
.mockup-body {
  position: relative;
  z-index: 2;
}

.mockup-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-topbar span:nth-child(1) { background: rgba(255, 255, 255, 0.85); }
.mockup-topbar span:nth-child(2) { background: rgba(108, 99, 255, 0.78); }
.mockup-topbar span:nth-child(3) { background: rgba(255, 122, 24, 0.78); }

.mockup-body {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  min-height: 260px;
}

.mockup-block,
.mockup-hero-card,
.mockup-mini-card,
.mockup-ui-card,
.mockup-sidebar,
.mockup-stat-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-block-lg {
  height: 86px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.22), rgba(255, 122, 24, 0.16));
}

.mockup-line-wrap {
  margin-bottom: 16px;
}

.mockup-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
}

.mockup-line.short {
  width: 58%;
}

.mockup-grid.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mockup-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-mini-card {
  height: 92px;
  background: rgba(255, 255, 255, 0.05);
}

.mockup-hero-card {
  height: 108px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.20), rgba(255, 122, 24, 0.12));
}

.mockup-ui-card {
  height: 90px;
  background: rgba(255, 255, 255, 0.05);
}

.split-layout {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
}

.mockup-sidebar {
  height: 100%;
  min-height: 190px;
  background: rgba(255, 255, 255, 0.05);
}

.mockup-main-area {
  display: grid;
  align-content: start;
  gap: 10px;
}

.mockup-code-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mockup-code-line.w-90 { width: 90%; }
.mockup-code-line.w-80 { width: 80%; }
.mockup-code-line.w-70 { width: 70%; }
.mockup-code-line.w-60 { width: 60%; }
.mockup-code-line.w-50 { width: 50%; }

.launch-status-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.18), rgba(255, 122, 24, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.launch-check {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  position: relative;
  flex-shrink: 0;
}

.launch-check::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  width: 16px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.launch-lines {
  flex: 1;
}

.mockup-stat-card {
  height: 92px;
  background: rgba(255, 255, 255, 0.05);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .dev-process-row,
  .dev-process-row.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dev-process-row.reverse .dev-process-content,
  .dev-process-row.reverse .dev-process-visual {
    order: initial;
  }

  .dev-process-content h3,
  .dev-process-content p {
    max-width: 100%;
  }

  .dev-process-mockup {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .dev-process-alt-section {
    padding: 44px 16px 72px;
  }

  .dev-process-alt-head {
    margin-bottom: 30px;
  }

  .dev-process-alt-head h2 {
    font-size: 28px;
  }

  .dev-process-alt-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .dev-process-row {
    gap: 16px;
    margin-bottom: 26px;
  }

  .dev-process-step {
    font-size: 11px;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .dev-process-content h3 {
    font-size: 23px;
    margin-bottom: 10px;
  }

  .dev-process-content p {
    font-size: 14px;
    line-height: 1.72;
    margin-bottom: 12px;
  }

  .dev-process-content ul {
    gap: 8px;
  }

  .dev-process-content ul li {
    font-size: 13px;
    line-height: 1.6;
  }

  .dev-process-mockup {
    padding: 14px;
    border-radius: 22px;
  }

  .mockup-body {
    padding: 14px;
    min-height: 220px;
    border-radius: 16px;
  }

  .mockup-grid.three,
  .mockup-grid.two {
    gap: 10px;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    min-height: 60px;
  }
}
/* TECH ZIG-ZAG SECTION */
.tech-zigzag-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.tech-zigzag-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ROW */
.tech-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.tech-row.reverse .tech-content {
  order: 2;
}

.tech-row.reverse .tech-logos {
  order: 1;
}

/* CONTENT */
.tech-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.tech-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #5f6578;
  margin-bottom: 12px;
}

.tech-highlight {
  font-weight: 600;
  color: #6c63ff;
}

/* LOGO GRID */
.tech-logos {
  display: flex;
  justify-content: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 18px;
}

/* LOGO BOX */
.logo-grid span {
  height: 80px;
  border-radius: 18px;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #555;
  border: 1px solid rgba(108,99,255,0.12);
  box-shadow: 0 12px 28px rgba(31,41,55,0.08);
  transition: all 0.3s ease;
}

.logo-grid span:hover {
  transform: translateY(-6px) scale(1.05);
  color: #000;
  border-color: #6c63ff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .tech-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tech-row.reverse .tech-content,
  .tech-row.reverse .tech-logos {
    order: initial;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* TECH STACK / TECHNOLOGIES SECTION */
.tech-zigzag-section {
    position: relative;
    padding: 80px 20px 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    overflow: hidden;
}

.tech-zigzag-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tech-zigzag-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.tech-zigzag-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.tech-zigzag-head h2 span {
    background: linear-gradient(135deg, #6c63ff, #ff7a18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-zigzag-head p {
    font-size: 17px;
    line-height: 1.8;
    color: #5c6275;
    max-width: 700px;
    margin: 0 auto;
}

.tech-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 56px;
}

.tech-row:last-child {
    margin-bottom: 0;
}

.tech-row.reverse .tech-content {
    order: 2;
}

.tech-row.reverse .tech-logos {
    order: 1;
}

.tech-content h2 {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.tech-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #5f6578;
    margin-bottom: 12px;
}

.tech-highlight {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
    color: #6c63ff;
    margin-bottom: 0;
}

.tech-logos {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo-grid {
    width: 100%;
    max-width: 360px;
    display: grid;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: 16px;
}

.logo-grid span {
    min-height: 82px;
    padding: 14px 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: #4e5568;
    border: 1px solid rgba(108, 99, 255, 0.12);
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.logo-grid span:hover {
    transform: translateY(-6px);
    color: #111827;
    border-color: rgba(108, 99, 255, 0.35);
    box-shadow: 0 18px 34px rgba(31, 41, 55, 0.12);
}

/* Tablet */
@media (max-width: 991px) {
    .tech-zigzag-section {
        padding: 70px 18px 78px;
    }

    .tech-zigzag-head {
        margin-bottom: 42px;
    }

    .tech-zigzag-head p {
        font-size: 16px;
        line-height: 1.75;
    }

    .tech-row {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 42px;
    }

    .tech-row.reverse .tech-content,
    .tech-row.reverse .tech-logos {
        order: initial;
    }

    .tech-content,
    .tech-logos {
        width: 100%;
    }

    .tech-content h2,
    .tech-content p,
    .tech-highlight {
        max-width: 100%;
    }

    .tech-logos {
        justify-content: flex-start;
    }

    .logo-grid {
        max-width: 100%;
        grid-template-columns: repeat(3, minmax(88px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tech-zigzag-section {
        padding: 56px 16px 68px;
    }

    .tech-zigzag-head {
        margin-bottom: 32px;
    }

    .tech-zigzag-head h2 {
        font-size: 28px;
        line-height: 1.18;
        margin-bottom: 12px;
    }

    .tech-zigzag-head p {
        font-size: 14px;
        line-height: 1.72;
    }

    .tech-row {
        gap: 18px;
        margin-bottom: 30px;
    }

    .tech-content h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .tech-content p {
        font-size: 14px;
        line-height: 1.72;
        margin-bottom: 10px;
    }

    .tech-highlight {
        font-size: 14px;
        line-height: 1.65;
    }

    .tech-logos {
        justify-content: center;
    }

    .logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .logo-grid span {
        min-height: 64px;
        padding: 12px 8px;
        border-radius: 14px;
        font-size: 13px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .tech-zigzag-section {
        padding: 50px 14px 60px;
    }

    .tech-zigzag-head h2 {
        font-size: 25px;
    }

    .tech-content h2 {
        font-size: 20px;
    }

    .logo-grid {
        gap: 10px;
    }

    .logo-grid span {
        min-height: 58px;
        font-size: 12px;
        font-weight: 700;
        padding: 10px 6px;
    }
}
/* WHY CHOOSE US SECTION */
.why-choose-section {
    position: relative;
    padding: 85px 20px 95px;
    background:
        radial-gradient(circle at top left, rgba(108, 99, 255, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.08), transparent 26%),
        linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
    overflow: hidden;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-choose-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.why-choose-eyebrow {
    display: inline-block;
    padding: 7px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(108, 99, 255, 0.14);
    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.06);
    backdrop-filter: blur(10px);
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.why-choose-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.why-choose-head h2 span {
    background: linear-gradient(135deg, #6c63ff, #ff7a18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-head p {
    font-size: 16px;
    line-height: 1.8;
    color: #5c6275;
    max-width: 700px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.why-choose-card {
    position: relative;
    padding: 30px 26px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(108, 99, 255, 0.12);
    box-shadow: 0 18px 45px rgba(31, 41, 55, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-choose-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(135deg, #6c63ff, #ff7a18);
    opacity: 0.95;
}

.why-choose-card::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(31, 41, 55, 0.12);
    border-color: rgba(108, 99, 255, 0.24);
}

.why-choose-number {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.14), rgba(255, 122, 24, 0.14));
    border: 1px solid rgba(108, 99, 255, 0.14);
    color: #6c63ff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.why-choose-card h3 {
    position: relative;
    z-index: 2;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
    color: #1c1f33;
    margin-bottom: 12px;
}

.why-choose-card p {
    position: relative;
    z-index: 2;
    font-size: 15px;
    line-height: 1.78;
    color: #5f6578;
    margin: 0;
}

/* Tablet */
@media (max-width: 1100px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .why-choose-card {
        padding: 26px 22px 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 64px 16px 72px;
    }

    .why-choose-head {
        margin-bottom: 34px;
    }

    .why-choose-eyebrow {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .why-choose-head h2 {
        font-size: 28px;
        line-height: 1.18;
        margin-bottom: 12px;
    }

    .why-choose-head p {
        font-size: 14px;
        line-height: 1.72;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-choose-card {
        padding: 22px 18px 20px;
        border-radius: 20px;
    }

    .why-choose-number {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        margin-bottom: 14px;
        font-size: 14px;
    }

    .why-choose-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .why-choose-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* FINAL CTA SECTION */
.final-cta-section {
    position: relative;
    padding: 40px 20px 100px;
    background: linear-gradient(180deg, #ffffff 0%, #eef1f8 100%);
    overflow: hidden;
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 34px;
    align-items: center;
    padding: 42px 42px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(20, 22, 44, 0.98) 0%, rgba(40, 38, 78, 0.96) 100%);
    border: 1px solid rgba(108, 99, 255, 0.18);
    box-shadow: 0 28px 70px rgba(20, 22, 44, 0.22);
    overflow: hidden;
    isolation: isolate;
}

.final-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), transparent 35%),
        radial-gradient(circle at top left, rgba(108, 99, 255, 0.20), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.16), transparent 28%);
    pointer-events: none;
    z-index: 1;
}

.final-cta-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 1;
}

.final-cta-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.final-cta-glow-one {
    width: 220px;
    height: 220px;
    top: -70px;
    left: -50px;
    background: rgba(108, 99, 255, 0.22);
}

.final-cta-glow-two {
    width: 220px;
    height: 220px;
    right: -60px;
    bottom: -80px;
    background: rgba(255, 122, 24, 0.18);
}

.final-cta-content,
.final-cta-action {
    position: relative;
    z-index: 2;
}

.final-cta-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #d8ddff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.final-cta-content h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.2px;
    max-width: 720px;
    margin-bottom: 16px;
}

.final-cta-content h2 span {
    background: linear-gradient(135deg, #c9cbff 0%, #ffffff 22%, #ffcfad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-content p {
    font-size: 16px;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.80);
    max-width: 640px;
    margin-bottom: 22px;
}

.final-cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.final-cta-points span {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    backdrop-filter: blur(10px);
}

.final-cta-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    max-width: 360px;
    width: 100%;
    margin-left: auto;
}

.final-cta-btn {
    width: 100%;
    min-height: 60px;
    padding: 16px 24px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #6c63ff 0%, #ff7a18 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow:
        0 18px 38px rgba(108, 99, 255, 0.26),
        0 8px 18px rgba(255, 122, 24, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.final-cta-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 24px 46px rgba(108, 99, 255, 0.30),
        0 12px 24px rgba(255, 122, 24, 0.16);
}

.final-cta-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 4px;
}

.final-cta-note {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.66);
    text-align: center;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .final-cta-card {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 36px 30px;
    }

    .final-cta-action {
        max-width: 100%;
        margin-left: 0;
    }

    .final-cta-content h2,
    .final-cta-content p {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 28px 16px 72px;
    }

    .final-cta-card {
        gap: 22px;
        padding: 28px 18px;
        border-radius: 24px;
    }

    .final-cta-card::after {
        border-radius: 23px;
    }

    .final-cta-label {
        font-size: 11px;
        padding: 7px 12px;
        margin-bottom: 14px;
    }

    .final-cta-content h2 {
        font-size: 28px;
        line-height: 1.14;
        letter-spacing: -0.8px;
        margin-bottom: 12px;
    }

    .final-cta-content p {
        font-size: 14px;
        line-height: 1.72;
        margin-bottom: 18px;
    }

    .final-cta-points {
        gap: 8px;
    }

    .final-cta-points span {
        font-size: 11px;
        padding: 8px 11px;
    }

    .final-cta-btn {
        min-height: 54px;
        font-size: 14px;
        padding: 14px 20px;
    }

    .final-cta-note {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .final-cta-content h2 {
        font-size: 25px;
    }

    .final-cta-points {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-points span {
        justify-content: center;
        text-align: center;
    }
}

/* ========================================
   GLOBAL SECTION SPACING FIX
======================================== */

:root {
    --section-space-desktop: 88px;
    --section-space-tablet: 72px;
    --section-space-mobile: 56px;
}

/* Main content sections */
.what-we-offer-section,
.web-quality-section,
.project-cta-section,
.dev-process-alt-section,
.tech-zigzag-section,
.why-choose-section,
.final-cta-section {
    padding-top: var(--section-space-desktop) !important;
    padding-bottom: var(--section-space-desktop) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Remove forced uneven pull-up */
.web-quality-section {
    margin-top: 0 !important;
}

/* Slightly tighter CTA before footer can still look good */
.final-cta-section {
    padding-bottom: 96px !important;
}

/* Tablet */
@media (max-width: 991px) {
    .what-we-offer-section,
    .web-quality-section,
    .project-cta-section,
    .dev-process-alt-section,
    .tech-zigzag-section,
    .why-choose-section,
    .final-cta-section {
        padding-top: var(--section-space-tablet) !important;
        padding-bottom: var(--section-space-tablet) !important;
    }

    .final-cta-section {
        padding-bottom: 80px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .what-we-offer-section,
    .web-quality-section,
    .project-cta-section,
    .dev-process-alt-section,
    .tech-zigzag-section,
    .why-choose-section,
    .final-cta-section {
        padding-top: var(--section-space-mobile) !important;
        padding-bottom: var(--section-space-mobile) !important;
    }

    .final-cta-section {
        padding-bottom: 64px !important;
    }
}

.pricing-section {
    position: relative;
    padding: 88px 20px;
    background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
    overflow: hidden;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-head {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.pricing-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(108, 99, 255, 0.14);
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.06);
}

.pricing-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.pricing-head p {
    font-size: 16px;
    line-height: 1.8;
    color: #5c6275;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(108, 99, 255, 0.12);
    box-shadow: 0 18px 45px rgba(31, 41, 55, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(31, 41, 55, 0.12);
    border-color: rgba(108, 99, 255, 0.24);
}

.pricing-card-featured {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
    border-color: rgba(108, 99, 255, 0.22);
    transform: translateY(-8px);
}

.pricing-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6c63ff;
    background: rgba(108, 99, 255, 0.08);
}

.pricing-card-featured .pricing-tag {
    color: #e8ecff;
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    color: #1c1f33;
    margin-bottom: 10px;
}

.pricing-card-featured h3 {
    color: #ffffff;
}

.pricing-value {
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.pricing-card-featured .pricing-value {
    color: #ffffff;
}

.pricing-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #5f6578;
    margin-bottom: 18px;
}

.pricing-card-featured p {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.pricing-card ul li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #43495d;
}

.pricing-card-featured ul li {
    color: rgba(255, 255, 255, 0.78);
}

.pricing-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c63ff, #ff7a18);
}

.pricing-note {
    max-width: 920px;
    margin: 28px auto 0;
    padding: 18px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(108, 99, 255, 0.10);
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.06);
    text-align: center;
}

.pricing-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #5c6275;
    margin: 0;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 64px 16px;
    }

    .pricing-head {
        margin-bottom: 30px;
    }

    .pricing-head h2 {
        font-size: 28px;
        line-height: 1.18;
    }

    .pricing-head p {
        font-size: 14px;
        line-height: 1.7;
    }

    .pricing-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .pricing-value {
        font-size: 32px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .pricing-card p {
        font-size: 14px;
    }
}

/* CTA SPLIT POPUP */
.split-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 14, 30, 0.72);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.split-popup-box {
  position: relative;
  width: 100%;
  max-width: 1040px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
}

.split-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

.split-popup-left {
  padding: 50px 38px 38px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  position: relative;
  overflow: hidden;
}

.split-popup-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.24), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.18), transparent 30%);
  pointer-events: none;
}

.split-popup-left > * {
  position: relative;
  z-index: 2;
}

.split-popup-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #dfe3ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.split-popup-left h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.split-popup-left p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 26px;
  max-width: 470px;
}

.split-popup-points {
  display: grid;
  gap: 14px;
}

.split-popup-point {
  padding: 16px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.split-popup-point strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.split-popup-point span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

.split-popup-right {
  padding: 50px 34px 34px;
  background: #ffffff;
}

.split-popup-right h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.split-popup-right form {
  display: grid;
  gap: 14px;
}

.split-popup-right input,
.split-popup-right select,
.split-popup-right textarea {
  width: 100%;
  border: 1px solid rgba(108, 99, 255, 0.14);
  background: #f8f9fd;
  color: #1a1a2e;
  border-radius: 16px;
  padding: 14px 15px;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
}

.split-popup-right input:focus,
.split-popup-right select:focus,
.split-popup-right textarea:focus {
  border-color: rgba(108, 99, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.12);
}

.split-popup-right textarea {
  min-height: 120px;
  resize: vertical;
}

.split-popup-right button[type="submit"] {
  border: none;
  border-radius: 999px;
  padding: 15px 22px;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(108, 99, 255, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.split-popup-right button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(108, 99, 255, 0.26);
}

/* Tablet */
@media (max-width: 900px) {
  .split-popup-box {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .split-popup-left {
    display: none;
  }

  .split-popup-right {
    width: 100%;
    padding: 34px 22px 24px;
  }

  .split-popup-right h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .split-popup-close {
    top: 12px;
    right: 12px;
    background: rgba(26, 26, 46, 0.08);
    color: #1a1a2e;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .split-popup-overlay {
    padding: 12px;
  }

  .split-popup-box {
    max-width: 100%;
    border-radius: 20px;
  }

  .split-popup-right {
    padding: 42px 16px 18px;
  }

  .split-popup-right h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .split-popup-right form {
    gap: 12px;
  }

  .split-popup-right input,
  .split-popup-right select,
  .split-popup-right textarea {
    border-radius: 14px;
    padding: 13px 14px;
    font-size: 14px;
  }

  .split-popup-right textarea {
    min-height: 110px;
  }

  .split-popup-right button[type="submit"] {
    padding: 14px 20px;
    font-size: 14px;
  }

  .split-popup-close {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

.final-cta-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 380px;
  width: 100%;
  margin-left: auto;
}

.final-cta-form-wrap {
  width: 100%;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(8, 10, 24, 0.18);
}

.final-cta-form-wrap h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.final-cta-form-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
}

.final-cta-form {
  display: grid;
  gap: 12px;
}

.final-cta-form input,
.final-cta-form select,
.final-cta-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
}

.final-cta-form input::placeholder,
.final-cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.final-cta-form select {
  color: #ffffff;
}

.final-cta-form option {
  color: #1a1a2e;
}

.final-cta-form input:focus,
.final-cta-form select:focus,
.final-cta-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.final-cta-form textarea {
  min-height: 110px;
  resize: vertical;
}

.final-cta-submit {
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #6c63ff 0%, #ff7a18 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(108, 99, 255, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.final-cta-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.28);
}
