/* ============================================================
   saas-partner.de – Hauptstylesheet
   Autor: Andreas Pörtner MSc BBA
   ============================================================ */

/* ---------- CSS-Variablen ---------- */
:root {
  --primary:       #1a3a6b;
  --primary-light: #2557a7;
  --accent:        #0ea5e9;
  --accent-dark:   #0284c7;
  --success:       #10b981;
  --warning:       #f59e0b;
  --bg-light:      #f8fafc;
  --bg-white:      #ffffff;
  --text-dark:     #0f172a;
  --text-mid:      #334155;
  --text-light:    #64748b;
  --border:        #e2e8f0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
  --radius:        10px;
  --radius-lg:     18px;
  --transition:    .25s ease;
  --font-main:     'Inter', 'Segoe UI', system-ui, sans-serif;
  --max-width:     1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.text-center { text-align: center; }
.badge {
  display: inline-block;
  background: rgba(14,165,233,.12);
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.6rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary-light);
  color: #fff;
  border-color: var(--primary-light);
}
.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border-color: var(--primary-light);
}
.btn-outline:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-1px);
}
/* Nav-CTA "Partner werden" immer weiße Schrift */
.nav-cta.btn-primary,
.nav-cta {
  color: #fff !important;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: .95rem 2rem; font-size: 1.05rem; }

/* ---------- Header / Navigation ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.logo span.domain { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary-light);
  border-bottom-color: var(--accent);
}
.nav-cta { margin-left: .5rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---------- Hero ---------- */
#hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 55%, #1e6fa8 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--accent); }
.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-top: .1rem;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 340px;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: #fff;
}
.hero-card-main {
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
  background: rgba(255,255,255,.15);
}
.hero-card-back1 {
  width: 260px;
  top: calc(50% - 20px);
  left: calc(50% + 15px);
  transform: translate(-50%,-50%) rotate(6deg);
  z-index: 2;
  opacity: .7;
}
.hero-card-back2 {
  width: 250px;
  top: calc(50% + 15px);
  left: calc(50% - 15px);
  transform: translate(-50%,-50%) rotate(-5deg);
  z-index: 1;
  opacity: .5;
}
.hero-card-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.hero-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.hero-card-text {
  font-size: .85rem;
  opacity: .85;
}
.hero-card-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: .5rem;
}

/* ---------- Hero Image ---------- */
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  width: 100%;
  max-width: 580px;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.hero-img-badge {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: .75rem 1.2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.hero-img-badge-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1;
}
.hero-img-badge-label {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: .2rem;
}

/* ---------- Trust Bar ---------- */
#trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-icon { color: var(--success); font-size: 1rem; }

/* ---------- Sections common ---------- */
section { padding: 5rem 0; }
section:nth-child(even) { background: var(--bg-light); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .9rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(37,87,167,.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.about-feature-title { font-weight: 600; color: var(--text-dark); margin-bottom: .2rem; }
.about-feature-text { font-size: .9rem; color: var(--text-light); }
.about-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
}
.about-visual-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.about-stat-card {
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}
.about-stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.about-stat-label { font-size: .82rem; opacity: .85; margin-top: .2rem; }

/* ---------- Partner Program ---------- */
.partner-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.partner-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.partner-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.partner-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.partner-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: 1rem;
  right: -1.8rem;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem 2.2rem;
  transform: rotate(45deg);
  letter-spacing: .05em;
}
.partner-level-icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
}
.partner-level-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .3rem;
}
.partner-commission {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin: .75rem 0;
}
.partner-commission span { font-size: 1rem; font-weight: 500; color: var(--text-light); }
.partner-features { text-align: left; margin: 1.2rem 0; display: flex; flex-direction: column; gap: .6rem; }
.partner-feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-mid);
}
.partner-feature-item::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.partner-cta { margin-top: 1.5rem; }

/* ---------- SaaS Solutions ---------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.solution-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.solution-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.solution-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: .3rem;
}
.solution-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
}
.solution-desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
}
.solution-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-top: .3rem;
}
.solution-link:hover { color: var(--primary); }

/* ---------- Reseller ---------- */
.reseller-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.reseller-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all var(--transition);
}
.reseller-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.reseller-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.reseller-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}
.reseller-text { font-size: .9rem; color: var(--text-light); }

/* ---------- CTA Section ---------- */
#cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 5rem 0;
}
.cta-inner { text-align: center; }
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; color: #fff; }
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--bg-light); color: var(--primary); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,87,167,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label { font-size: .8rem; color: var(--text-light); margin-bottom: .2rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.contact-value { font-size: .95rem; color: var(--text-dark); font-weight: 500; }
.contact-form { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: .88rem; font-weight: 600; color: var(--text-mid); margin-bottom: .4rem; }
.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(37,87,167,.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: 1.2rem; }
.form-check input { margin-top: .2rem; flex-shrink: 0; }
.form-check label { font-size: .85rem; color: var(--text-light); }
.form-success {
  display: none;
  background: rgba(16,185,129,.1);
  border: 1px solid var(--success);
  border-radius: 8px;
  padding: 1rem;
  color: #065f46;
  font-size: .9rem;
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
#site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo-icon { background: rgba(255,255,255,.15); }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.7); max-width: 280px; }
.footer-col-title {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-text { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---------- Cookie Banner ---------- */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}
#cookie-banner.show { display: block; }
.cookie-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.cookie-text { font-size: .85rem; color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.6; }
.cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cookie-actions .btn { font-size: .85rem; padding: .55rem 1.2rem; }

/* ---------- Back to Top ---------- */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--primary); transform: translateY(-2px); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .partner-levels { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1rem; }
  .nav-cta { margin-left: 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { max-width: 100%; }
  .hero-stats { gap: 1.2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .partner-levels { grid-template-columns: 1fr; }
  .reseller-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: .8rem; }
  .hero-visual { display: none; }
}

/* ---------- Page-specific ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }
.page-content { padding: 4rem 0; }
.page-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 2rem 0 .75rem; }
.page-content h3 { font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin: 1.5rem 0 .5rem; }
.page-content p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
.page-content ul { margin: .75rem 0 1rem 1.5rem; list-style: disc; }
.page-content ul li { color: var(--text-mid); margin-bottom: .4rem; font-size: .95rem; }
.page-content a { color: var(--primary-light); }
.page-content a:hover { color: var(--accent); }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .5; }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp .5s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
