  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --cream: #FAF8F3;
    --warm-white: #FFFEF9;
    --linen: #F0EBE0;
    --sage: #6B8C6B;
    --sage-light: #E8F0E8;
    --sage-dark: #3D5C3D;
    --ink: #1C1C1A;
    --ink-soft: #4A4A46;
    --ink-muted: #888880;
    --accent: #C4843A;
    --accent-light: #FAF0E4;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 248, 243, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107,140,107,0.15);
    padding: 0 2rem;
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--sage-dark);
    letter-spacing: -0.5px;
  }
  .nav-logo span { color: var(--accent); }
  .nav-cta {
    background: var(--sage-dark);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--sage); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 2rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(107,140,107,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(196,132,58,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sage-light);
    color: var(--sage-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
  }
  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--sage);
    border-radius: 50%;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--sage-dark);
  }
  .hero p {
    font-size: 18px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 440px;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--sage-dark);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--sage); transform: translateY(-1px); }
  .btn-secondary {
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .btn-secondary:hover { color: var(--sage-dark); }
  .btn-secondary::after { content: '→'; }

  /* HERO VISUAL */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-card {
    background: var(--warm-white);
    border: 1px solid rgba(107,140,107,0.2);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 24px 80px rgba(107,140,107,0.12);
    position: relative;
  }
  .hero-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 32px; right: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--accent));
    border-radius: 0 0 3px 3px;
  }
  .price-display {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--linen);
    margin-bottom: 1.5rem;
  }
  .price-label { font-size: 13px; color: var(--ink-muted); margin-bottom: 0.5rem; font-weight: 400; }
  .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--sage-dark);
    line-height: 1;
  }
  .price-period { font-size: 14px; color: var(--ink-muted); margin-top: 4px; font-weight: 300; }
  .feature-list { list-style: none; }
  .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--linen);
  }
  .feature-list li:last-child { border-bottom: none; }
  .feature-list li::before {
    content: '✓';
    width: 20px; height: 20px;
    background: var(--sage-light);
    color: var(--sage-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* HOW IT WORKS */
  section { padding: 6rem 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-tag {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
  }
  .section-sub {
    font-size: 17px;
    color: var(--ink-soft);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 3rem;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .step-card {
    background: var(--warm-white);
    border: 1px solid rgba(107,140,107,0.15);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--linen);
    line-height: 1;
    margin-bottom: 1rem;
    position: absolute;
    top: 1rem; right: 1.5rem;
  }
  .step-icon {
    font-size: 28px;
    margin-bottom: 1rem;
    display: block;
  }
  .step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
  }
  .step-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; font-weight: 300; }

  /* WHY */
  .why-section { background: var(--sage-dark); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .why-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    transition: background 0.2s;
  }
  .why-card:hover { background: rgba(255,255,255,0.1); }
  .why-card h3 { font-size: 18px; font-weight: 500; color: white; margin-bottom: 0.75rem; }
  .why-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 300; }
  .why-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 1.25rem;
  }
  .why-section .section-title { color: white; }
  .why-section .section-sub { color: rgba(255,255,255,0.65); }

  /* CONTACT */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .contact-form {
    background: var(--warm-white);
    border: 1px solid rgba(107,140,107,0.15);
    border-radius: 24px;
    padding: 2.5rem;
  }
  .contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 1.5rem;
    color: var(--ink);
  }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--ink-soft); margin-bottom: 6px; }
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--linen);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
    resize: none;
  }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--sage); }
  .form-submit {
    width: 100%;
    background: var(--sage-dark);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
  }
  .form-submit:hover { background: var(--sage); }

  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 1rem;
    color: var(--ink);
    line-height: 1.2;
  }
  .contact-info p { font-size: 16px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 2rem; font-weight: 300; }
  .contact-links { display: flex; flex-direction: column; gap: 1rem; }
  .contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--warm-white);
    border: 1px solid rgba(107,140,107,0.15);
    border-radius: 16px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s;
  }
  .contact-link:hover { border-color: var(--sage); transform: translateX(4px); }
  .contact-link-icon {
    width: 40px; height: 40px;
    background: var(--sage-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-link-text span { display: block; font-size: 12px; color: var(--ink-muted); font-weight: 400; }
  .contact-link-text strong { font-size: 15px; font-weight: 500; }

  /* FOOTER */
  /* KONTAKT FULL WIDTH */
  .contact-full {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  .contact-header { margin-bottom: 3rem; }
  .contact-links-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .contact-links-row .contact-link {
    min-width: 280px;
  }

  /* FOOTER REDESIGN */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    padding: 4rem 2rem;
    font-size: 14px;
    text-align: left;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
  .footer-brand strong { 
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-brand strong span { color: var(--accent); }
  .footer-brand p { font-size: 12px; }
  
  .footer-legal h4, .footer-contact h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
  .footer-legal p, .footer-contact p {
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
  }

  @media (max-width: 768px) {
    .footer-main { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .contact-links-row { flex-direction: column; align-items: stretch; }
  }

  /* ANIMATE */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-tag { animation: fadeUp 0.5s ease both; }
  .hero h1 { animation: fadeUp 0.5s 0.1s ease both; }
  .hero p { animation: fadeUp 0.5s 0.2s ease both; }
  .hero-actions { animation: fadeUp 0.5s 0.3s ease both; }
  .hero-card { animation: fadeUp 0.6s 0.2s ease both; }

  @media (max-width: 768px) {
    .hero-inner, .steps-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 80px; }
    .hero-visual { display: none; }
  }