/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #e9a020;
  --primary-dark: #c8881a;
  --dark: #414e5b;
  --dark-light: #5a6978;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border: #e0e4e8;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

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

img, svg {
  max-width: 100%;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--dark-light);
  max-width: 620px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(233, 160, 32, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.navbar-logo img {
  height: 48px;
  width: auto;
}

.navbar-logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}

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

.navbar-cta {
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2c3740 100%);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233,160,32,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(233, 160, 32, 0.15);
  color: var(--primary);
  border: 1px solid rgba(233, 160, 32, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.stat-card .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-card .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ===== APPROACH ===== */
.approach {
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.approach-card {
  padding: 36px 28px;
  border-radius: 16px;
  border: 2px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.approach-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(65, 78, 91, 0.1);
}

.approach-icon {
  width: 56px;
  height: 56px;
  background: rgba(233, 160, 32, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}

.approach-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.approach-card p {
  color: var(--dark-light);
  font-size: 15px;
  line-height: 1.65;
}

.approach-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: rgba(233, 160, 32, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--light-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(65, 78, 91, 0.12);
}

.pricing-card.featured {
  border-color: var(--primary);
  position: relative;
  transform: translateY(-8px);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card .plan-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card .plan-desc {
  color: var(--dark-light);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.price {
  margin-bottom: 28px;
}

.price .amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
}

.price .currency {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  color: var(--dark);
}

.price .period {
  font-size: 14px;
  color: var(--dark-light);
  margin-left: 4px;
}

.price .mwst {
  display: block;
  font-size: 12px;
  color: var(--dark-light);
  margin-top: 2px;
}

.features-list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.features-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

/* ===== TUTORIALS / YOUTUBE ===== */
.tutorials {
  background: var(--white);
}

.tutorials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.tutorials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tutorial-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  background: var(--white);
}

.tutorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(65, 78, 91, 0.1);
}

.tutorial-thumb {
  position: relative;
  background: var(--dark);
  aspect-ratio: 16/9;
  overflow: hidden;
}

.tutorial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.play-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
  margin-left: 3px;
}

.tutorial-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(233, 160, 32, 0.5);
}

.tutorial-body {
  padding: 20px;
}

.tutorial-body h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.tutorial-body p {
  font-size: 13px;
  color: var(--dark-light);
  line-height: 1.5;
}

.tutorial-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, #2c3740 100%);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tutorial-placeholder span {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.yt-icon {
  width: 48px;
  height: 34px;
  background: #FF0000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-icon svg {
  fill: white;
  width: 20px;
}

/* ===== UEBER UNS ===== */
.about {
  background: var(--light-bg);
}

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

.about-content p {
  color: var(--dark-light);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.value-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.team-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.team-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 13px;
  color: var(--dark-light);
  line-height: 1.5;
}

/* ===== KONTAKT ===== */
.contact {
  background: var(--dark);
  padding: 80px 24px;
  text-align: center;
}

.contact .section-title {
  color: var(--white);
}

.contact .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 48px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-option {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s;
}

.contact-option:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--primary);
}

.contact-option .icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-option h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-option p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-option .btn-primary {
  font-size: 14px;
  padding: 10px 20px;
}

/* ===== FOOTER ===== */
footer {
  background: #2c3740;
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left img {
  height: 36px;
  width: auto;
}

.footer-left span {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .approach-grid,
  .pricing-grid,
  .tutorials-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .navbar-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .tutorials-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .team-grid {
    grid-template-columns: 1fr;
  }

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