/* ============================================
   WoYou – Global Stylesheet
   Farbpalette:
   Primary:    #6F9EAB (Teal/Petrol)
   Dark:       #222222
   White:      #FFFFFF
   Light BG:   #F7F9FA
   Footer BG:  #1A1A1A
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: #222;
}

h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  color: #555;
  line-height: 1.7;
}

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #6F9EAB;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: #222;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #6F9EAB;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6F9EAB;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav Dropdown (Submenu) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a .dropdown-arrow {
  font-size: 0.55rem;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.nav-dropdown:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e8edf0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 200px;
  padding: 8px 0;
  z-index: 1001;
  margin-top: 8px;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu {
  display: block;
}

.nav-dropdown.open > a .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
  transition: all 0.15s ease;
}

.nav-submenu a:hover {
  background: rgba(111,158,171,0.08);
  color: #6F9EAB;
}

.nav-submenu a::after {
  display: none !important;
}

/* Mobile submenu */
.mobile-submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-submenu-toggle .m-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
  color: #999;
}

.mobile-submenu {
  display: none;
  padding-left: 20px;
}

.mobile-submenu.open {
  display: flex;
  flex-direction: column;
}

.mobile-submenu a {
  border-bottom: none !important;
  font-size: 0.95rem;
  padding: 8px 0;
  color: #666;
}

.nav-cta {
  background: #6F9EAB;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: #5a8a97;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #222;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  font-size: 1.05rem;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-weight: 500;
}

.mobile-menu .nav-cta {
  text-align: center;
  margin-top: 8px;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(111,158,171,0.75), rgba(80,120,135,0.82)),
              url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&q=80') center/cover no-repeat;
  z-index: -1;
}

/* Page-specific hero backgrounds */
.hero-bewerber .hero-bg {
  background: linear-gradient(135deg, rgba(111,158,171,0.75), rgba(80,120,135,0.82)),
              url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1600&q=80') center/cover no-repeat;
}
.hero-arbeitgeber .hero-bg {
  background: linear-gradient(135deg, rgba(111,158,171,0.75), rgba(80,120,135,0.82)),
              url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80') center/cover no-repeat;
}
.hero-berufe .hero-bg {
  background: linear-gradient(135deg, rgba(111,158,171,0.75), rgba(80,120,135,0.82)),
              url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=80') center/cover no-repeat;
}
.hero-ueber .hero-bg {
  background: linear-gradient(135deg, rgba(111,158,171,0.75), rgba(80,120,135,0.82)),
              url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80') center/cover no-repeat;
}
.hero-kontakt .hero-bg {
  background: linear-gradient(135deg, rgba(111,158,171,0.75), rgba(80,120,135,0.82)),
              url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&q=80') center/cover no-repeat;
}
.hero-faq .hero-bg {
  background: linear-gradient(135deg, rgba(111,158,171,0.75), rgba(80,120,135,0.82)),
              url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1600&q=80') center/cover no-repeat;
}
.hero-leistungen .hero-bg {
  background: linear-gradient(135deg, rgba(111,158,171,0.75), rgba(80,120,135,0.82)),
              url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80') center/cover no-repeat;
}
.hero-prozess .hero-bg {
  background: linear-gradient(135deg, rgba(111,158,171,0.75), rgba(80,120,135,0.82)),
              url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&q=80') center/cover no-repeat;
}

.hero-faq .hero-bg {
  background: linear-gradient(135deg, rgba(111,158,171,0.75), rgba(80,120,135,0.82)),
              url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1600&q=80') center/cover no-repeat;
}

.hero-inner {
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 3rem;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #6F9EAB;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #f0f7f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6F9EAB;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-teal:hover {
  background: #5a8a97;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(111,158,171,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #6F9EAB;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #6F9EAB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #6F9EAB;
  color: #fff;
}

/* === STATS BAR === */
.stats {
  background: #6F9EAB;
  padding: 48px 24px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.stat-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-top: 4px;
}

/* === SECTIONS === */
.section {
  padding: 80px 24px;
}

.section-alt {
  background: #F7F9FA;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-tag {
  color: #6F9EAB;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.step {
  text-align: center;
  padding: 32px 24px;
}

.step-num {
  width: 48px;
  height: 48px;
  background: #6F9EAB;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
}

/* === CARDS (Branchen, Vorteile, etc.) === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #e8edf0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: #6F9EAB;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(111,158,171,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #6F9EAB;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
}

/* === ADVANTAGES LIST === */
.advantages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
}

.advantage-item .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(111,158,171,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6F9EAB;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* === TWO COLUMN LAYOUT === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-text h2 {
  margin-bottom: 16px;
}

.two-col-text p {
  margin-bottom: 24px;
}

.two-col-image {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #6F9EAB, #5a8a97);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

/* === TESTIMONIAL === */
.testimonial {
  background: #F7F9FA;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 48px auto 0;
}

.testimonial blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial cite {
  color: #6F9EAB;
  font-weight: 600;
  font-style: normal;
}

/* === PRICING PACKAGES === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e8edf0;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pricing-card.featured {
  border: 2px solid #6F9EAB;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #6F9EAB;
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 1.1rem;
  color: #6F9EAB;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: #6F9EAB;
  font-weight: 700;
  flex-shrink: 0;
}

/* === TEAM === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #6F9EAB;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.team-member h4 {
  margin-bottom: 4px;
}

.team-member .role {
  color: #6F9EAB;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.team-member p {
  font-size: 0.85rem;
}

/* === FAQ === */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category h3 {
  font-size: 1.2rem;
  color: #6F9EAB;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #6F9EAB;
}

.faq-item {
  border-bottom: 1px solid #e8edf0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
}

.faq-question:hover {
  color: #6F9EAB;
}

.faq-question .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #6F9EAB;
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #6F9EAB;
  box-shadow: 0 0 0 3px rgba(111,158,171,0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
}

.radio-group input[type="radio"] {
  width: auto;
  accent-color: #6F9EAB;
}

.contact-info-box {
  background: #F7F9FA;
  border-radius: 16px;
  padding: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-info-item .icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(111,158,171,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6F9EAB;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.9rem;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #6F9EAB, #5a8a97);
  text-align: center;
  padding: 80px 24px;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* === FOOTER === */
footer {
  background: #1A1A1A;
  color: #ccc;
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  color: #999;
  font-size: 0.9rem;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: #999;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #6F9EAB;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #777;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #1A1A1A;
  color: #ccc;
  padding: 20px 24px;
  z-index: 10000;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  display: block;
}

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

.cookie-inner p {
  color: #ccc;
  font-size: 0.9rem;
  flex: 1;
  min-width: 250px;
}

.cookie-inner a {
  color: #6F9EAB;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: #6F9EAB;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.cookie-btn-accept:hover {
  background: #5a8a97;
}

.cookie-btn-decline {
  background: transparent;
  color: #ccc;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid #555;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
  border-color: #999;
  color: #fff;
}

/* === LOGO IMAGE === */
.logo-img {
  height: 31px;
  width: auto;
  display: block;
}

footer .logo-img {
  height: 21px;
}

/* === LANGUAGE DROPDOWN === */
.lang-dropdown {
  position: relative;
  margin-left: auto;
  margin-right: 16px;
  z-index: 1002;
}

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  color: #333;
  white-space: nowrap;
}

.lang-dropdown-toggle:hover {
  border-color: #6F9EAB;
  background: rgba(111,158,171,0.05);
}

.lang-dropdown-toggle .lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-dropdown-toggle .lang-label {
  font-weight: 500;
}

.lang-dropdown-toggle .lang-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
  color: #999;
}

.lang-dropdown.open .lang-dropdown-toggle {
  border-color: #6F9EAB;
  background: rgba(111,158,171,0.05);
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px;
  padding: 6px 0;
  z-index: 1003;
}

.lang-dropdown.open .lang-dropdown-menu {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  transition: background 0.15s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.lang-option:hover {
  background: rgba(111,158,171,0.08);
}

.lang-option.active {
  color: #6F9EAB;
  font-weight: 600;
  background: rgba(111,158,171,0.06);
}

.lang-option .lang-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.lang-option .lang-name {
  flex: 1;
}

/* === TAB NAVIGATION === */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 14px 36px;
  border: 2px solid #e8edf0;
  background: #fff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.tab-btn:hover {
  border-color: #6F9EAB;
  color: #6F9EAB;
}

.tab-btn.active {
  background: #6F9EAB;
  color: #fff;
  border-color: #6F9EAB;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #6F9EAB;
  font-weight: 600;
  margin-bottom: 40px;
}

/* === VERTICAL TIMELINE === */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #6F9EAB, rgba(111,158,171,0.2));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 20px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -56px;
  top: 0;
  width: 44px;
  height: 44px;
  background: #6F9EAB;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(111,158,171,0.3);
  z-index: 1;
}

.timeline-content {
  background: #fff;
  border: 1px solid #e8edf0;
  border-radius: 12px;
  padding: 24px 28px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-color: #6F9EAB;
}

.timeline-content h3 {
  margin-bottom: 8px;
  color: #222;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === FOUNDER CARD (single team member) === */
.founder-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #e8edf0;
  border-radius: 20px;
  padding: 48px 40px;
  transition: all 0.3s ease;
}

.founder-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #6F9EAB;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.founder-card h4 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.founder-card .role {
  color: #6F9EAB;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.founder-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.founder-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.founder-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6F9EAB;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #6F9EAB;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.founder-links a:hover {
  background: #6F9EAB;
  color: #fff;
}

/* === RTL SUPPORT === */
[dir="rtl"] .nav-links {
  direction: rtl;
}

[dir="rtl"] .timeline {
  padding-left: 0;
  padding-right: 60px;
}

[dir="rtl"] .timeline::before {
  left: auto;
  right: 23px;
}

[dir="rtl"] .timeline-marker {
  left: auto;
  right: -56px;
}

[dir="rtl"] .timeline-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .lang-dropdown {
  margin-left: 16px;
  margin-right: auto;
}

[dir="rtl"] .lang-dropdown-menu {
  right: auto;
  left: 0;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }

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

  .burger {
    display: flex;
  }

  .lang-dropdown {
    margin-right: 12px;
  }

  .lang-dropdown-toggle .lang-label {
    display: none;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero {
    min-height: 480px;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col-image {
    min-height: 280px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-inner {
    gap: 24px;
  }

  .tab-nav {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
  }

  .founder-card {
    padding: 32px 24px;
  }
}

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

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    min-height: 420px;
    padding: 90px 16px 50px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

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

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

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .lang-dropdown {
    margin-right: 8px;
  }

  .lang-dropdown-toggle {
    padding: 5px 8px;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline-marker {
    left: -46px;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .timeline-content {
    padding: 18px 20px;
  }

  .founder-links {
    flex-direction: column;
    align-items: center;
  }
}
