/* PodAkademie – pure-book-763.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0033a0;
  --blue-dark: #002280;
  --teal: #006ba0;
  --magenta: #e6007e;
  --navy: #164194;
  --white: #ffffff;
  --near-black: #1a1a2e;
  --text: #2d2d2d;
  --grey-light: #f5f6fa;
  --grey-mid: #e0e4f0;
  --radius: 2.5px;
  --radius-pill: 50px;
  --shadow: 0 2px 12px rgba(0,51,160,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--magenta); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== COOKIE GDPR ===== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  z-index: 9999;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
}
.cookie-bar p { flex: 1; }
.cookie-bar a { color: #a0b8ff; text-decoration: underline; }
.cookie-bar .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--magenta);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.btn-cookie-accept:hover { background: #c4006a; }
.btn-cookie-settings {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}
.btn-cookie-settings:hover { border-color: var(--white); }

/* ===== HEADER ===== */
.site-header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1180px;
  margin: 0 auto;
  height: 68px;
}
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-link svg { height: 40px; width: auto; }
.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-text span { color: #a0c4ff; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.header-cta {
  background: var(--magenta);
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
}
.header-cta:hover { background: #c4006a !important; }

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.burger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.webp') center/cover no-repeat;
  opacity: 0.15;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 20px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-block;
  background: var(--magenta);
  color: var(--white);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 2.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero h1 span { color: #a0c4ff; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--magenta);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #c4006a; transform: translateY(-1px); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }

.hero-img { flex: 0 0 420px; }
.hero-img img {
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; display: block; }

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--grey-light); }
.section-blue { background: var(--blue); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--near-black);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-header p { font-size: 1.05rem; color: #555; max-width: 600px; margin: 0 auto; }
.section-blue .section-header h2, .section-blue .section-header p { color: var(--white); }

/* ===== COURSES GRID ===== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,51,160,0.16); }
.course-card-img { position: relative; overflow: hidden; }
.course-card-img img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.4s; }
.course-card:hover .course-card-img img { transform: scale(1.04); }
.course-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--magenta);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.course-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.course-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--near-black); margin-bottom: 8px; line-height: 1.35; }
.course-card-body p { font-size: 0.88rem; color: #666; flex: 1; margin-bottom: 14px; line-height: 1.55; }
.course-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid var(--grey-mid);
  background: var(--grey-light);
}
.course-price { font-size: 1.1rem; font-weight: 800; color: var(--blue); }
.course-duration { font-size: 0.8rem; color: #777; }
.course-duration i { margin-right: 4px; }

/* ===== PRICING TABLE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(0,51,160,0.16);
}
.pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--near-black); margin-bottom: 12px; }
.pricing-price { font-size: 2.4rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: #888; }
.pricing-period { font-size: 0.82rem; color: #888; margin-bottom: 22px; }
.pricing-features { list-style: none; margin-bottom: 26px; text-align: left; }
.pricing-features li { padding: 6px 0; font-size: 0.9rem; border-bottom: 1px solid var(--grey-mid); display: flex; align-items: center; gap: 8px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--blue); font-size: 0.8rem; }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card { text-align: center; padding: 30px 20px; }
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--near-black); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: #666; line-height: 1.55; }

/* ===== FEATURES / ABOUT ===== */
.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.features-row img { border-radius: var(--radius); box-shadow: var(--shadow); }
.features-list { list-style: none; margin-top: 18px; }
.features-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--grey-mid);
  font-size: 0.95rem;
  color: #444;
}
.features-list li:last-child { border-bottom: none; }
.features-list li i { color: var(--magenta); margin-top: 3px; flex-shrink: 0; }
.features-text h2 { font-size: 1.8rem; font-weight: 800; color: var(--near-black); margin-bottom: 14px; }
.features-text p { color: #555; line-height: 1.7; margin-bottom: 10px; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; }
.review-card p { font-size: 0.92rem; color: #555; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info strong { font-size: 0.9rem; display: block; color: var(--near-black); }
.reviewer-info span { font-size: 0.78rem; color: #888; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-mid);
  padding: 20px 0;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--near-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.faq-question i { color: var(--blue); transition: transform 0.3s; flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 14px 0 0; font-size: 0.93rem; color: #555; line-height: 1.7; }
.faq-answer.open { display: block; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 14px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== CONTACT SECTION ===== */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block h3 { font-size: 1.3rem; font-weight: 800; color: var(--near-black); margin-bottom: 18px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.55;
}
.contact-detail i {
  color: var(--blue);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.contact-form-box { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  outline: none;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group.full { grid-column: 1 / -1; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--blue);
  padding: 56px 20px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

/* ===== TEXT CONTENT (legal pages) ===== */
.text-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}
.text-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--near-black); margin: 36px 0 12px; }
.text-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--near-black); margin: 24px 0 8px; }
.text-content p { color: #555; line-height: 1.75; margin-bottom: 14px; font-size: 0.95rem; }
.text-content ul { margin: 10px 0 16px 20px; color: #555; font-size: 0.95rem; }
.text-content ul li { margin-bottom: 6px; line-height: 1.65; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--blue);
  color: rgba(255,255,255,0.8);
}
.footer-top {
  padding: 56px 20px 40px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-link { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--magenta); border-color: var(--magenta); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 18px 20px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.55); font-size: 0.82rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 12px 20px;
  background: var(--grey-light);
  font-size: 0.82rem;
  color: #888;
  max-width: 1180px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { color: var(--magenta); }
.breadcrumb span { margin: 0 6px; }

/* ===== BACK TO TOP ===== */
.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
  position: fixed;
  bottom: 80px; right: 24px;
  z-index: 500;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.back-to-top-btn.visible { opacity: 1; pointer-events: auto; }
.back-to-top-btn:hover { background: var(--blue); color: var(--white); }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-header .main-nav { display: none; }
  .burger-btn { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--blue-dark);
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 999;
  }
  .main-nav.open a { padding: 11px 16px; border-radius: var(--radius); font-size: 1rem; }
  .hero-inner { flex-direction: column; padding: 40px 20px; }
  .hero h1 { font-size: 2rem; }
  .hero-img { flex: none; width: 100%; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .courses-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-row { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-bar { flex-direction: column; text-align: center; }
  .cookie-bar .cookie-btns { justify-content: center; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .cta-section h2 { font-size: 1.6rem; }
  .section-header h2 { font-size: 1.6rem; }
}
