/* ============================================
   AGATON IT – Komplettes Stylesheet
   Version: 2.0 (Webhosting)
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-primary: #28C6CF;
  --color-bg-dark: #111111;
  --color-bg-darker: #1A1A1A;
  --color-bg-light: #F7F8FA;
  --color-text-white: #FFFFFF;
  --color-text-light: #B0B0B0;
  --color-text-dark: #1A1A1A;
  --color-text-muted: #888;
  --color-border: rgba(40,198,207,0.15);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }


/* ============================================
   STARTSEITE – Komponentenstyles
   ============================================ */

/* --- Layout Container --- */
.agt-root {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background: #111111;
}

.agt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
}

/* --- Abschnitte --- */
.agt-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.agt-section--dark {
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.agt-section--darker {
  background-color: #111111;
  color: #FFFFFF;
}

.agt-section--light {
  background-color: #F5F5F5;
  color: #1A1A1A;
}

.agt-section--light h2,
.agt-section--light h3 {
  color: #1A1A1A;
}

.agt-section--light p {
  color: #555555;
}

.agt-section--light .agt-card {
  background: #FFFFFF;
  border-color: #E0E0E0;
}

.agt-section--light .agt-card__title {
  color: #1A1A1A;
}

.agt-section--light .agt-card__text {
  color: #555555;
}

/* --- Section Header --- */
.agt-section__header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.agt-section__header h2 {
  margin-bottom: 8px;
}

.agt-section__divider {
  width: 60px;
  height: 4px;
  background: #28C6CF;
  margin: 20px auto 24px;
  border-radius: 2px;
}

.agt-section__header p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.agt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(40, 198, 207, 0.1);
  transition: all 0.3s ease;
}

.agt-header--scrolled {
  background: rgba(17, 17, 17, 0.98);
  border-bottom-color: rgba(40, 198, 207, 0.2);
}

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

.agt-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.agt-header__logo img {
  height: 44px;
  width: auto;
}

.agt-header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.agt-header__logo-text span {
  color: #28C6CF;
}

/* Desktop Navigation */
.agt-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.agt-nav__link {
  color: #B0B0B0;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.agt-nav__link:hover {
  color: #FFFFFF;
  background: rgba(40, 198, 207, 0.08);
}

/* Dropdown */
.agt-nav__dropdown {
  position: relative;
}

.agt-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.agt-nav__dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
}

.agt-nav__dropdown:hover .agt-nav__dropdown-toggle::after {
  transform: rotate(180deg);
}

.agt-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  margin-top: 8px;
}

.agt-nav__dropdown:hover .agt-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.agt-nav__dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #B0B0B0;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.agt-nav__dropdown-item:hover {
  color: #FFFFFF;
  background: rgba(40, 198, 207, 0.1);
}

/* Phone CTA in Header - Desktop version (outside nav) */
.agt-header__cta--desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid #28C6CF;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.agt-header__cta--desktop:hover {
  background: #28C6CF;
  color: #111111;
}

.agt-header__cta--desktop svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Phone CTA in Nav - Mobile version (inside nav) */
.agt-header__cta--mobile {
  display: none;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid #28C6CF;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  justify-content: center;
  margin-top: 16px;
}

.agt-header__cta--mobile:hover {
  background: #28C6CF;
  color: #111111;
}

.agt-header__cta--mobile svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.agt-header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.agt-header__menu-btn span {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
  border-radius: 1px;
}

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

.agt-header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.agt-hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #111111;
  padding-top: 72px;
  overflow: hidden;
}

.agt-hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.agt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.agt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(40, 198, 207, 0.1);
  border: 1px solid rgba(40, 198, 207, 0.25);
  color: #28C6CF;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.agt-hero__badge svg {
  width: 16px;
  height: 16px;
}

.agt-hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.agt-hero h1 .agt-highlight {
  color: #28C6CF;
}

.agt-hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: #B0B0B0;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.agt-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.agt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.agt-btn--primary {
  background: #28C6CF;
  color: #111111;
  box-shadow: 0 4px 20px rgba(40, 198, 207, 0.3);
}

.agt-btn--primary:hover {
  background: #20A8B0;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(40, 198, 207, 0.4);
}

.agt-btn--ghost {
  background: transparent;
  color: #28C6CF;
  border: 1px solid rgba(40, 198, 207, 0.4);
}

.agt-btn--ghost:hover {
  background: rgba(40, 198, 207, 0.1);
  border-color: #28C6CF;
  color: #28C6CF;
  transform: translateY(-2px);
}

.agt-btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.agt-trust {
  padding: 40px 0;
  background: #161616;
  border-top: 1px solid rgba(40, 198, 207, 0.06);
  border-bottom: 1px solid rgba(40, 198, 207, 0.06);
}

.agt-trust__label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.agt-trust__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.agt-trust__logo {
  font-size: 18px;
  font-weight: 700;
  color: #555;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.agt-trust__logo:hover {
  opacity: 1;
  color: #B0B0B0;
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.agt-problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.agt-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
}

.agt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.agt-section--dark .agt-card,
.agt-section--darker .agt-card {
  background: #242424;
  border-color: #333;
}

.agt-section--dark .agt-card:hover,
.agt-section--darker .agt-card:hover {
  border-color: #28C6CF;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.agt-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 198, 207, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
  color: #28C6CF;
}

.agt-card__icon svg {
  width: 24px;
  height: 24px;
}

.agt-card__title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.agt-section--dark .agt-card__title,
.agt-section--darker .agt-card__title {
  color: #FFFFFF;
}

.agt-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 0;
}

.agt-section--dark .agt-card__text,
.agt-section--darker .agt-card__text {
  color: #B0B0B0;
}

.agt-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #28C6CF;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.3s ease;
  text-decoration: none;
}

.agt-card__link:hover {
  gap: 10px;
}

.agt-card__link svg {
  width: 16px;
  height: 16px;
}

/* Überleitung */
.agt-problems__transition {
  text-align: center;
  font-size: 17px;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.agt-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.agt-services__grid .agt-card {
  text-align: left;
}

.agt-services__bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 808px;
  margin: 0 auto;
}

/* ============================================
   USP SECTION
   ============================================ */
.agt-usp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.agt-usp__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.agt-usp__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 198, 207, 0.1);
  border-radius: 12px;
  color: #28C6CF;
}

.agt-usp__icon svg {
  width: 24px;
  height: 24px;
}

.agt-usp__content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.agt-section--light .agt-usp__content h3 {
  color: #1A1A1A;
}

.agt-usp__content p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================
   BRANCHES SECTION
   ============================================ */
.agt-branches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.agt-branches__bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 808px;
  margin: 0 auto;
}

/* ============================================
   ABOUT TEASER
   ============================================ */
.agt-about {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}

.agt-about__image {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #333;
  position: relative;
}

.agt-about__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,26,26,0.3), transparent);
}

.agt-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.agt-about__content h2 {
  margin-bottom: 8px;
}

.agt-about__divider {
  width: 60px;
  height: 4px;
  background: #28C6CF;
  margin: 20px 0 24px;
  border-radius: 2px;
}

.agt-about__content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.agt-about__stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}

.agt-about__stat {
  text-align: center;
}

.agt-about__stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #28C6CF;
  line-height: 1;
}

.agt-about__stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.agt-cta {
  text-align: center;
  background: linear-gradient(135deg, #111111 0%, #1a2a2b 100%);
  border-top: 1px solid rgba(40, 198, 207, 0.15);
}

.agt-cta h2 {
  margin-bottom: 16px;
}

.agt-cta p {
  color: #B0B0B0;
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.agt-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.agt-cta__contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #B0B0B0;
}

.agt-cta__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #B0B0B0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.agt-cta__contact a:hover {
  color: #28C6CF;
}

.agt-cta__contact svg {
  width: 16px;
  height: 16px;
  color: #28C6CF;
}

/* ============================================
   FOOTER
   ============================================ */
.agt-footer {
  background: #111111;
  padding: 64px 0 0;
  border-top: 1px solid #222;
}

.agt-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.agt-footer__brand p {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 0;
}

.agt-footer__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.agt-footer__logo-text span {
  color: #28C6CF;
}

.agt-footer__claim {
  font-size: 11px;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.agt-footer h4 {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.agt-footer__links li {
  margin-bottom: 10px;
}

.agt-footer__links a {
  color: #888;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.agt-footer__links a:hover {
  color: #28C6CF;
}

.agt-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 14px;
  margin-bottom: 12px;
}

.agt-footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: #28C6CF;
  flex-shrink: 0;
}

.agt-footer__contact-item a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.agt-footer__contact-item a:hover {
  color: #28C6CF;
}

/* Partner Logos Bar */
.agt-footer__partners {
  padding: 24px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.agt-footer__partner {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  letter-spacing: 1px;
}

/* Footer Bottom */
.agt-footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.agt-footer__copyright {
  font-size: 13px;
  color: #666;
}

.agt-footer__legal {
  display: flex;
  gap: 24px;
}

.agt-footer__legal a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.agt-footer__legal a:hover {
  color: #28C6CF;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.agt-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-top: 1px solid rgba(40, 198, 207, 0.2);
  gap: 8px;
}

.agt-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.agt-sticky-cta__call {
  background: #28C6CF;
  color: #111111;
}

.agt-sticky-cta__book {
  background: transparent;
  border: 1px solid #28C6CF;
  color: #28C6CF;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.agt-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.agt-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.agt-delay-1 { transition-delay: 0.1s; }
.agt-delay-2 { transition-delay: 0.2s; }
.agt-delay-3 { transition-delay: 0.3s; }
.agt-delay-4 { transition-delay: 0.4s; }
.agt-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .agt-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .agt-services__bottom {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .agt-branches__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .agt-branches__bottom {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .agt-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .agt-section {
    padding: 48px 0;
  }

  /* Container: Sichere Ränder auf Mobile */
  .agt-container {
    padding: 0 16px;
    max-width: 100%;
    overflow: hidden;
  }

  /* Alle Grids auf 1 Spalte */
  .agt-problems__grid,
  .agt-services__grid,
  .agt-services__bottom,
  .agt-usp__grid,
  .agt-branches__grid,
  .agt-branches__bottom {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 16px;
  }

  /* Karten: Kein Overflow, Text umbricht */
  .agt-card {
    padding: 24px 20px;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .agt-card__title {
    font-size: 17px;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
  }

  .agt-card__text {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Überschriften */
  .agt-section__header {
    margin-bottom: 32px;
  }

  .agt-section__header h2 {
    font-size: 24px;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .agt-section__header p {
    font-size: 15px;
  }

  /* Überleitung */
  .agt-problems__transition {
    font-size: 15px;
    padding: 0 8px;
  }

  /* Mobile Navigation */
  .agt-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #1A1A1A;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    overflow-y: auto;
  }

  .agt-nav.open {
    right: 0;
  }

  .agt-nav__link {
    padding: 14px 16px;
    font-size: 16px;
  }

  .agt-nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    margin-top: 0;
    display: none;
  }

  .agt-nav__dropdown.open .agt-nav__dropdown-menu {
    display: block;
  }

  .agt-header__cta {
    display: none;
  }

  .agt-header__cta--desktop {
    display: none !important;
  }

  .agt-header__cta--mobile {
    display: flex;
  }

  .agt-header__menu-btn {
    display: flex;
  }

  /* Mobile Overlay */
  .agt-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
  }

  .agt-nav-overlay.active {
    display: block;
  }

  /* Hero */
  .agt-hero {
    min-height: 90vh;
    min-height: 90dvh;
  }

  .agt-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .agt-hero__actions .agt-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* About */
  .agt-about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .agt-about__image {
    max-width: 260px;
    margin: 0 auto;
  }

  .agt-about__divider {
    margin: 20px auto 24px;
  }

  .agt-about__stats {
    justify-content: center;
  }

  /* Footer */
  .agt-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .agt-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .agt-footer__legal {
    justify-content: center;
  }

  /* Sticky Mobile CTA */
  .agt-sticky-cta {
    display: flex;
  }

  /* Extra bottom padding for sticky bar */
  .agt-footer {
    padding-bottom: 80px;
  }

  .agt-trust__logos {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .agt-container {
    padding: 0 16px;
  }

  .agt-card {
    padding: 24px;
  }

  .agt-about__stats {
    flex-direction: column;
    gap: 16px;
  }

  .agt-cta__contact {
    flex-direction: column;
    gap: 16px;
  }
}


/* --- Page Hero (Unterseiten) --- */
.agt-page-hero {
  padding: 140px 0 80px;
  background: #111111;
  text-align: center;
}
.agt-page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.agt-page-hero h1 .agt-highlight { color: #28C6CF; }
.agt-page-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: #B0B0B0;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.agt-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
}
.agt-breadcrumb a { color: #888; text-decoration: none; }
.agt-breadcrumb a:hover { color: #28C6CF; }

/* --- Content Blocks --- */
.agt-content {
  max-width: 800px;
  margin: 0 auto;
}
.agt-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}
.agt-section--light .agt-content h3 { color: #1A1A1A; }
.agt-content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.agt-content__divider {
  width: 60px; height: 4px;
  background: #28C6CF;
  margin: 20px 0 24px;
  border-radius: 2px;
}
.agt-content--centered { text-align: center; }
.agt-content--centered .agt-content__divider { margin: 20px auto 24px; }

/* Tech Tags */
.agt-tech-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.agt-tech-tag {
  padding: 6px 14px;
  background: rgba(40,198,207,0.1);
  border: 1px solid rgba(40,198,207,0.2);
  border-radius: 50px;
  font-size: 13px; font-weight: 500; color: #28C6CF;
}

/* Advantages */
.agt-advantages {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.agt-advantage {
  display: flex; gap: 16px; align-items: flex-start;
}
.agt-advantage__icon {
  width: 40px; height: 40px; min-width: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(40,198,207,0.1);
  border-radius: 8px; color: #28C6CF;
}
.agt-advantage__icon svg { width: 20px; height: 20px; }
.agt-advantage h3 { font-size: 16px; font-weight: 600; margin: 0 0 6px; }
.agt-advantage p { font-size: 14px; line-height: 1.6; margin: 0; color: #B0B0B0; }
.agt-section--light .agt-advantage h3 { color: #1A1A1A; }
.agt-section--light .agt-advantage p { color: #555; }

/* Steps */
.agt-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.agt-step { text-align: center; }
.agt-step__number {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(40,198,207,0.15);
  border: 2px solid #28C6CF;
  border-radius: 50%;
  font-size: 18px; font-weight: 700;
  color: #28C6CF;
  margin: 0 auto 16px;
}
.agt-step h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.agt-step p { font-size: 14px; color: #B0B0B0; margin: 0; }

/* CTA Section */
.agt-cta-section {
  text-align: center;
  background: linear-gradient(135deg, #111111 0%, #1a2a2b 100%);
  border-top: 1px solid rgba(40,198,207,0.15);
  padding: 80px 0;
}
.agt-cta-section p {
  color: #B0B0B0; font-size: 17px;
  max-width: 560px; margin: 0 auto 32px;
}
.agt-cta-section__contact {
  display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  font-size: 15px; margin-top: 24px;
}
.agt-cta-section__contact a {
  display: flex; align-items: center; gap: 8px;
  color: #B0B0B0; text-decoration: none;
}
.agt-cta-section__contact a:hover { color: #28C6CF; }
.agt-cta-section__contact svg { width: 16px; height: 16px; color: #28C6CF; }

/* Grid fix for challenge cards on mobile */
@media (max-width: 768px) {
  .agt-page-hero { padding: 110px 0 48px; }
  .agt-advantages { grid-template-columns: 1fr; }
  .agt-steps { grid-template-columns: repeat(2, 1fr); }
  .agt-challenges-grid { grid-template-columns: 1fr !important; }
  .agt-contact-grid { grid-template-columns: 1fr !important; }
  .agt-about-grid { grid-template-columns: 1fr !important; }
  .agt-cta-section__contact { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
  .agt-steps { grid-template-columns: 1fr; }
}

/* Logo als Bild */
.agt-header__logo-img {
  height: 120px;
  width: auto;
}

.agt-footer__logo-img {
  height: 120px;
  width: auto;
  margin-bottom: 12px;
}
