/* ============================================
   Erik Schnabl – Consulting & Coaching – Redesign 2025
   Farben: Grün #3BA67A, Grau #404040
   Schrift: Aptos (Fallback: Inter, sans-serif)
   ============================================ */

/* Font Face – Aptos */
@font-face {
  font-family: 'Aptos';
  src: local('Aptos'), local('Aptos Display');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aptos';
  src: local('Aptos Bold'), local('Aptos-Bold');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #3BA67A;
  --orange-dark: #2E8B65;
  --orange-light: rgba(59, 166, 122, 0.1);
  --grey-dark: #404040;
  --grey-medium: #666666;
  --grey-light: #f5f5f5;
  --white: #ffffff;
  --black: #1a1a1a;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1140px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Aptos', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--orange-dark);
}

/* Skip Navigation */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  z-index: 10000;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* Focus Visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background: var(--grey-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}
.logo-img {
  height: 68px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.main-nav .nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-left: 8px;
}
.main-nav .nav-cta:hover {
  background: var(--orange-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 3px 0;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--grey-light);
}
.section-dark {
  background: var(--grey-dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.section-dark .section-header h2 {
  color: var(--white);
}
.section-header p {
  font-size: 18px;
  color: var(--grey-medium);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}
.accent-line {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--grey-dark) 0%, #2a2a2a 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,166,122,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-content {
  flex: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(59,166,122,0.2);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--orange);
}
.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-image {
  flex: 0 0 380px;
  position: relative;
}
.hero-image-placeholder {
  width: 380px;
  height: 440px;
  background: linear-gradient(135deg, rgba(59,166,122,0.3), rgba(59,166,122,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  border: 2px dashed rgba(59,166,122,0.4);
}

/* Hero Photo */
.hero-photo {
  width: 380px;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}

/* CTA Buttons */
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(59,166,122,0.3);
}
.cta-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(59,166,122,0.4);
  transform: translateY(-1px);
}
.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--orange);
  padding: 14px 30px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.cta-secondary:hover {
  background: var(--orange);
  color: var(--white);
}
.cta-white {
  display: inline-block;
  background: var(--white);
  color: var(--grey-dark);
  padding: 16px 32px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.cta-white:hover {
  background: #f0f0f0;
  color: var(--grey-dark);
  transform: translateY(-1px);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid #eee;
  text-align: center;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.service-card p {
  color: var(--grey-medium);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card .card-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-link:hover {
  gap: 10px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--orange);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars {
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 12px;
}
.testimonial-card .quote {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}
.testimonial-card .author {
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}
.testimonial-card .role {
  font-size: 13px;
  color: var(--grey-medium);
  margin-top: 2px;
}

/* ============================================
   LOGOS / CLIENTS
   ============================================ */
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.logo-item {
  font-size: 18px;
  font-weight: 700;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.logo-item:hover {
  opacity: 1;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
  display: flex;
  gap: 48px;
  align-items: center;
}
.about-image {
  flex: 0 0 300px;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-text p {
  color: var(--grey-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.about-tag {
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  text-align: center;
  padding: 60px 24px;
}
.cta-banner h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .cta-banner p {
  color: rgba(255,255,255,0.8);
}
.cta-contact-info {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 16px;
}
.section-dark .cta-contact-info a {
  color: rgba(255,255,255,0.8);
}
.section-dark .cta-contact-info a:hover {
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #2a2a2a;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}
.footer-brand .logo {
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
}
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover {
  color: var(--orange);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-beakon-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition);
  display: block;
}
.footer-beakon-logo:hover {
  opacity: 1;
}

/* ============================================
   PAGE HEADER (Unterseiten)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--grey-dark), #2a2a2a);
  color: var(--white);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,166,122,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  position: relative;
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover {
  color: var(--orange);
}

/* ============================================
   CONTENT PAGES
   ============================================ */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}
.content-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--black);
}
.content-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--black);
}
.content-section p {
  margin-bottom: 16px;
  color: #444;
}
.content-section ul, .content-section ol {
  margin: 0 0 16px 24px;
  color: #444;
}
.content-section li {
  margin-bottom: 8px;
}

/* Feature List with icons */
.feature-list {
  list-style: none;
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--grey-light);
  border-radius: var(--radius);
}
.feature-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* Quote Block */
.quote-block {
  background: var(--grey-light);
  border-left: 4px solid var(--orange);
  padding: 24px 32px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}
.quote-block cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-medium);
}

/* Info Cards (for coaching types etc.) */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.info-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  margin-top: 0;
  font-size: 20px;
}
.info-card p {
  font-size: 16px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--black);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  background: var(--white);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  outline: none;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  font-size: 14px !important;
  color: var(--grey-medium);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-box {
  background: var(--grey-light);
  border-radius: 12px;
  padding: 32px;
}
.contact-info-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--black);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-info-item .icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.contact-info-item span,
.contact-info-item a {
  font-size: 15px;
  color: var(--grey-medium);
}

/* ============================================
   TIMELINE (Über mich)
   ============================================ */
.timeline {
  position: relative;
  padding-left: 32px;
  margin: 32px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-item .year {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}
.timeline-item h3 {
  margin: 0 0 4px;
  font-size: 18px;
}
.timeline-item p {
  font-size: 15px;
  color: var(--grey-medium);
  margin: 0;
}

/* ============================================
   REFERENZEN PAGE (All Testimonials)
   ============================================ */
.testimonials-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    margin: 0 auto 32px;
  }
  .cta-group {
    justify-content: center;
  }
  .hero-image {
    flex: auto;
    display: block;
    order: -1;
    width: 100%;
    text-align: center;
  }
  .hero-photo {
    width: 220px;
    height: 255px;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    margin: 0 auto;
    display: block;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .about-preview {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    flex: auto;
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .testimonials-full-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .hamburger {
    display: flex;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--grey-dark);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.active {
    display: flex;
  }
  .main-nav a {
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
  }
  .main-nav .nav-cta {
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
  }

  .hero {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero p {
    font-size: 17px;
  }
  .section {
    padding: 48px 0;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .page-header {
    padding: 40px 0 30px;
  }
  .page-header h1 {
    font-size: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .logos-row {
    gap: 24px;
  }
  .logo-item {
    font-size: 14px;
  }
  .cta-group {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   STRUCTURED DATA (hidden)
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switch {
  display: flex;
  gap: 2px;
  margin-left: 12px;
  flex-shrink: 0;
}
.lang-switch button {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  border: none;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.lang-switch button:first-child {
  border-radius: 4px 0 0 4px;
}
.lang-switch button:last-child {
  border-radius: 0 4px 4px 0;
}
.lang-switch button.active {
  background: var(--orange);
  color: var(--white);
}
.lang-switch button:hover:not(.active) {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

@media (max-width: 768px) {
  .lang-switch {
    margin-left: auto;
    margin-right: 12px;
  }
}
