/* WortWelle Hamburg — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Tenor+Sans&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #283433;
  --color-secondary: #4D5C4D;
  --color-accent: #B8C8BA;
  --color-white: #FFFFFF;
  --color-lightgray: #F4F4F4;
  --color-black: #000000;
  --color-gray: #A3A9AA;
  --footer-bg: #283433;
  --footer-text: #F5F5F5;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  color: var(--color-primary);
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ==================== CONTAINER ==================== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== HEADER ==================== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
}

.header-gradient {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.navbar {
  height: 118px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.left-nav, .right-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.right-nav { justify-content: flex-end; }

.center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.center-logo a {
  display: flex;
  align-items: center;
}

.nav-link {
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav-link:hover { opacity: 0.75; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.burger-btn span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  display: block;
  transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40, 52, 51, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.is-open { display: flex; }

.mobile-menu a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  font-family: Georgia, serif;
}

.mobile-menu-close {
  position: absolute;
  top: 30px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40,52,51,0.72) 0%, rgba(40,52,51,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 118px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.visible { opacity: 1; transform: none; }

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-accent);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.1);
}

/* ==================== INTRO SECTION ==================== */
.intro {
  padding: 100px 0;
  background: var(--color-white);
}

.intro-text {
  max-width: 820px;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.5;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.intro-text.visible { opacity: 1; transform: none; }

/* ==================== SERVICES SECTION ==================== */
.services {
  padding: 80px 0 0;
}

.section-title-overlay {
  padding: 0 0 40px;
}

.large-title {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--color-primary);
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,52,51,0.4);
}

.card-title-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  z-index: 2;
}

.card-large-title {
  font-size: clamp(24px, 3.5vw, 44px);
  color: #ffffff;
  font-weight: 400;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.card-content h3 {
  font-size: clamp(20px, 2.5vw, 30px);
  color: #ffffff;
  margin-bottom: 16px;
}

.card-content p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 28px;
}

.card-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent) !important;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s;
}

.card-btn:hover { background: rgba(184,200,186,0.15); }

.services-description {
  padding: 60px 0;
  background: var(--color-lightgray);
}

.services-description p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-primary);
  max-width: 860px;
}

/* ==================== STATS SECTION ==================== */
.stats {
  padding: 80px 0;
  background-color: #4D5C4D;
}

.stats-title {
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--color-accent);
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.stats-title.visible { opacity: 1; transform: none; }

.stats-grid {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.visible { opacity: 1; transform: none; }

.stat-value {
  font-size: clamp(36px, 5vw, 64px);
  color: #ffffff;
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(184,200,186,0.35);
  flex-shrink: 0;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.benefits-inner {
  position: relative;
  z-index: 1;
}

.benefits-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--color-primary);
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-number {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  min-width: 28px;
  padding-top: 3px;
}

.benefit-title {
  font-size: 18px;
  font-weight: 400;
  font-family: Georgia, serif;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.7;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
  padding: 100px 0;
  background: var(--color-lightgray);
}

.pricing-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--color-primary);
  margin-bottom: 16px;
}

.pricing-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--color-gray);
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: #ffffff;
  padding: 40px 32px;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.price-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(40,52,51,0.1);
}

.price-card.featured {
  border-color: var(--color-secondary);
  background: var(--color-primary);
  color: #ffffff;
}

.price-tag {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.price-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.price-card.featured h3 { color: #ffffff; }

.price-amount {
  font-size: 48px;
  font-family: Georgia, serif;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.price-card.featured .price-amount { color: var(--color-accent); }

.price-period {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-gray);
  margin-bottom: 28px;
}

.price-card.featured .price-period { color: rgba(184,200,186,0.7); }

.price-features {
  list-style: none;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-lightgray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card.featured .price-features li {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.1);
}

.price-features li i {
  color: var(--color-accent);
  font-size: 14px;
  flex-shrink: 0;
}

.price-cta {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  font-size: 15px;
  transition: all 0.2s;
}

.price-card.featured .price-cta {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.price-cta:hover {
  background: var(--color-secondary);
  color: #ffffff;
}

.price-card.featured .price-cta:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* ==================== FOUNDER/TEAM SECTION ==================== */
.about-founder {
  padding: 100px 0;
  background: #ffffff;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
}

.founder-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.founder-img.visible { opacity: 1; transform: none; }

.founder-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.founder-content.visible { opacity: 1; transform: none; }

.founder-title {
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--color-primary);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.founder-title.visible { opacity: 1; transform: none; }

.founder-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-secondary);
  margin-bottom: 32px;
}

/* ==================== CONTACT FORM SECTION ==================== */
.contact-section {
  padding: 100px 0;
  background: var(--color-lightgray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--color-primary);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.5;
}

.contact-detail i {
  color: var(--color-accent);
  font-size: 18px;
  min-width: 22px;
  margin-top: 2px;
}

.contact-form {
  background: #ffffff;
  padding: 48px 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  font-size: 15px;
  font-weight: 300;
  font-family: inherit;
  color: var(--color-primary);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.form-submit:hover { background: var(--color-secondary); }

/* ==================== FOOTER ==================== */
.site-footer {
  background-color: var(--footer-bg);
  width: 100%;
}

.footer-inner {
  padding: 59px 70px 30px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 200px 167px 1fr;
  gap: 174px;
  margin-bottom: 30px;
}

.footer-logo-section img,
.footer-logo-section svg {
  width: 160px;
  height: auto;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-links a {
  color: #F5F5F5 !important;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-links a:hover { color: var(--color-accent) !important; }

.footer-contact-section {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.footer-address {
  color: #F5F5F5;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
}

.footer-phone, .footer-email {
  color: var(--color-accent);
  font-size: 29px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F5F5F5;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social-link:hover { color: var(--color-accent); }

.footer-legal {
  margin-bottom: 20px;
}

.footer-company-info {
  color: #F5F5F5;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer-copyright {
  color: #F5F5F5;
  font-size: 14px;
  font-weight: 300;
  line-height: 32px;
}

.footer-privacy-links {
  display: flex;
  gap: 20px;
}

.footer-privacy-links a {
  color: #F5F5F5;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy-links a:hover { color: var(--color-accent); }

.footer-dev {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 245, 245, 0.1);
}

/* ==================== COOKIES GDPR ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(40, 52, 51, 0.97);
  z-index: 9999;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 14px;
  font-weight: 300;
  color: #F5F5F5;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 24px;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}

.cookie-accept:hover { opacity: 0.85; }

.cookie-decline {
  padding: 10px 24px;
  background: transparent;
  color: #F5F5F5;
  border: 1px solid rgba(245,245,245,0.4);
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s;
}

.cookie-decline:hover { border-color: #F5F5F5; }

/* ==================== PAGE HEADER (inner pages) ==================== */
.page-hero {
  background: var(--color-primary);
  padding: 160px 0 80px;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
}

/* ==================== UTILITY ==================== */
.section-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
  display: block;
}

.text-content {
  padding: 80px 0;
}

.text-content h2 {
  font-size: clamp(22px, 3vw, 36px);
  color: var(--color-primary);
  margin-bottom: 20px;
  margin-top: 48px;
}

.text-content h2:first-child { margin-top: 0; }

.text-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.text-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.text-content ul li {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb span { margin: 0 8px; }

/* ==================== RESPONSIVE ==================== */
@media (min-width: 1025px) and (max-width: 1200px) {
  .desktop-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .center-logo {
    position: static;
    left: auto;
    transform: none;
    justify-self: center;
  }
  .left-nav { justify-self: start; gap: 20px; }
  .right-nav { justify-self: end; gap: 20px; }
  .nav-link { font-size: 14px; }
  .footer-main-grid { gap: 60px; }
}

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: flex; }
  .navbar { height: 80px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { padding: 40px 30px; }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    justify-items: center;
  }
  .footer-address { font-size: 28px; }
  .footer-phone, .footer-email { font-size: 24px; }
  .footer-company-info { text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
}

@media (max-width: 768px) {
  .hero-content { padding-top: 80px; }
  .intro { padding: 60px 0; }
  .stats-grid { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-inner { padding: 30px 20px; }
  .footer-address { font-size: 22px; }
  .footer-phone, .footer-email { font-size: 20px; }
  .contact-form { padding: 32px 24px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .pricing-grid { max-width: 100%; }
}
