:root {
    --forest: #2d4a3e;
    --forest-deep: #1f3329;
    --forest-soft: #4a6b5a;
    --navy: #1a2942;
    --sand: #d9c5a0;
    --sand-warm: #e8d6b3;
    --sand-light: #f4ead5;
    --cream: #faf6ed;
    --white: #ffffff;
    --text: #1f2826;
    --text-muted: #5a6b66;
    --line: #e8e0cf;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Montserrat', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
  a { color: inherit; }

  /* === NAVIGATION (same as main page) === */
  .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250, 246, 237, 0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(45, 74, 62, 0.08); }
  .nav-inner { max-width: 1280px; margin: 0 auto; padding: 14px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
  .logo-mark { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .logo-mark svg { width: 100%; height: 100%; }
  .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .logo-name { font-size: 16px; font-weight: 700; color: var(--forest-deep); letter-spacing: -0.01em; }
  .logo-sub { font-size: 10px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }
  .nav-menu { display: flex; gap: 28px; list-style: none; }
  .nav-menu a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: color 0.2s ease; }
  .nav-menu a:hover { color: var(--forest); }
  .nav-cta { background: var(--forest); color: var(--cream); padding: 12px 22px; border-radius: 100px; text-decoration: none; font-size: 13px; font-weight: 600; transition: all 0.3s ease; }
  .nav-cta:hover { background: var(--forest-deep); transform: translateY(-1px); }

  /* === BREADCRUMB === */
  .breadcrumb { padding: 100px 40px 0; max-width: 1280px; margin: 0 auto; font-size: 13px; color: var(--text-muted); }
  .breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s ease; }
  .breadcrumb a:hover { color: var(--forest); }
  .breadcrumb-sep { margin: 0 10px; opacity: 0.5; }
  .breadcrumb-current { color: var(--forest-deep); font-weight: 500; }

  /* === HERO === */
  .product-hero { padding: 32px 40px 80px; background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%); }
  .product-hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
  .product-hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(45, 74, 62, 0.08); color: var(--forest); padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px; }
  .product-hero h1 { font-family: 'Lora', serif; font-size: clamp(40px, 5vw, 64px); font-weight: 500; line-height: 1.05; color: var(--forest-deep); margin-bottom: 20px; letter-spacing: -0.02em; }
  .product-hero h1 em { font-style: italic; color: var(--forest); }
  .product-hero-tagline { font-family: 'Lora', serif; font-size: 21px; font-style: italic; color: var(--forest); margin-bottom: 28px; line-height: 1.4; }
  .product-hero p { font-size: 17px; line-height: 1.7; color: var(--text-muted); margin-bottom: 32px; }
  .product-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stat-item { display: flex; flex-direction: column; }
  .stat-num { font-family: 'Lora', serif; font-size: 32px; font-weight: 500; color: var(--forest-deep); line-height: 1; margin-bottom: 6px; }
  .stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; }
  .product-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary { background: var(--forest); color: var(--cream); padding: 16px 32px; border-radius: 100px; text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; }
  .btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(45, 74, 62, 0.4); }
  .btn-ghost { background: transparent; color: var(--forest-deep); padding: 16px 28px; border-radius: 100px; text-decoration: none; font-size: 15px; font-weight: 600; border: 1.5px solid var(--forest-deep); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
  .btn-ghost:hover { background: var(--forest-deep); color: var(--cream); }

  .product-hero-visual { position: relative; aspect-ratio: 4/5; border-radius: 32px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(45, 74, 62, 0.4); }
  .product-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .product-hero-badge { position: absolute; top: 24px; left: 24px; background: var(--cream); color: var(--forest-deep); padding: 10px 18px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; z-index: 2; display: flex; align-items: center; gap: 8px; }
  .product-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20, 35, 28, 0.55) 78%, rgba(20, 35, 28, 0.92) 100%); pointer-events: none; }
  .product-hero-caption { position: absolute; bottom: 28px; left: 28px; right: 28px; color: #fff; z-index: 2; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.7); }
  .product-hero-caption h3 { font-family: 'Lora', serif; font-size: 26px; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.01em; color: #fff; }
  .product-hero-caption p { font-size: 14px; color: #fff; opacity: 0.95; }

  /* === MECHANIKA / 4 STRONY === */
  .pages-section { padding: 120px 40px; background: var(--cream); }
  .pages-inner { max-width: 1280px; margin: 0 auto; }
  .pages-header { text-align: center; margin-bottom: 80px; }
  .section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--forest); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; }
  .section-eyebrow::before, .section-eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--forest); opacity: 0.4; }
  .pages-section h2 { font-family: 'Lora', serif; font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: 1.15; color: var(--forest-deep); margin-bottom: 24px; letter-spacing: -0.02em; }
  .pages-section h2 em { font-style: italic; color: var(--forest); }
  .pages-lead { font-size: 18px; line-height: 1.7; color: var(--text-muted); max-width: 720px; margin: 0 auto; }

  .page-card { display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: center; margin-bottom: 64px; background: var(--white); border-radius: 28px; padding: 48px; border: 1px solid var(--line); }
  .page-info { display: flex; flex-direction: column; justify-content: center; order: 1; }
  .page-visual { order: 2; }
  .page-num-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
  .page-num { width: 44px; height: 44px; background: var(--forest); color: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 18px; font-weight: 600; font-style: italic; }
  .page-num-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--forest); }
  .page-info h3 { font-family: 'Lora', serif; font-size: 32px; font-weight: 500; color: var(--forest-deep); margin-bottom: 14px; line-height: 1.15; letter-spacing: -0.01em; }
  .page-info p { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; }
  .page-info p:last-child { margin-bottom: 0; }
  .page-info-example { background: var(--sand-light); padding: 18px 22px; border-radius: 14px; margin-top: 20px; }
  .page-info-example-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--forest); margin-bottom: 6px; }
  .page-info-example-text { font-family: 'Lora', serif; font-size: 16px; font-style: italic; color: var(--forest-deep); line-height: 1.4; }
  .page-visual { position: relative; width: 480px; aspect-ratio: 4 / 3; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px -20px rgba(45, 74, 62, 0.25); }
  .page-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .page-visual-tag { position: absolute; top: 16px; left: 16px; background: var(--cream); color: var(--forest-deep); padding: 6px 12px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; z-index: 2; }
  .page-coming { position: relative; aspect-ratio: 4/3; border-radius: 20px; background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 40px -20px rgba(45, 74, 62, 0.4); }
  .page-coming-content { text-align: center; color: var(--cream); padding: 32px; }
  .page-coming-icon { width: 64px; height: 64px; border: 2px solid var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
  .page-coming h4 { font-family: 'Lora', serif; font-size: 24px; font-weight: 500; margin-bottom: 8px; }
  .page-coming p { font-size: 14px; opacity: 0.8; max-width: 240px; margin: 0 auto; }

  /* === FEATURES === */
  .features { padding: 120px 40px; background: var(--forest-deep); color: var(--cream); }
  .features-inner { max-width: 1280px; margin: 0 auto; }
  .features-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
  .features .section-eyebrow { color: var(--sand); }
  .features .section-eyebrow::before, .features .section-eyebrow::after { background: var(--sand); opacity: 0.5; }
  .features h2 { font-family: 'Lora', serif; font-size: clamp(32px, 3.8vw, 48px); font-weight: 500; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
  .features h2 em { font-style: italic; color: var(--sand); }
  .features-lead { font-size: 17px; line-height: 1.7; color: rgba(250, 246, 237, 0.75); }
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .feature-card { background: rgba(250, 246, 237, 0.04); border: 1px solid rgba(250, 246, 237, 0.12); padding: 32px; border-radius: 20px; transition: all 0.4s ease; }
  .feature-card:hover { background: rgba(250, 246, 237, 0.08); border-color: var(--sand); transform: translateY(-4px); }
  .feature-icon { width: 48px; height: 48px; background: var(--sand); color: var(--forest-deep); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
  .feature-card h3 { font-family: 'Lora', serif; font-size: 20px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.01em; }
  .feature-card p { font-size: 14px; line-height: 1.6; color: rgba(250, 246, 237, 0.75); }

  /* === GDZIE SIE SPRAWDZA === */
  .where { padding: 120px 40px; background: var(--sand-light); }
  .where-inner { max-width: 1100px; margin: 0 auto; }
  .where-header { text-align: center; margin-bottom: 56px; }
  .where h2 { font-family: 'Lora', serif; font-size: clamp(32px, 3.8vw, 48px); font-weight: 500; line-height: 1.15; color: var(--forest-deep); margin-bottom: 20px; letter-spacing: -0.02em; }
  .where h2 em { font-style: italic; color: var(--forest); }
  .where-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .where-item { background: var(--white); padding: 28px; border-radius: 16px; display: flex; align-items: flex-start; gap: 18px; transition: all 0.3s ease; border: 1px solid var(--line); }
  .where-item:hover { transform: translateY(-2px); border-color: var(--forest); }
  .where-icon { width: 44px; height: 44px; background: var(--forest); color: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .where-text strong { display: block; font-family: 'Lora', serif; font-size: 18px; font-weight: 500; color: var(--forest-deep); margin-bottom: 4px; }
  .where-text span { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

  /* === CTA SECTION === */
  .cta-section { padding: 120px 40px; background: var(--cream); }
  .cta-inner { max-width: 1100px; margin: 0 auto; background: var(--forest-deep); border-radius: 32px; padding: 80px 64px; text-align: center; color: var(--cream); position: relative; overflow: hidden; }
  .cta-inner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(217, 197, 160, 0.15) 0%, transparent 70%); pointer-events: none; }
  .cta-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); margin-bottom: 20px; }
  .cta-inner h2 { font-family: 'Lora', serif; font-size: clamp(32px, 3.8vw, 48px); font-weight: 500; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; position: relative; z-index: 1; }
  .cta-inner h2 em { font-style: italic; color: var(--sand); }
  .cta-inner p { font-size: 17px; line-height: 1.7; color: rgba(250, 246, 237, 0.8); max-width: 580px; margin: 0 auto 36px; position: relative; z-index: 1; }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
  .cta-btn-primary { background: var(--sand); color: var(--forest-deep); padding: 16px 32px; border-radius: 100px; text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
  .cta-btn-primary:hover { background: var(--cream); transform: translateY(-2px); }
  .cta-btn-ghost { background: transparent; color: var(--cream); padding: 16px 28px; border-radius: 100px; text-decoration: none; font-size: 15px; font-weight: 600; border: 1.5px solid var(--cream); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
  .cta-btn-ghost:hover { background: var(--cream); color: var(--forest-deep); }

  /* === FOOTER === */
  .footer { padding: 64px 40px 32px; background: var(--forest-deep); color: rgba(250, 246, 237, 0.7); border-top: 1px solid rgba(250, 246, 237, 0.08); }
  .footer-inner { max-width: 1280px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(250, 246, 237, 0.1); }
  .footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 20px; max-width: 320px; }
  .footer-col h5 { color: var(--cream); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(250, 246, 237, 0.7); text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
  .footer-col a:hover { color: var(--sand); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; }
  .footer-bottom a { color: rgba(250, 246, 237, 0.7); text-decoration: none; }
  .footer-bottom a:hover { color: var(--sand); }
  .footer-divider { color: rgba(250, 246, 237, 0.3); }

  @media (max-width: 980px) {
    .product-hero-inner, .page-card { grid-template-columns: 1fr; gap: 40px; padding: 32px 24px; min-height: 0; }
    .page-info { justify-content: flex-start; }
    .page-visual { width: 100%; }
    .product-hero { padding: 24px 24px 60px; }
    .breadcrumb { padding: 100px 24px 0; }
    .pages-section, .features, .where, .cta-section { padding: 80px 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .where-grid { grid-template-columns: 1fr; }
    .cta-inner { padding: 56px 32px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-menu { display: none; }
    .nav-inner { padding: 14px 20px; }
    .footer { padding: 48px 24px 24px; }
  }
  @media (max-width: 560px) {
    .product-hero-stats { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(3) { grid-column: 1/-1; }
    .footer-top { grid-template-columns: 1fr; }
    .product-hero-cta, .cta-buttons { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost, .cta-btn-primary, .cta-btn-ghost { justify-content: center; }
  }

  /* === LOGO — replaced with new lockup SVG === */
  .logo { display: flex; align-items: center; text-decoration: none; }
  .logo-img { height: 64px; width: auto; display: block; }
  .footer .logo-img { height: 80px; }
  @media (max-width: 980px) {
    .logo-img { height: 52px; }
  }
  @media (max-width: 560px) {
    .logo-img { height: 44px; }
    .footer .logo-img { height: 56px; }
  }
