/* landing-token: 6e8a */
/* ============================================================
   FinanzKompass Beratung — Theme CSS
   Brand: deep-navy #1B2A4A | gold #C9A84C | bg #F8F9FA | text #212529
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy:       #1B2A4A;
  --navy-dark:  #111c33;
  --navy-light: #243660;
  --gold:       #C9A84C;
  --gold-light: #d9bb72;
  --gold-dark:  #a8873b;
  --bg:         #F8F9FA;
  --bg-alt:     #eef0f2;
  --text:       #212529;
  --text-muted: #6c757d;
  --white:      #ffffff;
  --radius:     4px;
  --shadow:     0 4px 24px rgba(27,42,74,0.10);
  --shadow-lg:  0 8px 40px rgba(27,42,74,0.16);
  --transition: 0.25s ease;
}

/* --- Base Typography --- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6,
.uk-heading-medium, .uk-heading-small, .uk-heading-large {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--navy);
  line-height: 1.3;
}

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

/* --- Navbar --- */
.fk-navbar {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(27,42,74,0.18);
}

.fk-navbar .uk-navbar-nav > li > a {
  color: rgba(255,255,255,0.88);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 0 18px;
  transition: color var(--transition);
  min-height: 68px;
}

.fk-navbar .uk-navbar-nav > li > a:hover,
.fk-navbar .uk-navbar-nav > li.uk-active > a {
  color: var(--gold);
}

.fk-brand {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white) !important;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.fk-brand:hover {
  color: var(--gold) !important;
}

.fk-brand .brand-accent {
  color: var(--gold);
}

/* Compass icon in brand */
.fk-brand-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* Mobile offcanvas nav */
.uk-offcanvas-bar {
  background: var(--navy-dark);
}

.uk-offcanvas-bar .uk-nav-default > li > a {
  color: rgba(255,255,255,0.85);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.uk-offcanvas-bar .uk-nav-default > li > a:hover {
  color: var(--gold);
}

/* --- Hero Section --- */
.fk-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 560px;
  display: flex;
  align-items: center;
}

.fk-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.12;
}

.fk-hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background: var(--gold);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.08;
}

.fk-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.fk-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.fk-hero h1 .gold-text {
  color: var(--gold);
}

.fk-hero .hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  font-family: 'Source Sans 3', sans-serif;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.fk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Geometric accent lines */
.fk-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 60%, transparent 100%);
}

/* Hero image card */
.fk-hero-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(201,168,76,0.3);
}

.fk-hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(27,42,74,0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

.fk-hero-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Buttons --- */
.fk-btn-primary {
  background: var(--gold);
  color: var(--navy) !important;
  border: 2px solid var(--gold);
  padding: 13px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.fk-btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.fk-btn-outline {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 13px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fk-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white) !important;
}

.fk-btn-navy {
  background: var(--navy);
  color: var(--white) !important;
  border: 2px solid var(--navy);
  padding: 13px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fk-btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* --- Section Utilities --- */
.fk-section {
  padding: 80px 0;
}

.fk-section-alt {
  padding: 80px 0;
  background: var(--bg-alt);
}

.fk-section-navy {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}

.fk-section-navy h2,
.fk-section-navy h3 {
  color: var(--white);
}

.fk-section-navy p {
  color: rgba(255,255,255,0.82);
}

.fk-section-title {
  text-align: center;
  margin-bottom: 56px;
}

.fk-section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.fk-section-title .subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.fk-gold-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 20px;
  border-radius: 2px;
}

.fk-gold-divider-left {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 20px;
  border-radius: 2px;
}

/* --- Service Cards --- */
.fk-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: all var(--transition);
  height: 100%;
}

.fk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fk-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(27,42,74,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}

.fk-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
}

.fk-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.fk-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

/* --- Team Cards --- */
.fk-team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  height: 100%;
}

.fk-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fk-team-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.fk-team-card-body {
  padding: 24px;
  border-top: 3px solid var(--gold);
}

.fk-team-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.fk-team-card-body .role {
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.fk-team-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* --- Stats / Numbers --- */
.fk-stat {
  text-align: center;
  padding: 24px;
}

.fk-stat .number {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.fk-stat .label {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Process Steps --- */
.fk-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.fk-step-num {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}

.fk-step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.fk-step-content p {
  color: var(--text-muted);
  margin: 0;
}

/* --- Testimonial / Quote --- */
.fk-quote {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  position: relative;
}

.fk-quote::before {
  content: '"';
  font-family: 'Merriweather', Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.fk-quote-text {
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.fk-quote-author {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}

.fk-quote-role {
  color: var(--text-muted);
  font-size: 13px;
}

/* --- CTA Banner --- */
.fk-cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

.fk-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.08;
}

.fk-cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.fk-cta-banner p {
  color: rgba(255,255,255,0.78);
}

/* --- Contact Form --- */
.fk-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.fk-form-group {
  margin-bottom: 24px;
}

.fk-form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.fk-form-group input,
.fk-form-group select,
.fk-form-group textarea {
  width: 100%;
  border: 1.5px solid #dee2e6;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.fk-form-group input:focus,
.fk-form-group select:focus,
.fk-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
  background: var(--white);
}

.fk-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- FAQ Accordion --- */
.fk-faq .uk-accordion-title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 8px;
  border-left: 3px solid var(--gold);
  transition: background var(--transition);
}

.fk-faq .uk-accordion-title:hover {
  background: var(--bg-alt);
}

.fk-faq .uk-accordion-content {
  padding: 16px 20px 20px 20px;
  color: var(--text-muted);
  font-size: 15px;
  background: var(--bg-alt);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: -8px;
  margin-bottom: 8px;
}

/* --- Footer --- */
.fk-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 0;
}

.fk-footer h4 {
  color: var(--gold);
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.fk-footer p, .fk-footer address {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  font-style: normal;
}

.fk-footer a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color var(--transition);
  text-decoration: none;
}

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

.fk-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fk-footer-nav li {
  margin-bottom: 8px;
}

.fk-footer-bottom {
  background: rgba(0,0,0,0.25);
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.fk-footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin: 0;
}

.fk-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.fk-footer-legal a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

.fk-footer-legal a:hover {
  color: var(--gold);
}

/* --- Page Hero (inner pages) --- */
.fk-page-hero {
  background: var(--navy);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.fk-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--gold);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.06;
}

.fk-page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.fk-page-hero .breadcrumb {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.fk-page-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.fk-page-hero .breadcrumb a:hover {
  color: var(--gold);
}

.fk-page-hero .breadcrumb span {
  color: var(--gold);
}

/* --- Success Page --- */
.fk-success-icon {
  width: 80px;
  height: 80px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 2px solid var(--gold);
}

.fk-success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
}

/* --- Impressum / Legal --- */
.fk-legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.fk-legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--navy);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.fk-legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.fk-legal-content p,
.fk-legal-content li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.fk-legal-content ul {
  padding-left: 20px;
}

/* --- Utility Classes --- */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }

.uk-badge-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border-radius: 3px;
  padding: 3px 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Override UIkit primary button for consistency */
.uk-button-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border: none;
}
.uk-button-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* --- Breadcrumb --- */
.uk-breadcrumb > * > * {
  color: rgba(255,255,255,0.55);
}
.uk-breadcrumb > :last-child > * {
  color: var(--gold);
}
.uk-breadcrumb > :not(:last-child) > ::after {
  color: rgba(255,255,255,0.3);
}

/* --- Feature List with Gold Icons --- */
.fk-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fk-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
}

.fk-check-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* --- Image Feature Block --- */
.fk-img-feature {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(27,42,74,0.08);
}

.fk-img-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Membership Badges --- */
.fk-membership {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
  margin-bottom: 12px;
}

.fk-membership svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dark);
  flex-shrink: 0;
}

.fk-membership span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* --- Trust Bar --- */
.fk-trust-bar {
  background: var(--bg-alt);
  padding: 28px 0;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.fk-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.fk-trust-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dark);
}

.fk-trust-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* --- Responsive Adjustments --- */
@media (max-width: 960px) {
  .fk-hero {
    min-height: auto;
  }

  .fk-hero-content {
    padding: 56px 0;
  }

  .fk-section, .fk-section-alt, .fk-section-navy {
    padding: 56px 0;
  }

  .fk-form-wrap {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .fk-hero h1 {
    font-size: 1.75rem;
  }

  .fk-section-title h2 {
    font-size: 1.5rem;
  }

  .fk-cta-banner {
    padding: 48px 0;
  }

  .fk-step {
    flex-direction: column;
    gap: 12px;
  }
}
