:root {
  --bg-main: #f9fafb;
  --bg-soft: #ffffff;
  --bg-accent-soft: #f2f4ff;
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.08);
  --accent-strong: #3730a3;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.06);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 220ms ease;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(249, 250, 251, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(148, 163, 184, 0.4);
  overflow: hidden;
}
.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.logo-text span:last-child {
  font-size: 12px;
  color: var(--text-muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav-link {
  position: relative;
  color: var(--text-muted);
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #4f46e5, #ec4899);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  background: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(76, 81, 191, 0.38);
  background: linear-gradient(135deg, #4338ca, #4f46e5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.25);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}

.btn-icon {
  font-size: 16px;
}

/* Mobile nav */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.burger span {
  width: 16px;
  height: 1.6px;
  border-radius: 999px;
  background: #4b5563;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.burger.open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 10px 0 16px;
  gap: 8px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(249, 250, 251, 0.98);
}

.mobile-nav a {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 4px;
}

/* Hero */
.hero {
  padding: 40px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-pre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(209, 213, 219, 0.8);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.25);
}

.hero-pre-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

.hero-pre strong {
  color: var(--text-main);
  font-weight: 600;
}

.hero-title {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero-title span.gradient {
  background: linear-gradient(120deg, #4f46e5, #ec4899);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  
  border: 1px solid rgba(129, 140, 248, 0.2);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-note strong {
  color: var(--text-main);
}

.hero-note span {
  background: rgba(34, 197, 94, 0.09);
  border-radius: 999px;
  padding: 2px 9px;
  margin-left: 4px;
}

.hero-side {
  position: relative;
}

.hero-card {
  
  border-radius: var(--radius-xl);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
}

.hero-card-title {
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.hero-card-title span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

.hero-card-pill {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.hero-couple {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.hero-face {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 10px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-face-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #ec4899);
  opacity: 0.9;
  position: relative;
  overflow: hidden;
}

.hero-avatar::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  
  mix-blend-mode: screen;
}

.hero-face-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-face-meta strong {
  font-size: 13px;
}

.hero-face-meta span {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-face-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.hero-face-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.9);
  color: #1d4ed8;
}

.hero-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  border-radius: 16px;
  padding: 8px 10px;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.hero-score::before {
  content: "";
  position: absolute;
  inset: 0;
  
  opacity: 0.9;
  pointer-events: none;
}

.hero-score-label {
  display: flex;
  flex-direction: column;
}

.hero-score-label span {
  font-size: 10px;
  color: #9ca3af;
}

.hero-score-value {
  
  font-weight: 600;
}

.hero-score-bar {
  width: 100px;
  height: 6px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(55,65,81,0.9);
  padding: 1px;
}

.hero-score-bar-inner {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #84cc16, #facc15);
  width: 82%;
}

.hero-float {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 120px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 18px 35px rgba(148, 163, 184, 0.45);
  padding: 8px 10px;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(0);
  animation: floatCard 4.4s ease-in-out infinite;
}

.hero-float span {
  font-size: 10px;
  color: var(--text-muted);
}

.hero-float strong {
  font-size: 11px;
}

.hero-float-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: #15803d;
  font-size: 10px;
  align-self: flex-start;
}

.hero-float-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

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

/* Sections */
section {
  padding: 32px 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 231, 235, 0.9);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

/* How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 14px 14px 12px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(148, 163, 184, 0.18);
  position: relative;
  overflow: hidden;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.09);
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-text {
  font-size: 13px;
  color: var(--text-muted);
}

.step-tag {
  font-size: 11px;
  color: #4b5563;
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 999px;
  position: absolute;
  right: 10px;
  top: 10px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.feature-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
}

.feature-text {
  font-size: 13px;
  color: var(--text-muted);
}

.feature-tag {
  font-size: 11px;
  color: #4b5563;
  background: rgba(239, 246, 255, 0.9);
  border-radius: 999px;
  padding: 2px 8px;
  align-self: flex-start;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.audience-card {
  background: var(--bg-accent-soft);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid rgba(191, 219, 254, 0.9);
}

.audience-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.audience-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.audience-list {
  list-style: none;
  font-size: 12px;
  color: #4b5563;
}

.audience-list li {
  margin-bottom: 3px;
  padding-left: 14px;
  position: relative;
}

.audience-list li::before {
  content: "•";
  position: absolute;
  left: 3px;
  color: #4f46e5;
  font-size: 13px;
}

/* Insights */
.insights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 20px;
  align-items: flex-start;
}

.insights-list {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: 16px 16px 14px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.insight-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(209, 213, 219, 0.8);
}

.insight-item:last-child {
  border-bottom: none;
}

.insight-dot {
  margin-top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4f46e5;
}

.insight-content {
  font-size: 13px;
}

.insight-label {
  font-size: 11px;
  color: #4b5563;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.insight-text {
  color: var(--text-main);
}

.insight-text span {
  color: #059669;
  font-weight: 500;
}

.insights-side {
  background: var(--bg-accent-soft);
  border-radius: var(--radius-xl);
  padding: 14px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insights-side ul {
  list-style: none;
  font-size: 12px;
  color: #4b5563;
}

.insights-side li {
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
}

.insights-side li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-size: 11px;
}

/* Trust / Experts */
.experts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.experts-card {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: 16px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.experts-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.expert {
  background: rgba(249, 250, 251, 0.96);
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  display: flex;
  gap: 10px;
  font-size: 12px;
}

.expert-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #ec4899);
  opacity: 0.9;
  position: relative;
  overflow: hidden;
}

.expert-avatar::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  
  mix-blend-mode: screen;
}

.expert-info strong {
  font-size: 12px;
}

.expert-info span {
  color: var(--text-muted);
  font-size: 11px;
}

.expert-note {
  margin-top: 6px;
  font-size: 11px;
  color: #4b5563;
}

.experts-side {
  background: var(--bg-accent-soft);
  border-radius: var(--radius-xl);
  padding: 14px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  font-size: 12px;
  color: #4b5563;
}

.experts-side strong {
  color: var(--text-main);
}

/* SEO text / Blog preview */
.seo-section {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  padding: 18px;
  margin-top: 6px;
  font-size: 13px;
  color: #4b5563;
}

.seo-section h3 {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-main);
}

.seo-section p {
  margin-bottom: 8px;
}

.seo-section p:last-child {
  margin-bottom: 0;
}

/* CTA bottom */
.cta-bottom {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(236, 72, 153, 0.02));
  border-radius: 28px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(129, 140, 248, 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.18);
}

.cta-bottom-text {
  max-width: 520px;
}

.cta-bottom-title {
  
  margin-bottom: 4px;
}

.cta-bottom-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.cta-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: rgba(34, 197, 94, 0.09);
  font-size: 11px;
  color: #15803d;
  margin-bottom: 6px;
}

/* Footer */
footer {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  margin-top: 32px;
  padding: 18px 0 22px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

/* Animations on scroll */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    order: -1;
  }

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

  .insights-grid,
  .experts-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding-top: 28px;
  }

  .steps-grid,
  .features-grid,
  .audience-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-bottom {
    align-items: flex-start;
  }

  .blog-preview-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Blog preview cards hover */
.blog-preview-card {
  text-decoration: none;
  color: inherit;
}

.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(148, 163, 184, 0.25);
}

/* ===== DOB HERO (Совместимость по дате рождения) ===== */
.hero.hero-dob { padding: 36px 0 28px; }

.dob-card{
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 34px;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dob-card::before{
  content:"";
  position:absolute;
  inset:-60px;
  background:
    radial-gradient(circle at 12% 0%, rgba(236,72,153,.14), transparent 46%),
    radial-gradient(circle at 90% 20%, rgba(79,70,229,.14), transparent 44%);
  pointer-events:none;
}

.dob-head{ position: relative; display:flex; flex-direction:column; align-items:center; gap:10px; margin-bottom: 22px; }

/* вместо dob-mark — логотип */
.dob-logo{
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.dob-logo img{
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.dob-title{
  font-size: clamp(22px, 3.2vw, 34px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.1;
}

.dob-sub{
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dob-form{ position:relative; display:flex; flex-direction:column; gap:14px; align-items:center; }

.dob-row{
  width:100%;
  max-width: 700px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items:center;
}

.dob-icon{
  width:28px; height:28px;
  border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  font-size: 16px;
  background: rgba(236,72,153,.10);
  color:#ec4899;
  border:1px solid rgba(236,72,153,.22);
}

.dob-icon.male{
  background: rgba(79,70,229,.10);
  color:#4f46e5;
  border-color: rgba(79,70,229,.22);
}

.dob-fields{
  display:grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 12px;
}

.dob-fields select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
  font-size: 15px;
  color: var(--text-main);
  outline: none;
}

.dob-fields select:focus{
  border-color: rgba(79,70,229,.6);
  box-shadow: 0 0 0 4px rgba(79,70,229,.12);
}

/* кнопка DOB — в стиле сайта (как .btn-primary), только размер */
.btn-dob{
  margin-top: 6px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
}

.dob-note{
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 660px;
}

@media (max-width: 720px){
  .dob-row{ grid-template-columns: 1fr; }
  .dob-icon{ margin: 0 auto; }
  .dob-fields{ grid-template-columns: 1fr; }
}
