@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Space+Grotesk:wght@600&display=swap');

/* Базовий CSS reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  text-rendering: optimizeSpeed;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ----------- */


:root {
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;

  --color-background: #F8FAFC;
  --color-primary: #2563EB;
  --color-accent: #10B981;
  --color-text: #1E293B;
  --color-muted: #64748B;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-top: 0;
  color: var(--color-primary);
  line-height: 1.3;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.2s;
}

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

@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    display: none;
  }
  /* Тут можна буде зробити burger menu */
}

.hero-block {
  background-color: var(--color-background);
  padding: 4rem 1rem 3rem;
}

.hero-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-block__text {
  flex: 1 1 500px;
}

.hero-block__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hero-block__desc {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.hero-block__btn {
  background-color: var(--color-accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.hero-block__btn:hover {
  background-color: #0ea37e;
}

.hero-block__image {
  flex: 1 1 500px;
  text-align: center;
}

.hero-block__image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Адаптив */
@media (max-width: 768px) {
  .hero-block__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-block__text {
    order: 2;
  }

  .hero-block__image {
    order: 1;
  }
}
.stats-block {
  padding: 4rem 1rem;
  background: #ffffff;
}

.stats-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.stats-block__image {
  flex: 1 1 400px;
  text-align: center;
}

.stats-block__image img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.stats-block__content {
  flex: 1 1 500px;
}

.stats-block__title {
  font-size: 2rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.stats-block__title .highlight {
  color: var(--color-accent);
  background: rgba(16, 185, 129, 0.1);
  padding: 0 0.25rem;
  border-radius: 0.25rem;
}

.stats-block__desc {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.stats-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  flex: 1;
  min-width: 100px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-accent);
}

.stat-label {
  display: block;
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.review-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.review-logo {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.review-logo img {
  width: 40px;
  margin-bottom: 0.5rem;
}

.review-logo p {
  font-size: 0.9rem;
  color: var(--color-text);
}


.result-section {
  padding: 4rem 1rem;
  background-color: #f9fafb;
}

.result-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.result-section__text {
  flex: 1 1 500px;
}

.result-section__image {
  flex: 1 1 400px;
  text-align: center;
}

.result-section__image img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.result-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.result-title .accent {
  color: var(--color-accent);
}

.result-desc {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.result-list {
  list-style: none;
  padding-left: 0;
}

.result-list li {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text);
}

.result-list li span {
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Адаптив */
@media (max-width: 768px) {
  .result-section__inner {
    flex-direction: column;
  }

  .result-section__text,
  .result-section__image {
    flex: 1 1 100%;
    text-align: center;
  }

  .result-list {
    text-align: left;
  }
}

.reviews-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.reviews-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: #f1f5f9;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.review-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.review-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}

.review-course {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}
.faq-section {
  padding: 4rem 1rem;
  background-color: #f8fafc;
}

.faq-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  width: 100%;
  text-align: left;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}

.site-footer {
  background: linear-gradient(135deg, #0f1e37, #1e293b);
  color: #ffffff;
  padding: 3.5rem 1rem 2rem;
  font-size: 0.95rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-logo {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.footer-slogan {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-columns {
  display: flex;
  flex: 2 1 600px;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

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

.footer-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e2e8f0;
}

.footer-list a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Адаптив */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-columns {
    flex-direction: column;
  }
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #0f1e37;
  color: #ffffff;
  padding: 1rem;
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  font-size: 0.95rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-popup__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.cookie-popup__inner a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-popup__btn {
  background-color: var(--color-accent);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cookie-popup__btn:hover {
  background-color: #0ea37e;
}

@media (max-width: 768px) {
  .cookie-popup__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-popup__btn {
    align-self: flex-end;
  }
}

.learning-intro {
  padding: 4rem 1rem 2rem;
  text-align: center;
  background-color: #f9fafb;
}

.learning-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.learning-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto;
}

.learning-steps {
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-accent);
  flex-shrink: 0;
  width: 40px;
}

.step-content h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--color-text);
  font-size: 0.95rem;
}

.learning-includes {
  background-color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.includes-title {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.includes-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  display: grid;
  gap: 1rem;
  font-size: 1rem;
  color: var(--color-text);
}

.includes-list li {
  padding: 0.75rem 1rem;
  background: #f1f5f9;
  border-radius: 0.75rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-section {
  padding: 4rem 1rem;
  background-color: #f8fafc;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-title {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-details li {
  margin-bottom: 0.75rem;
}

.contact-form {
  flex: 1 1 500px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #f9fafb;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-checkbox {
  font-size: 0.85rem;
  color: var(--color-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.contact-checkbox a {
  color: var(--color-accent);
  text-decoration: underline;
}

.contact-btn {
  background-color: var(--color-accent);
  color: white;
  padding: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn:hover {
  background-color: #0ea37e;
}

/* Адаптив */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
.pages {
  padding: 4rem 1rem;
  background-color: #ffffff;
  color: var(--color-text);
  font-family: var(--font-body);
}

.pages .container {
  max-width: 800px;
  margin: 0 auto;
}

.pages h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.pages h2 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.pages p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.pages ul,
.pages ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.pages li {
  margin-bottom: 0.75rem;
}

.pages a {
  color: var(--color-accent);
  text-decoration: underline;
}

.pages a:hover {
  text-decoration: none;
}

