:root {
  /* Colors - Based on the "Premium Swiss SME" aesthetic */
  --wf-accent: #FF5A1F; /* Primary brand color from brief */
  --wf-dark: #101010;
  --wf-text: #1A1A1A;
  --wf-bg: #FAFAFA;
  --wf-white: #FFFFFF;
  --wf-border: #E5E7EB;
  --wf-muted: #6B7280;
  --wf-success: #10B981;
  
  /* Typography */
  --wf-font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --wf-font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--wf-font-body);
  background-color: var(--wf-bg);
  color: var(--wf-text);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--wf-font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

p { margin: 0; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* Layout */
.section {
  width: 100%;
  padding: 80px 5%;
  max-width: 1440px;
  margin: 0 auto;
}

.container-wide {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.header {
  width: 100%;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--wf-border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--wf-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--wf-text);
}

.nav-link:hover {
  color: var(--wf-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--wf-accent);
  color: white;
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--wf-text);
  border: 1px solid var(--wf-border);
}

.btn-secondary:hover {
  background: #f9fafb;
}

/* Hero */
.hero {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.hero-tag {
  background: rgba(255, 90, 31, 0.1);
  color: var(--wf-accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
}

.hero h1 {
  font-size: 3.5rem;
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--wf-muted);
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Trust Bar */
.trust-bar {
  padding: 40px 5%;
  border-top: 1px solid var(--wf-border);
  border-bottom: 1px solid var(--wf-border);
  background: white;
  text-align: center;
}

.trust-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wf-muted);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.6;
}

.trust-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
}

/* Features Cards */
.card-grid {
  display: grid;
  grid-template-cols: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.card {
  background: white;
  border: 1px solid var(--wf-border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--wf-accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--wf-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--wf-accent);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.card p {
  color: var(--wf-muted);
  margin-bottom: 24px;
}

.card-cta {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--wf-accent);
}

/* Pricing Section */
.pricing-section {
  background: var(--wf-dark);
  color: white;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-cols: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: #1A1A1A;
  border: 1px solid #333;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--wf-accent);
  position: relative;
}

.pricing-card.featured::after {
  content: "MEISTGEWÄHLT";
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--wf-accent);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
}

.price-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: #888;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  flex-grow: 1;
}

.price-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #ccc;
}

/* Template Grid */
.template-grid {
  display: grid;
  grid-template-cols: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.template-item {
  background: white;
  border: 1px solid var(--wf-border);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.template-item:hover {
  background: var(--wf-accent);
  color: white;
  border-color: var(--wf-accent);
}

.template-header {
  margin-bottom: 40px;
}

.template-footer {
  margin-top: 40px;
}

/* Feature Details & Helpers */
.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-subtitle {
  color: var(--wf-muted);
  max-width: 600px;
  margin: 0 auto;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--wf-muted);
}

.feature-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li::before {
  content: "✓";
  color: var(--wf-success);
  font-weight: bold;
}

.card-cta-success {
  color: var(--wf-success);
  font-weight: 600;
}

/* Step Layout */
.steps-grid {
  display: grid;
  grid-template-cols: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.step-item {
  text-align: center;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: #eee;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--wf-muted);
}

/* Pricing Extras */
.pricing-subtitle {
  color: #aaa;
  margin-top: 8px;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #888;
}

.btn-full {
  width: 100%;
}

/* Section Backgrounds */
.bg-white { background-color: var(--wf-white); }
.bg-accent { background-color: var(--wf-accent); color: white; }

/* Typography Extras */
.text-white { color: white; }
.opacity-90 { opacity: 0.9; }
.text-large { font-size: 1.25rem; margin-bottom: 40px; }
.text-xlarge { font-size: 2.5rem; margin-bottom: 24px; }

.cta-final {
  text-align: center;
}

.btn-cta-white {
  background: white;
  color: var(--wf-accent);
  padding: 16px 40px;
  font-size: 1.1rem;
}

.footer-info {
  margin-top: 24px;
  color: var(--wf-muted);
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--wf-border);
  padding: 24px 0;
}

.faq-q {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.faq-a {
  color: var(--wf-muted);
}

/* Footer */
.footer {
  background: white;
  border-top: 1px solid var(--wf-border);
  padding: 80px 5% 40px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-cols: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--wf-muted);
  max-width: 300px;
}

.footer-col h4 {
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--wf-muted);
}

.footer-col a:hover {
  color: var(--wf-accent);
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--wf-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--wf-muted);
}

/* Utilities */
.text-accent { color: var(--wf-accent); }
.text-center { text-align: center; }

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-cols: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .nav-links { display: none; }
  .footer-inner { grid-template-cols: 1fr; }
  .section { padding: 60px 5%; }
}
