:root {
  --bg: #050814;
  --bg-alt: #0b1020;
  --card: #111627;
  --card-soft: #181e33;
  --accent: #ff6bcb;
  --accent-2: #4f9dff;
  --accent-3: #7cffc6;
  --text: #f7f7ff;
  --muted: #9aa0c2;
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.5);
  --transition-fast: 0.25s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* GLOBAL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #15182d 0, #050814 50%, #02030a 100%);
  color: var(--text);
  min-height: 100vh;
}

/* CONTAINER */
.container {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #141835 0, #02030a 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: var(--text);
}

.preloader-logo {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.preloader-logo .ear {
  position: absolute;
  width: 18px;
  height: 40px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #d1d4ff);
  top: -8px;
  animation: bunnyEar 1.1s infinite alternate;
  transform-origin: bottom center;
}

.preloader-logo .ear-left {
  left: 14px;
}

.preloader-logo .ear-right {
  right: 14px;
  animation-delay: 0.2s;
}

.preloader-logo .face {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 48px;
  transform: translateX(-50%);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #c7d0ff);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.preloader-text {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.preloader-bar {
  width: 260px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  animation: barSlide 1.1s infinite;
}

/* FLOATING SHAPES */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 107, 203, 0.12), transparent 70%);
  filter: blur(1px);
  animation: floatSlow 18s linear infinite;
}

.shape-1 {
  width: 220px;
  height: 220px;
  top: 8%;
  left: 6%;
}

.shape-2 {
  width: 260px;
  height: 260px;
  bottom: 4%;
  right: 12%;
  animation-delay: -4s;
}

.shape-3 {
  width: 170px;
  height: 170px;
  top: 40%;
  right: -4%;
  animation-delay: -7s;
}

.shape-4 {
  width: 140px;
  height: 140px;
  bottom: 35%;
  left: -3%;
  animation-delay: -11s;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 3, 15, 0.96), rgba(2, 3, 15, 0.7));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

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

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #ffb6ea, #ff6bcb);
  box-shadow: 0 8px 20px rgba(255, 107, 203, 0.45);
}

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

.logo-title {
  font-weight: 700;
  font-size: 18px;
}

.logo-subtitle {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

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

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width var(--transition-fast);
}

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

.nav a:hover::after {
  width: 100%;
}

/* BUTTONS */
.btn {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05030b;
  box-shadow: 0 10px 24px rgba(255, 107, 203, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 14px 32px rgba(255, 107, 203, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  color: #05030b;
  box-shadow: 0 10px 24px rgba(79, 157, 255, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 14px 32px rgba(79, 157, 255, 0.5);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding-inline: 16px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.full-width {
  width: 100%;
}

/* BURGER & MOBILE NAV */
.burger {
  display: none;
  width: 34px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 3, 15, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.burger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: 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;
  position: fixed;
  inset: 60px 16px auto 16px;
  background: rgba(5, 7, 20, 0.97);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 18px 14px;
  z-index: 40;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 60px;
  z-index: 1;
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #7cffc6, #28ff92);
  box-shadow: 0 0 10px #28ff92;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.gradient-text {
  background: linear-gradient(120deg, #ff6bcb, #4f9dff, #7cffc6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

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

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-card {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(9, 12, 30, 0.9));
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-title {
  font-weight: 600;
}

.badge-text {
  color: var(--muted);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 30px;
  padding: 24px 20px;
  background: radial-gradient(circle at top, #171b35, #050814 65%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-rabbit-orbit {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 10px auto 20px;
}

.rabbit-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #ffffff, #c7d0ff);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.rabbit-face {
  position: absolute;
  inset: 24px 12px 10px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #d0d6ff);
}

.rabbit-ear {
  position: absolute;
  width: 22px;
  height: 52px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #e4e7ff);
  top: -18px;
  animation: bunnyEar 1.2s infinite alternate;
  transform-origin: bottom center;
}

.rabbit-ear.ear-left {
  left: 12px;
}

.rabbit-ear.ear-right {
  right: 12px;
  animation-delay: 0.25s;
}

.orbit {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: orbitSpin 14s linear infinite;
}

.orbit-2 {
  inset: 6px;
  opacity: 0.6;
  animation-duration: 10s;
}

.orbit-3 {
  inset: 34px;
  opacity: 0.4;
  animation-duration: 18s;
}

.hero-tag {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 8, 20, 0.92);
  font-size: 11px;
}

.hero-tag span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

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

.hero-tag-top {
  top: 18px;
  left: 18px;
}

.hero-tag-bottom {
  bottom: 18px;
  right: 18px;
}

/* SECTIONS */
.section {
  position: relative;
  padding: 70px 0 60px;
  z-index: 1;
}

.section-inner {
  position: relative;
}

.section-header {
  margin-bottom: 28px;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 8px;
}

.section-label::before {
  content: "";
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.section h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin: 0 0 8px;
}

.section-header p {
  color: var(--muted);
  max-width: 520px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent-2);
}

.about-cards {
  display: grid;
  gap: 14px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(17, 22, 39, 0.94), rgba(24, 30, 51, 0.9));
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6);
}

.stat-number {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* COURSES */
.courses {
  background: radial-gradient(circle at top, #0a0f20, #02030a 65%);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.course-card {
  background: rgba(9, 13, 31, 0.96);
  border-radius: var(--radius-xl);
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform-origin: center;
  transition: transform var(--transition-slow), box-shadow var(--transition-fast), border-color var(--transition-fast), background 0.4s ease;
}

.course-card h3 {
  margin: 0;
  font-size: 17px;
}

.course-card p {
  margin: 0;
  color: var(--muted);
}

.course-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 8px;
  color: var(--muted);
}

.course-card ul li {
  padding: 3px 0;
}

.course-card:hover {
  transform: translateY(-6px) rotate3d(1, -1, 0, 6deg);
  border-color: rgba(255, 255, 255, 0.3);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05), rgba(9, 13, 31, 0.98));
}

/* FORMATS */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.format-card {
  background: rgba(8, 12, 28, 0.98);
  border-radius: var(--radius-xl);
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.format-card h3 {
  margin: 0 0 10px;
}

.format-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.format-card li {
  padding: 4px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(8, 12, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #05030b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* MENTORS */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mentor-card {
  background: rgba(8, 12, 28, 0.96);
  border-radius: var(--radius-xl);
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
}

.mentor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: radial-gradient(circle at top, #ffb6ea, #ff6bcb);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.mentor-card h3 {
  margin: 0 0 4px;
}

.mentor-card p {
  margin: 0 0 6px;
  color: var(--muted);
}

.mentor-tag {
  display: inline-flex;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* SIGNUP */
.signup {
  background: radial-gradient(circle at top, #131832, #050814 70%);
}

.signup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-card {
  background: rgba(6, 8, 22, 0.98);
  border-radius: 24px;
  padding: 18px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.7);
}

.form-card h3 {
  margin: 0 0 10px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

label input,
label select,
label textarea {
  margin-top: 5px;
  width: 100%;
  border-radius: 12px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 6, 18, 0.96);
  color: var(--text);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

label input:focus,
label select:focus,
label textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(79, 157, 255, 0.4);
  background: rgba(5, 9, 23, 1);
}

.form-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}

.form-success {
  margin-top: 10px;
  font-size: 13px;
  color: var(--accent-3);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 16px;
  background: rgba(7, 10, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.faq-icon {
  margin-left: 12px;
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  color: var(--muted);
  font-size: 13px;
  transition: max-height 0.2s ease-out, padding-bottom 0.2s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 10px;
}

/* CONTACTS */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}


.contacts-info p {
  color: var(--muted);
  font-size: 14px;
}

.contacts-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacts-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #eaeaff;
}

.contacts-list i {
  font-size: 18px;
  color: #7aa2ff;
  min-width: 22px;
}

.contacts-list a {
  color: #eaeaff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contacts-list a:hover {
  color: #7aa2ff;
}

.contacts-list .soon span {
  color: #7aa2ff;
  font-weight: 600;
}

.map-placeholder {
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  height: 220px;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--muted);
  background: rgba(5, 7, 18, 0.9);
}

.contacts-map {
  grid-column: 1 / -1;
}


/* FOOTER */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
  background: rgba(2, 3, 12, 0.96);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.footer-right a {
  color: var(--muted);
  text-decoration: none;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ANIMATIONS */
@keyframes bunnyEar {
  from {
    transform: rotate(-7deg);
  }
  to {
    transform: rotate(7deg);
  }
}

@keyframes barSlide {
  0% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(160%);
  }
}

@keyframes floatSlow {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -16px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

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

  .hero {
    padding-top: 70px;
  }

  .about-grid,
  .courses-grid,
  .formats-grid,
  .steps,
  .signup-grid,
  .mentors-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    gap: 16px;
  }

  .steps {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 55px 0 45px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero-card {
    max-width: 320px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .badge-card {
    width: 100%;
  }
}

.seo-text {
  max-width: 900px;
  margin-top: 18px;
  opacity: 0.9;
  line-height: 1.6;
}
.seo-text h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

