@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap");
.ab-page {
  background: #0a0a0f;
  color: #f0f0ff;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.ab-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  padding: 0 2rem;
}

.ab-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.ab-nav__logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #f0f0ff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.ab-nav__logo span {
  color: #3b82f6;
}

.ab-nav__cta {
  background: #3b82f6;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.ab-nav__cta:hover {
  background: #1d4ed8;
}

.ab-hero {
  min-height: 100vh;
  padding: 100px 2rem 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ab-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ab-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.ab-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.ab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3b82f6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.ab-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  animation: ab-pulse 2s infinite;
}

@keyframes ab-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
.ab-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.ab-accent {
  color: #3b82f6;
}

.ab-hero__line2 {
  display: block;
  color: #a0a0c0;
}

.ab-hero__desc {
  font-size: 1.1rem;
  color: #a0a0c0;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.ab-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ab-btn-primary {
  background: #3b82f6;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.ab-btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.ab-btn-secondary {
  background: transparent;
  color: #f0f0ff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.2s;
  display: inline-block;
}
.ab-btn-secondary:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}

.ab-sandra-card {
  position: relative;
}

.ab-sandra-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.ab-sandra-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-sandra-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.7) 0%, transparent 50%);
  pointer-events: none;
}

.ab-sandra-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.ab-sandra-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.ab-sandra-role {
  font-size: 0.8rem;
  color: #3b82f6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ab-sandra-stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.ab-stat-item {
  text-align: center;
  flex: 1;
}

.ab-stat-num {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #f0f0ff;
}

.ab-stat-lbl {
  font-size: 0.7rem;
  color: #6060a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ab-ai-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #3b82f6;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ab-section {
  padding: 100px 2rem;
}

.ab-section--alt {
  background: #0f0f1a;
}

.ab-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ab-section__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.ab-section__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.ab-quote {
  background: #0f0f1a;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-left: 3px solid #3b82f6;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  font-size: 1.05rem;
  color: #a0a0c0;
  line-height: 1.8;
}

.ab-text-muted {
  color: #a0a0c0;
  font-size: 1rem;
  line-height: 1.8;
}

.ab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ab-split__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.ab-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.ab-split__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
  pointer-events: none;
}

.ab-does-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.ab-does-card {
  background: #1a1a2e;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.ab-does-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}
.ab-does-card h3 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.ab-does-card p {
  font-size: 0.9rem;
  color: #a0a0c0;
  line-height: 1.6;
}

.ab-does-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.ab-steps {
  margin-top: 3rem;
  max-width: 680px;
}

.ab-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}
.ab-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.ab-step h3 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.ab-step p {
  font-size: 0.9rem;
  color: #a0a0c0;
  line-height: 1.6;
}

.ab-step__num {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #3b82f6;
}

.ab-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.ab-who-item {
  background: #1a1a2e;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ab-who-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

.ab-who-check {
  width: 28px;
  height: 28px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #3b82f6;
  font-size: 0.85rem;
  font-weight: 700;
}

.ab-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ab-result-card {
  background: #1a1a2e;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.ab-result-num {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.ab-result-label {
  font-size: 0.85rem;
  color: #a0a0c0;
  margin-top: 0.5rem;
}

.ab-cta {
  padding: 100px 2rem;
  background: #0f0f1a;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.ab-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.ab-cta__inner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.ab-cta__inner p {
  font-size: 1.05rem;
  color: #a0a0c0;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.ab-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ab-divider {
  height: 1px;
  background: rgba(59, 130, 246, 0.15);
  max-width: 1200px;
  margin: 0 auto;
}

.ab-footer {
  padding: 2rem;
  text-align: center;
  color: #6060a0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}
.ab-footer a {
  color: #3b82f6;
  text-decoration: none;
}

@media (max-width: 900px) {
  .ab-hero__inner,
  .ab-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-hero__inner .ab-sandra-card {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }
  .ab-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ab-results-grid,
  .ab-does-grid {
    grid-template-columns: 1fr;
  }
}
