/* ============================================================
   anatal Exclusiv – Stylesheet
   Schriften: Cormorant Garamond (Headings) + DM Sans (Body)
   ============================================================ */

/* ─── Custom Properties ──────────────────────────────────── */
:root {
  --navy:        #0C1B33;
  --navy-mid:    #152642;
  --navy-light:  #1E3560;
  --gold:        #C8993A;
  --gold-light:  #E2B96A;
  --gold-pale:   #F5E9CE;
  --cream:       #FAF7F2;
  --white:       #FFFFFF;
  --text-muted:  #8A9BB5;
  --text-light:  #C5CEDC;
  --border:      rgba(200, 153, 58, 0.2);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;

  --transition:  0.2s ease;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  transition: color var(--transition);
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.005em;
}

h3 {
  font-size: 1.6rem;
  font-weight: 400;
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--gold-light);
}

p {
  line-height: 1.7;
}

/* ─── Utilities ──────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 580px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(200, 153, 58, 0.4);
  color: var(--gold-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--transition), background-color var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  background-color: rgba(200, 153, 58, 0.08);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--transition);
}

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

.btn-ghost svg {
  transition: transform var(--transition);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ─── Navigation ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 6%;
  background-color: rgba(12, 27, 51, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-light);
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--gold-light);
}

.nav-cta {
  background-color: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition) !important;
}

.nav-cta:hover {
  background-color: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 6% 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(200, 153, 58, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(30, 53, 96, 0.8) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(200, 153, 58, 0.12);
  border: 1px solid rgba(200, 153, 58, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 153, 58, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  min-width: 160px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ─── Sections – shared layout ───────────────────────────── */
section {
  padding: 6rem 6%;
}

/* ─── Intro / Value Prop ─────────────────────────────────── */
.intro {
  background-color: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text h2 {
  margin-bottom: 1.25rem;
}

.intro-text .section-lead {
  margin-bottom: 0;
}

.intro-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 153, 58, 0.1);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background-color var(--transition);
}

.feature-item:hover {
  border-color: rgba(200, 153, 58, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background-color: rgba(200, 153, 58, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.feature-title {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Use Cases ──────────────────────────────────────────── */
.use-cases {
  background-color: var(--navy);
}

.use-cases-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.use-cases-header h2 {
  margin-bottom: 1rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
}

.case-card {
  background-color: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform var(--transition);
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.case-card:hover {
  border-color: rgba(200, 153, 58, 0.3);
  transform: translateY(-3px);
}

.case-card:hover::before {
  opacity: 1;
}

.case-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: rgba(200, 153, 58, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.case-title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.case-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background-color: rgba(200, 153, 58, 0.08);
  border: 1px solid rgba(200, 153, 58, 0.2);
  color: var(--gold-light);
}

/* ─── Process ────────────────────────────────────────────── */
.process {
  background-color: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.process-header h2 {
  margin-bottom: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.steps::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 153, 58, 0.35) 20%,
    rgba(200, 153, 58, 0.35) 80%,
    transparent 100%
  );
}

.step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.step-title {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Proof / Referenzen ─────────────────────────────────── */
.proof {
  background-color: var(--navy);
}

.proof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
}

.proof-text h2 {
  margin-bottom: 1.25rem;
}

.proof-text .section-lead {
  margin-bottom: 0;
}

.proof-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.logo-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.logo-box:hover {
  border-color: rgba(200, 153, 58, 0.25);
  color: var(--text-light);
}

.logo-box strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.proof-highlight {
  background-color: rgba(200, 153, 58, 0.06);
  border: 1px solid rgba(200, 153, 58, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.proof-highlight h3 {
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.proof-highlight p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.proof-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proof-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-row:last-child {
  border-bottom: none;
}

.proof-row-label {
  color: var(--text-muted);
}

.proof-row-value {
  font-weight: 500;
  color: var(--gold-light);
}

/* ─── Why Us ─────────────────────────────────────────────── */
.why {
  background-color: var(--navy-mid);
  border-top: 1px solid var(--border);
}

.why-header {
  margin-bottom: 3.5rem;
}

.why-header h2 {
  margin-bottom: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
}

.why-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition);
}

.why-card:hover {
  border-color: rgba(200, 153, 58, 0.2);
}

.why-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.why-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.why-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CTA ────────────────────────────────────────────────── */
.cta-section {
  background-color: var(--navy);
  text-align: center;
  padding: 7rem 6%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200, 153, 58, 0.06) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  margin-bottom: 1.25rem;
}

.cta-section .section-lead {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-contact-info {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-item a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background-color: #080F1D;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-light);
}

/* ─── Hero Entry Animations ──────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge   { animation: fadeUp 0.6s ease 0.1s both; }
.hero h1      { animation: fadeUp 0.6s ease 0.2s both; }
.hero-sub     { animation: fadeUp 0.6s ease 0.35s both; }
.hero-actions { animation: fadeUp 0.6s ease 0.5s both; }
.hero-stats   { animation: fadeUp 0.7s ease 0.4s both; }

/* ─── Responsive: Tablet (max 1024px) ───────────────────── */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .steps::after {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Responsive: Small Tablet / Large Mobile (max 768px) ── */
@media (max-width: 768px) {
  section {
    padding: 4rem 5%;
  }

  /* Nav */
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(12, 27, 51, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 0.85rem 6%;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-menu a.nav-cta {
    margin: 1rem 6%;
    width: calc(100% - 12%);
    text-align: center;
    border-radius: var(--radius-sm);
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 7rem 5% 5rem;
    flex-direction: column;
    justify-content: flex-end;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-stats {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    gap: 1rem;
  }

  .stat-card {
    flex: 1 1 130px;
    min-width: 120px;
    padding: 1.1rem 1rem;
  }

  .hero-scroll {
    display: none;
  }

  /* Intro */
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Proof */
  .proof-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* CTA contact */
  .cta-contact-info {
    gap: 1.5rem;
  }

  /* Footer */
  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── Responsive: Mobile (max 480px) ────────────────────── */
@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-outline {
    width: 100%;
    max-width: 320px;
  }

  .proof-logos {
    grid-template-columns: 1fr;
  }

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

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

  .stat-card {
    flex: 1 1 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}
