/* ══════════════════════════════════════════════════════════════════════════
   ATG Treuhand — Page Section Styles
   Homepage · Leistungsseite · Über uns · Team · Kontakt · Footer

   All colors reference --atg-* custom properties defined in atg-global.css
   (base tokens + the translucent-white / shadow / footer tokens added
   alongside this file). No hardcoded colors or fonts in this file.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════
   GLOBAL
   ═══════════════════════════════════════════════════════════════════════════ */

.atg-container {
  max-width: 1200px;
  margin: 0 auto;
}

.atg-section {
  padding: 80px 64px;
}

.atg-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--atg-accent-light);
  margin-bottom: 12px;
}

/* .atg-h2-light + .atg-h2-bold stack on consecutive lines with no gap
   between them — both are block-level with zero margin so they read
   as one two-tone heading. */
.atg-h2-light {
  display: block;
  font-weight: 300;
  font-size: 56px;
  line-height: 1.0;
  color: var(--atg-text);
  margin: 0;
}

.atg-h2-bold {
  display: block;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.0;
  color: var(--atg-accent);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.atg-nav-cta {
  background: var(--atg-navy);
  color: var(--atg-white);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
}

.atg-nav-cta:hover {
  background: var(--atg-accent);
}

/* ══════════════════════════════════════════════════════════════════════════
   HOMEPAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.atg-hero {
  min-height: 100vh;
  background: var(--atg-navy);
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  padding: 120px 64px 80px;
  position: relative;
  overflow: hidden;
}

.atg-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--atg-white-40);
  margin-bottom: 24px;
}

.atg-hero-h1-light {
  font-size: 82px;
  font-weight: 300;
  line-height: 1.0;
  color: var(--atg-white-30);
  display: block;
}

.atg-hero-h1-bold {
  font-size: 82px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.0;
  color: var(--atg-white);
  display: block;
}

.atg-hero-h1-accent {
  font-size: 82px;
  font-weight: 700;
  line-height: 1.0;
  color: var(--atg-accent-light);
  display: block;
}

.atg-hero-sub {
  font-size: 17px;
  color: var(--atg-white-55);
  line-height: 1.75;
  max-width: 460px;
  margin-top: 32px;
}

.atg-hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  align-items: center;
}

.atg-btn-primary {
  background: var(--atg-accent-light);
  color: var(--atg-white);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.atg-btn-primary:hover {
  background: var(--atg-accent);
}

.atg-btn-ghost {
  background: transparent;
  color: var(--atg-white-65);
  border: 1px solid var(--atg-white-20);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.atg-btn-ghost:hover {
  border-color: var(--atg-white-50);
  color: var(--atg-white);
}

.atg-hero-mosaic {
  position: relative;
  height: 520px;
}

.atg-hero-mosaic img:nth-child(1) {
  position: absolute;
  width: 300px;
  height: 400px;
  top: 0;
  right: 0;
  object-fit: cover;
  border-radius: var(--atg-radius);
}

.atg-hero-mosaic img:nth-child(2) {
  position: absolute;
  width: 220px;
  height: 290px;
  top: 80px;
  right: 260px;
  object-fit: cover;
  border-radius: var(--atg-radius);
  box-shadow: 0 12px 40px var(--atg-shadow-25);
}

.atg-hero-mosaic img:nth-child(3) {
  position: absolute;
  width: 160px;
  height: 200px;
  bottom: 0;
  right: 20px;
  object-fit: cover;
  border-radius: var(--atg-radius);
  box-shadow: 0 8px 24px var(--atg-shadow-20);
}

/* ── Stats Bar ────────────────────────────────────────────────────────────── */

.atg-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--atg-white-04);
  border-top: 1px solid var(--atg-white-08);
  padding: 28px 64px;
}

.atg-stat {
  text-align: center;
  border-right: 1px solid var(--atg-white-08);
}

.atg-stat:last-child {
  border-right: none;
}

.atg-stat-num {
  font-size: 28px;
  font-weight: 600;
  color: var(--atg-white);
  display: block;
}

.atg-stat-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--atg-white-35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

/* ── Marquee ──────────────────────────────────────────────────────────────── */

.atg-marquee {
  background: var(--atg-accent);
  height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.atg-marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.atg-marquee-track span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--atg-white-90);
}

.atg-marquee-sep {
  color: var(--atg-accent-light);
  margin: 0 4px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Services Section ─────────────────────────────────────────────────────── */

.atg-services {
  background: var(--atg-bg);
  padding: 100px 64px;
}

.atg-services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.atg-services-intro {
  font-size: 17px;
  color: var(--atg-text-muted);
  line-height: 1.75;
  max-width: 400px;
}

.atg-services-list {
  border-top: 1px solid var(--atg-border);
}

.atg-service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--atg-border);
  transition: background 0.2s;
}

.atg-service-row:hover {
  background: var(--atg-bg-alt);
  padding-left: 12px;
  padding-right: 12px;
  border-radius: var(--atg-radius);
}

.atg-service-num {
  font-size: 42px;
  font-weight: 300;
  color: var(--atg-text-10);
  line-height: 1;
}

.atg-service-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--atg-text);
  margin-bottom: 4px;
}

.atg-service-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.atg-service-bullets li {
  font-size: 13px;
  color: var(--atg-text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.8;
}

.atg-service-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--atg-accent-light);
  font-size: 11px;
}

.atg-service-link {
  font-size: 14px;
  color: var(--atg-accent-light);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
}

.atg-service-link:hover {
  text-decoration: underline;
}

/* ── Why ATG ──────────────────────────────────────────────────────────────── */

.atg-why {
  background: var(--atg-bg-alt);
  padding: 100px 64px;
}

.atg-why-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 80px;
  align-items: start;
}

.atg-why-body {
  font-size: 16px;
  color: var(--atg-text-muted);
  line-height: 1.8;
  max-width: 340px;
  margin-top: 24px;
}

.atg-usp-list {
  margin-top: 0;
}

.atg-usp-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--atg-border);
  align-items: start;
}

.atg-usp-item:first-child {
  border-top: 1px solid var(--atg-border);
}

.atg-usp-num {
  font-size: 52px;
  font-weight: 300;
  color: var(--atg-accent-15);
  line-height: 1;
}

.atg-usp-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--atg-text);
  margin-bottom: 6px;
}

.atg-usp-text {
  font-size: 14px;
  color: var(--atg-text-muted);
  line-height: 1.7;
}

/* ── Team Preview ─────────────────────────────────────────────────────────── */

.atg-team-preview {
  background: var(--atg-bg);
  padding: 100px 64px;
}

.atg-team-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-top: 48px;
}

.atg-team-card {
  flex: 1;
}

.atg-team-card:nth-child(2) {
  margin-top: -40px;
}

.atg-team-card:nth-child(3) {
  margin-top: 40px;
}

.atg-team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--atg-radius);
  display: block;
  margin-bottom: 16px;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.atg-team-photo:hover {
  filter: grayscale(0%);
}

.atg-team-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--atg-text);
  margin-bottom: 4px;
}

.atg-team-role {
  font-size: 13px;
  color: var(--atg-accent-light);
  font-weight: 400;
}

.atg-team-cta {
  display: block;
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  color: var(--atg-accent);
  font-weight: 500;
  text-decoration: none;
}

.atg-team-cta:hover {
  color: var(--atg-accent-light);
}

/* ── Trust Bar ────────────────────────────────────────────────────────────── */

.atg-trust {
  padding: 32px 64px;
  border-top: 1px solid var(--atg-border);
  border-bottom: 1px solid var(--atg-border);
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.atg-trust-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--atg-text-muted);
  flex-shrink: 0;
}

.atg-trust-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.atg-trust-logos img {
  height: 32px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.2s;
}

.atg-trust-logos img:hover {
  opacity: 0.75;
}

/* ── Contact Embed ────────────────────────────────────────────────────────── */

.atg-contact-embed {
  background: var(--atg-navy);
  padding: 100px 64px;
}

.atg-contact-headline {
  text-align: center;
  margin-bottom: 64px;
}

.atg-contact-headline .atg-h2-light {
  color: var(--atg-white-30);
}

.atg-contact-headline .atg-h2-bold {
  color: var(--atg-white);
}

.atg-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 960px;
  margin: 0 auto;
}

.atg-contact-details p {
  font-size: 15px;
  color: var(--atg-white-55);
  line-height: 2.2;
  margin: 0;
}

.atg-contact-details strong {
  color: var(--atg-accent-light);
  font-weight: 500;
  display: block;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.atg-form-field {
  width: 100%;
  background: var(--atg-white-05);
  border: 1px solid var(--atg-white-12);
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--atg-white);
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.atg-form-field:focus {
  outline: none;
  border-color: var(--atg-accent-light);
}

.atg-form-field::placeholder {
  color: var(--atg-white-30);
}

.atg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}

.atg-form-gdpr {
  font-size: 11px;
  color: var(--atg-white-30);
  line-height: 1.6;
  margin: 8px 0 12px;
}

.atg-btn-submit {
  width: 100%;
  background: var(--atg-accent-light);
  color: var(--atg-white);
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.atg-btn-submit:hover {
  background: var(--atg-accent);
}

/* ══════════════════════════════════════════════════════════════════════════
   LEISTUNGSSEITE
   ═══════════════════════════════════════════════════════════════════════════ */

.atg-page-hero {
  background: var(--atg-navy);
  padding: 140px 64px 80px;
  position: relative;
  overflow: hidden;
}

.atg-page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--atg-white-40);
  margin-bottom: 16px;
}

.atg-page-hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--atg-white);
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 24px;
}

.atg-page-hero-sub {
  font-size: 18px;
  color: var(--atg-white-55);
  max-width: 560px;
  line-height: 1.75;
}

.atg-page-hero-mosaic {
  position: absolute;
  right: 64px;
  top: 80px;
  width: 420px;
  height: 380px;
}

.atg-accordion-section {
  padding: 80px 64px;
}

.atg-accordion-header {
  margin-bottom: 48px;
}

.atg-accordion-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--atg-border);
  margin-bottom: 40px;
}

.atg-accordion-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--atg-text-muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.atg-accordion-tab.active {
  color: var(--atg-accent);
  border-bottom-color: var(--atg-accent);
}

.atg-accordion-content {
  display: none;
}

.atg-accordion-content.active {
  display: block;
}

.atg-accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.atg-accordion-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--atg-border);
  font-size: 15px;
  color: var(--atg-text);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.atg-accordion-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--atg-accent-light);
  font-size: 13px;
}

.atg-cta-band {
  background: var(--atg-navy-mid);
  padding: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--atg-radius);
}

.atg-cta-band-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--atg-white);
}

.atg-cta-band-sub {
  font-size: 16px;
  color: var(--atg-white-50);
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════════════════
   ÜBER UNS
   ═══════════════════════════════════════════════════════════════════════════ */

.atg-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 64px;
  align-items: center;
}

.atg-about-photo-stack {
  position: relative;
  height: 480px;
}

.atg-about-photo-stack img:nth-child(1) {
  position: absolute;
  width: 280px;
  height: 380px;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: var(--atg-radius);
}

.atg-about-photo-stack img:nth-child(2) {
  position: absolute;
  width: 220px;
  height: 300px;
  bottom: 0;
  right: 0;
  object-fit: cover;
  border-radius: var(--atg-radius);
  box-shadow: 0 12px 40px var(--atg-shadow-12);
}

.atg-values-section {
  background: var(--atg-bg-alt);
  padding: 80px 64px;
}

.atg-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.atg-value-item {
  background: var(--atg-white);
  padding: 36px 28px;
}

.atg-value-icon {
  width: 40px;
  height: 40px;
  background: var(--atg-bg-alt);
  border-radius: 50%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atg-value-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--atg-text);
  margin-bottom: 10px;
}

.atg-value-text {
  font-size: 14px;
  color: var(--atg-text-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════════════════
   TEAM PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.atg-team-page {
  padding: 100px 64px;
}

.atg-team-group {
  margin-bottom: 64px;
}

.atg-team-group-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--atg-accent-light);
  border-bottom: 1px solid var(--atg-border);
  padding-bottom: 12px;
  margin-bottom: 32px;
}

.atg-team-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.atg-team-member {
  cursor: pointer;
}

.atg-team-member-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--atg-radius);
  margin-bottom: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.atg-team-member:hover .atg-team-member-photo {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--atg-shadow-12);
}

.atg-team-member-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--atg-text);
  margin-bottom: 4px;
}

.atg-team-member-role {
  font-size: 13px;
  color: var(--atg-accent-light);
}

.atg-team-member-dept {
  font-size: 12px;
  color: var(--atg-text-muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════════════════════════════════════ */

.atg-standorte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.atg-standort-card {
  border: 1px solid var(--atg-border);
  border-radius: var(--atg-radius);
  overflow: hidden;
}

.atg-standort-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.atg-standort-info {
  padding: 20px;
}

.atg-standort-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--atg-text);
  margin-bottom: 8px;
}

.atg-standort-address {
  font-size: 13px;
  color: var(--atg-text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.atg-footer {
  background: var(--atg-footer-bg);
  padding: 64px;
}

.atg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.atg-footer-tagline {
  font-size: 13px;
  color: var(--atg-white-30);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 220px;
}

.atg-footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--atg-white-40);
  margin-bottom: 16px;
}

.atg-footer-link {
  display: block;
  font-size: 13px;
  color: var(--atg-white-28);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.atg-footer-link:hover {
  color: var(--atg-white-70);
}

.atg-footer-bottom {
  border-top: 1px solid var(--atg-white-06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--atg-white-20);
}
