:root {
  --primary: #f07fb3;
  --secondary: #2e3a8c;
  --text-color: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --bg-soft: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  color: var(--text-color);
  background: var(--white);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section-space {
  padding: 86px 0;
}

.tech-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding: 130px 0 86px;
  background-size: cover;
  background-position: center;
}

.tech-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(46, 58, 140, 0.85), rgba(46, 58, 140, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-kicker {
  display: inline-block;
  color: #ffd8ea;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-content h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-content p {
  margin: 0;
  max-width: 760px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.intro-copy h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.intro-copy p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.intro-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(46, 58, 140, 0.16);
}

.soft-bg {
  background: var(--bg-soft);
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 900px;
}

.tech-details {
  display: grid;
  gap: 0;
}

.tech-detail {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.tech-detail:first-child {
  padding-top: 0;
}

.tech-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.tech-detail h3 {
  margin: 0 0 8px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.tech-detail p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: var(--text-color);
}

.tech-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.tech-detail li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #475569;
}

.tech-detail li::before {
  content: "\2713";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.seo-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(46, 58, 140, 0.08);
}

.seo-block h2 {
  margin: 0 0 12px;
  color: #111827;
}

.seo-block h3 {
  margin: 18px 0 8px;
  color: var(--secondary);
  font-size: 1.14rem;
}

.seo-block p {
  margin: 0 0 12px;
  line-height: 1.75;
  color: var(--text-color);
}

.seo-block p:last-child {
  margin-bottom: 0;
}

.cta-box {
  background: linear-gradient(125deg, var(--secondary), #223173);
  border-radius: 18px;
  color: var(--white);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-box h2 {
  margin: 0 0 8px;
  color: var(--white);
}

.cta-box p {
  margin: 0;
  color: #dbe3ff;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 10px;
  padding: 11px 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}
