@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --blue:    #0A2744;
  --yellow:  #FECB01;
  --light:   #EEEEEE;
  --dark:    #202020;
  --white:   #FFFFFF;
  --radius:  18px;
  --radius-sm: 10px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:  0 8px 32px rgba(10,39,68,0.13);
  --shadow-hover: 0 16px 48px rgba(10,39,68,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { font-family: 'Inter', sans-serif; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }

.highlight { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--yellow); }
.highlight-blue { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--blue); }

.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow); display: inline-block; margin-bottom: 1rem;
}
.section-label.dark { color: var(--blue); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section { padding: 100px 0; }
section.bg-blue   { background: var(--blue); color: var(--white); }
section.bg-light  { background: var(--light); }
section.bg-dark   { background: var(--dark); color: var(--white); }
section.bg-white  { background: var(--white); }

/* NAV */
nav {
  position: relative; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--blue); padding: 0 3rem; height: 88px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 24px rgba(10,39,68,0.18);
}
nav.scrolled { height: 88px; }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.01em; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--yellow); transition: width var(--transition); border-radius: 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { background: var(--yellow) !important; color: var(--blue) !important; padding: 0.5rem 1.25rem; border-radius: var(--radius-sm); font-weight: 700 !important; transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important; }
.nav-login { display: inline-flex; align-items: center; gap: 0.4rem; }
.nav-login::before { content: ''; width: 14px; height: 14px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; opacity: 0.7; transition: opacity var(--transition); }
.nav-login:hover::before { opacity: 1; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #ffd740 !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(254,203,1,0.35) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); letter-spacing: 0.01em; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 16px rgba(10,39,68,0.25); }
.btn-primary:hover { background: #0d3461; box-shadow: 0 8px 28px rgba(10,39,68,0.35); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); box-shadow: var(--shadow-hover); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); box-shadow: 0 4px 20px rgba(255,255,255,0.1); }
.btn-white { background: var(--white); color: var(--blue); box-shadow: 0 4px 16px rgba(10,39,68,0.15); }
.btn-white:hover { background: var(--light); box-shadow: 0 8px 28px rgba(10,39,68,0.25); }

/* CARDS */
.card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card.card-blue { background: var(--blue); color: var(--white); }
.card.card-dark { background: var(--dark); color: var(--white); }

/* IMAGE PLACEHOLDERS */
.img-placeholder { background: linear-gradient(135deg, var(--light) 0%, #d8d8d8 100%); border-radius: var(--radius-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #999; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; gap: 0.5rem; border: 2px dashed #ccc; }
.video-placeholder { background: var(--dark); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; gap: 0.75rem; cursor: pointer; transition: var(--transition); border: 2px dashed rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.video-placeholder:hover { border-color: var(--yellow); color: var(--yellow); }
.play-icon { width: 56px; height: 56px; background: rgba(254,203,1,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.video-placeholder:hover .play-icon { background: rgba(254,203,1,0.3); transform: scale(1.1); }

/* SECTION HEADER */
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; color: #666; line-height: 1.7; }
.section-header.on-dark p { color: rgba(255,255,255,0.7); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.tag { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(254,203,1,0.15); color: var(--blue); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 100px; border: 1px solid rgba(254,203,1,0.3); }
.tag.tag-white { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.2); }

.divider { width: 48px; height: 4px; background: var(--yellow); border-radius: 4px; margin: 1.25rem 0; }
.divider.centered { margin: 1.25rem auto; }

/* FOOTER */
footer { background: var(--blue); color: rgba(255,255,255,0.75); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 80px; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 260px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-regions { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; margin-bottom: 0.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.25rem; }
.footer-regions-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.footer-regions-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; }
.footer-regions-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-regions-links a:hover { color: var(--yellow); }

.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; transition: background var(--transition), transform var(--transition); }
.social-link:hover { background: rgba(254,203,1,0.2); transform: translateY(-2px); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-up { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* STATS */
.stat-number { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--yellow); line-height: 1; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 0.35rem; }

/* CALENDLY PLACEHOLDER */
.calendly-embed { background: var(--light); border-radius: var(--radius); min-height: 680px; display: flex; align-items: center; justify-content: center; border: 2px dashed #ccc; flex-direction: column; gap: 1rem; color: #888; font-size: 0.9rem; font-weight: 600; }
.calendly-embed svg { opacity: 0.35; width: 48px; height: 48px; }

/* TESTIMONIALS */
.testimonial { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.testimonial::before { content: '"'; position: absolute; top: 1rem; right: 1.5rem; font-family: 'Libre Baskerville', serif; font-size: 4rem; color: var(--yellow); opacity: 0.5; line-height: 1; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: #444; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--light); overflow: hidden; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: #888; margin-top: 0.1rem; }

/* CLIENT LOGOS */
.client-logo { height: 48px; background: var(--light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #999; letter-spacing: 0.05em; transition: background var(--transition), color var(--transition), transform var(--transition); cursor: default; padding: 0 1.5rem; }
.client-logo:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* TEAM CARDS */
.team-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); background: var(--white); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-card-body { padding: 1.5rem; }
.team-card-name { font-size: 1.25rem; font-weight: 900; margin-bottom: 0.25rem; }
.team-card-role { font-size: 0.85rem; color: var(--blue); font-weight: 600; margin-bottom: 0.75rem; }
.team-card-bio { font-size: 0.88rem; color: #666; line-height: 1.65; }

/* PODCAST */
.podcast-episode { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08); transition: background var(--transition), border-color var(--transition); cursor: pointer; }
.podcast-episode:hover { background: rgba(255,255,255,0.1); border-color: rgba(254,203,1,0.3); }
.episode-thumb { width: 80px; height: 80px; border-radius: var(--radius-sm); flex-shrink: 0; }
.episode-number { font-size: 0.72rem; font-weight: 700; color: var(--yellow); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.episode-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--white); }
.episode-guest { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* FEATURE LIST */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.feature-list li::before { content: ''; width: 20px; height: 20px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l3.5 3.5L15 7' stroke='%230A2744' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: cover; }

/* PAGE HERO */
.page-hero { background: var(--blue); padding: 80px 0 100px; color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(254,203,1,0.08) 0%, transparent 70%); pointer-events: none; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 580px; line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) {
  section { padding: 72px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--blue); flex-direction: column; padding: 1.5rem 2rem 2rem; gap: 1.25rem; box-shadow: 0 8px 32px rgba(10,39,68,0.3); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { width: 100%; justify-content: center; }
}
@media (max-width: 480px) { .container { padding: 0 1.25rem; } section { padding: 56px 0; } .page-hero { padding: 130px 0 72px; } }

/* ===== Cookie-Consent (consent.js) ===== */
#komo-consent { position: fixed; inset: 0; z-index: 9999; display: none; align-items: flex-end; justify-content: center; background: rgba(10,39,68,0.45); backdrop-filter: blur(3px); padding: 1rem; }
#komo-consent.visible { display: flex; }
#komo-consent .cc-card { background: var(--white); border-radius: var(--radius); max-width: 560px; width: 100%; box-shadow: 0 20px 60px rgba(10,39,68,0.3); overflow: hidden; animation: ccUp 0.35s ease; }
@keyframes ccUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
#komo-consent .cc-body { padding: 1.85rem 1.85rem 1.25rem; }
#komo-consent .cc-body h3 { font-size: 1.25rem; font-weight: 900; color: var(--blue); margin: 0 0 0.6rem; }
#komo-consent .cc-body > p { font-size: 0.88rem; line-height: 1.6; color: #555; margin: 0 0 1.25rem; }
#komo-consent .cc-body > p a { color: var(--blue); font-weight: 700; text-decoration: underline; }
#komo-consent .cc-services { display: flex; flex-direction: column; gap: 0.6rem; }
#komo-consent .cc-service { display: flex; gap: 0.9rem; align-items: flex-start; background: #f6f7f9; border-radius: var(--radius-sm); padding: 0.85rem 1rem; cursor: pointer; }
#komo-consent .cc-locked { opacity: 0.75; cursor: default; }
#komo-consent .cc-text { display: flex; flex-direction: column; gap: 0.15rem; }
#komo-consent .cc-text strong { font-size: 0.9rem; color: var(--blue); font-weight: 800; }
#komo-consent .cc-text span { font-size: 0.78rem; color: #666; line-height: 1.45; }
#komo-consent .cc-toggle { position: relative; flex-shrink: 0; width: 42px; height: 24px; margin-top: 2px; }
#komo-consent .cc-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
#komo-consent .cc-slider { position: absolute; inset: 0; background: #c9ced6; border-radius: 999px; transition: background var(--transition); }
#komo-consent .cc-slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform var(--transition); box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
#komo-consent .cc-toggle input:checked + .cc-slider { background: var(--blue); }
#komo-consent .cc-toggle input:checked + .cc-slider::before { transform: translateX(18px); }
#komo-consent .cc-toggle input:disabled + .cc-slider { background: var(--blue); }
#komo-consent .cc-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; padding: 1rem 1.85rem 1.6rem; border-top: 1px solid #eee; }
#komo-consent .cc-btn { flex: 1; min-width: 120px; padding: 0.7rem 1rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.85rem; cursor: pointer; border: none; transition: all var(--transition); font-family: inherit; }
#komo-consent .cc-decline { background: transparent; color: #777; border: 1px solid #d5d5d5; }
#komo-consent .cc-decline:hover { background: #f2f2f2; color: var(--blue); }
#komo-consent .cc-save { background: var(--blue); color: var(--white); }
#komo-consent .cc-save:hover { background: #0d3257; }
#komo-consent .cc-accept { background: var(--yellow); color: var(--blue); }
#komo-consent .cc-accept:hover { background: #ffd740; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(254,203,1,0.4); }
/* Calendly-Platzhalter vor Consent */
.calendly-placeholder { min-height: 360px; background: var(--light); border-radius: var(--radius-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; border: 2px dashed #d0d0d0; color: #777; font-size: 0.88rem; text-align: center; padding: 2rem; }
.calendly-placeholder p { margin: 0; max-width: 320px; line-height: 1.55; }
@media (max-width: 480px) { #komo-consent .cc-btn { flex: 1 1 100%; } }
