/* SEO_CHROME_0620: extracted from https://danielbala.pl/ inline brand CSS. */
/* Self-hosted fonts - GDPR compliant (no external requests) */
    /* Inter - Latin Extended */
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 300 700;
      font-display: swap;
      src: url('/fonts/inter-latin-ext.woff2') format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    /* Inter - Latin */
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 300 700;
      font-display: swap;
      src: url('/fonts/inter-latin.woff2') format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }
    /* DM Serif Display - Latin Extended */
    @font-face {
      font-family: 'DM Serif Display';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('/fonts/dm-serif-display-latin-ext.woff2') format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    /* DM Serif Display - Latin */
    @font-face {
      font-family: 'DM Serif Display';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('/fonts/dm-serif-display-latin.woff2') format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }

    /* ============================================
       CSS RESET & BASE
       ============================================ */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 16px;
      line-height: 1.65;
      color: #374151;
      background-color: #FAFAF7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* ============================================
       TYPOGRAPHY
       ============================================ */
    h1, h2, h3 {
      font-family: 'DM Serif Display', Georgia, serif;
      color: #1B2A4A;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: 2.25rem;
      font-weight: 400;
    }

    h2 {
      font-size: 1.75rem;
      font-weight: 400;
    }

    h3 {
      font-family: 'Inter', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.3;
    }

    p {
      margin-bottom: 1rem;
    }

    /* ============================================
       UTILITY
       ============================================ */
    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .container--narrow {
      max-width: 680px;
      margin: 0 auto;
      padding: 0 20px;
    }

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

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

    /* ============================================
       FORM ELEMENTS
       ============================================ */
    .signup-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 460px;
      width: 100%;
    }

    .signup-form--centered {
      margin: 0 auto;
    }

    .signup-input {
      width: 100%;
      padding: 16px 20px;
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      border: 2px solid #E5E7EB;
      border-radius: 12px;
      background: #FFFFFF;
      color: #374151;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .signup-input:focus {
      border-color: #E8913A;
      box-shadow: 0 0 0 3px rgba(232, 145, 58, 0.15);
    }

    .signup-input::placeholder {
      color: #9CA3AF;
    }

    .signup-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 32px;
      font-size: 1rem;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      color: #FFFFFF;
      background: #E8913A;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
      white-space: nowrap;
      min-height: 52px;
    }

    .signup-btn:hover {
      background: #D4800F;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(232, 145, 58, 0.35);
    }

    .signup-btn:active {
      transform: translateY(0);
    }

    .signup-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex-shrink: 0;
    }

    .form-privacy {
      font-size: 0.8125rem;
      color: #9CA3AF;
      margin-top: 4px;
    }

    .form-privacy a {
      color: #6B7280;
      text-decoration: underline;
      text-decoration-color: #D1D5DB;
      text-underline-offset: 2px;
    }

    .form-privacy a:hover {
      color: #374151;
    }

    /* ============================================
       SECTION 0: STICKY TOP BAR
       ============================================ */
    .top-bar {
      position: fixed;
      top: -60px;
      left: 0;
      right: 0;
      z-index: 1000;
      background: #1B2A4A;
      color: #FFFFFF;
      padding: 10px 20px;
      transition: top 0.3s ease;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }

    .top-bar.visible {
      top: 0;
    }

    .top-bar__inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .top-bar__text {
      font-size: 0.875rem;
      font-weight: 500;
      opacity: 0.9;
    }

    .top-bar__btn {
      padding: 7px 18px;
      font-size: 0.8125rem;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      color: #1B2A4A;
      background: #E8913A;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s ease;
      white-space: nowrap;
    }

    .top-bar__btn:hover {
      background: #D4A853;
    }

    /* Language Switcher */
    .lang-switch {
      position: fixed;
      top: 16px;
      right: 20px;
      z-index: 1001;
      display: flex;
      background: #FFFFFF;
      border: 1px solid #E5E7EB;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: top 0.3s ease;
    }

    .lang-switch.shifted {
      top: 58px;
    }

    .lang-switch button {
      padding: 6px 12px;
      font-size: 0.75rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      border: none;
      background: transparent;
      cursor: pointer;
      color: #9CA3AF;
      transition: all 0.2s;
    }

    .lang-switch button.active {
      background: #1B2A4A;
      color: #FFFFFF;
    }

    /* ============================================
       SECTION 1: HERO
       ============================================ */
    .hero {
      padding: 80px 20px 60px;
      background: linear-gradient(180deg, #FAFAF7 0%, #F5F0EA 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(232,145,58,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero__grid {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 48px;
    }

    .hero__content {
      flex: 1;
      min-width: 0;
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: rgba(232, 145, 58, 0.1);
      border: 1px solid rgba(232, 145, 58, 0.2);
      border-radius: 100px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #D4800F;
      margin-bottom: 20px;
    }

    .hero__badge-dot {
      width: 6px;
      height: 6px;
      background: #E8913A;
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .hero h1 {
      margin-bottom: 20px;
    }

    .hero__sub {
      font-size: 1.125rem;
      color: #6B7280;
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 520px;
    }

    .hero__social-proof {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .hero__readers {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero__avatars {
      display: flex;
    }

    .hero__avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid #FAFAF7;
      margin-left: -8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.625rem;
      font-weight: 700;
      color: #FFFFFF;
    }

    .hero__avatar:first-child {
      margin-left: 0;
    }

    .hero__avatar--1 { background: #1B2A4A; }
    .hero__avatar--2 { background: #2A9D8F; }
    .hero__avatar--3 { background: #E8913A; }
    .hero__avatar--4 { background: #D4A853; }

    .hero__readers-text {
      font-size: 0.8125rem;
      color: #6B7280;
      font-weight: 500;
    }

    .hero__readers-text strong {
      color: #374151;
    }

    .hero__trust-badges {
      display: flex;
      gap: 12px;
    }

    .trust-badge {
      font-size: 0.75rem;
      color: #9CA3AF;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .trust-badge svg {
      width: 14px;
      height: 14px;
      fill: #2A9D8F;
      flex-shrink: 0;
    }

    .hero__photo {
      flex-shrink: 0;
      width: 340px;
    }

    .hero__photo-frame {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 20px;
      background: linear-gradient(145deg, #1B2A4A 0%, #2A3F6A 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(27, 42, 74, 0.15);
    }

    .hero__photo-initials {
      font-family: 'DM Serif Display', serif;
      font-size: 5rem;
      color: rgba(255,255,255, 0.12);
      user-select: none;
    }

    .hero__photo-label {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      text-align: center;
      padding: 10px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 12px;
      color: #FFFFFF;
      font-size: 0.8125rem;
      font-weight: 500;
    }

    /* ============================================
       SECTION 2: SOCIAL PROOF BAR
       ============================================ */
    .proof-bar {
      background: #F0EDE8;
      padding: 28px 20px;
      border-top: 1px solid #E5E0D8;
      border-bottom: 1px solid #E5E0D8;
    }

    .proof-bar__inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .proof-bar__item {
      display: flex;
      align-items: center;
      gap: 10px;
      text-align: left;
    }

    .proof-bar__icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(212, 168, 83, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .proof-bar__icon svg {
      width: 20px;
      height: 20px;
      fill: #D4A853;
    }

    .proof-bar__number {
      font-size: 1.25rem;
      font-weight: 700;
      color: #1B2A4A;
      line-height: 1.2;
    }

    .proof-bar__label {
      font-size: 0.8125rem;
      color: #6B7280;
    }

    /* ============================================
       SECTION 3: CO DOSTAJESZ
       ============================================ */
    .benefits {
      padding: 72px 20px;
      background: #FAFAF7;
    }

    .benefits__header {
      text-align: center;
      margin-bottom: 48px;
    }

    .benefits__header h2 {
      margin-bottom: 12px;
    }

    .benefits__header p {
      font-size: 1.0625rem;
      color: #6B7280;
      max-width: 540px;
      margin: 0 auto;
    }

    .benefits__grid {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .benefit-card {
      background: #FFFFFF;
      border: 1px solid #E5E7EB;
      border-radius: 16px;
      padding: 28px 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .benefit-card:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
      transform: translateY(-2px);
    }

    .benefit-card__icon svg {
      width: 24px;
      height: 24px;
      stroke-width: 1.5;
    }

    .benefit-card__icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.375rem;
    }

    .benefit-card__icon--1 { background: rgba(232,145,58,0.1); }
    .benefit-card__icon--2 { background: rgba(42,157,143,0.1); }
    .benefit-card__icon--3 { background: rgba(59,125,216,0.1); }
    .benefit-card__icon--4 { background: rgba(212,168,83,0.1); }

    .benefit-card__title {
      font-size: 1.0625rem;
      font-weight: 700;
      color: #1B2A4A;
      margin-bottom: 4px;
    }

    .benefit-card__desc {
      font-size: 0.9375rem;
      color: #6B7280;
      margin-bottom: 0;
      line-height: 1.55;
    }

    /* ============================================
       SECTION 4: NEWSLETTER PREVIEW
       ============================================ */
    .preview {
      padding: 72px 20px;
      background: #F0EDE8;
    }

    .preview__header {
      text-align: center;
      margin-bottom: 40px;
    }

    .preview__header h2 {
      margin-bottom: 8px;
    }

    .preview__label {
      display: inline-block;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #E8913A;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
    }

    .preview__email {
      max-width: 560px;
      margin: 0 auto;
      background: #FFFFFF;
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .preview__email-header {
      background: #1B2A4A;
      padding: 20px 24px;
      color: #FFFFFF;
    }

    .preview__email-from {
      font-size: 0.8125rem;
      opacity: 0.7;
      margin-bottom: 6px;
    }

    .preview__email-subject {
      font-size: 1.125rem;
      font-weight: 700;
    }

    .preview__email-body {
      padding: 28px 24px;
    }

    .preview__email-greeting {
      font-size: 1rem;
      font-weight: 600;
      color: #1B2A4A;
      margin-bottom: 12px;
    }

    .preview__email-text {
      font-size: 0.9375rem;
      color: #6B7280;
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .preview__email-sections {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .preview__email-section {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-top: 1px solid #F3F4F6;
      font-size: 0.9375rem;
    }

    .preview__email-section-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.875rem;
    }

    .preview__email-section:nth-child(1) .preview__email-section-icon { background: rgba(232,145,58,0.1); }
    .preview__email-section:nth-child(2) .preview__email-section-icon { background: rgba(42,157,143,0.1); }
    .preview__email-section:nth-child(3) .preview__email-section-icon { background: rgba(59,125,216,0.1); }
    .preview__email-section:nth-child(4) .preview__email-section-icon { background: rgba(212,168,83,0.1); }

    .preview__email-section-title {
      font-weight: 600;
      color: #1B2A4A;
    }

    .preview__email-section-desc {
      font-size: 0.8125rem;
      color: #9CA3AF;
    }

    .preview__cta {
      text-align: center;
      margin-top: 36px;
    }

    .preview__cta p {
      font-size: 0.9375rem;
      color: #6B7280;
      margin-bottom: 16px;
    }

    /* ============================================
       SECTION 5: O DANIELU
       ============================================ */
    .about {
      padding: 72px 20px;
      background: #FAFAF7;
    }

    .about__inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      gap: 48px;
      align-items: center;
    }

    .about__photo {
      flex-shrink: 0;
    }

    .about__photo-circle {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: linear-gradient(145deg, #2A9D8F 0%, #1B2A4A 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 40px rgba(42, 157, 143, 0.2);
      overflow: hidden;
    }

    .about__photo-initials {
      font-family: 'DM Serif Display', serif;
      font-size: 3.5rem;
      color: rgba(255,255,255,0.2);
      user-select: none;
    }

    .about__content h2 {
      margin-bottom: 16px;
    }

    .about__content p {
      font-size: 1rem;
      color: #6B7280;
      line-height: 1.7;
    }

    .about__content p strong {
      color: #374151;
    }

    .about__stats {
      display: flex;
      gap: 24px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .about__stat {
      text-align: center;
      padding: 16px 20px;
      background: #F0EDE8;
      border-radius: 12px;
      min-width: 100px;
    }

    .about__stat-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1B2A4A;
      line-height: 1;
      margin-bottom: 4px;
    }

    .about__stat-label {
      font-size: 0.75rem;
      color: #9CA3AF;
      font-weight: 500;
    }

    /* ============================================
       SECTION 7: FAQ
       ============================================ */
    .faq {
      padding: 72px 20px;
      background: #FAFAF7;
    }

    .faq__header {
      text-align: center;
      margin-bottom: 40px;
    }

    .faq__list {
      max-width: 640px;
      margin: 0 auto;
    }

    .faq__item {
      border-bottom: 1px solid #E5E7EB;
    }

    .faq__item:first-child {
      border-top: 1px solid #E5E7EB;
    }

    .faq__question {
      width: 100%;
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: none;
      border: none;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: #1B2A4A;
      cursor: pointer;
      text-align: left;
      line-height: 1.4;
    }

    .faq__question:hover {
      color: #E8913A;
    }

    .faq__icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      position: relative;
      transition: transform 0.3s ease;
    }

    .faq__icon::before,
    .faq__icon::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      background: #9CA3AF;
      border-radius: 2px;
      transition: transform 0.3s ease, background 0.2s ease;
    }

    .faq__icon::before {
      width: 14px;
      height: 2px;
      transform: translate(-50%, -50%);
    }

    .faq__icon::after {
      width: 2px;
      height: 14px;
      transform: translate(-50%, -50%);
    }

    .faq__item.active .faq__icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq__question:hover .faq__icon::before,
    .faq__question:hover .faq__icon::after {
      background: #E8913A;
    }

    .faq__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq__answer-inner {
      padding-bottom: 20px;
      font-size: 0.9375rem;
      color: #6B7280;
      line-height: 1.65;
    }

    .faq__item.active .faq__answer {
      max-height: 200px;
    }

    /* ============================================
       SECTION 8: FINAL CTA
       ============================================ */
    .final-cta {
      padding: 80px 20px;
      background: #1B2A4A;
      color: #FFFFFF;
      text-align: center;
    }

    .final-cta h2 {
      color: #FFFFFF;
      margin-bottom: 12px;
    }

    .final-cta__sub {
      font-size: 1.0625rem;
      color: rgba(255,255,255,0.7);
      max-width: 500px;
      margin: 0 auto 32px;
      line-height: 1.65;
    }

    .final-cta .signup-form {
      margin: 0 auto;
    }

    .final-cta .signup-input {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.2);
      color: #FFFFFF;
    }

    .final-cta .signup-input::placeholder {
      color: rgba(255,255,255,0.45);
    }

    .final-cta .signup-input:focus {
      border-color: #E8913A;
      box-shadow: 0 0 0 3px rgba(232, 145, 58, 0.2);
    }

    .final-cta .form-privacy {
      color: rgba(255,255,255,0.4);
    }

    .final-cta .form-privacy a {
      color: rgba(255,255,255,0.5);
    }

    .final-cta__proof {
      margin-top: 24px;
      font-size: 0.875rem;
      color: rgba(255,255,255,0.5);
    }

    /* ============================================
       SECTION 9: PROJECTS STRIP
       ============================================ */
    .projects {
      padding: 40px 20px;
      background: #FAFAF7;
      border-top: 1px solid #E5E7EB;
    }

    .projects__inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .projects__label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #9CA3AF;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }

    .projects__list {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .projects__item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #6B7280;
      transition: color 0.2s ease;
    }

    .projects__item:hover {
      color: #1B2A4A;
    }

    .projects__item-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .projects__item-dot--sd { background: #2A9D8F; }
    .projects__item-dot--nf { background: #E8913A; }
    .projects__item-dot--pp { background: #1B2A4A; }

    /* ============================================
       SECTION 10: FOOTER
       ============================================ */
    .footer {
      padding: 40px 20px;
      background: #1B2A4A;
      color: rgba(255,255,255,0.5);
      text-align: center;
    }

    .footer__social {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 24px;
    }

    .footer__social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease;
    }

    .footer__social a:hover {
      background: rgba(255,255,255,0.15);
    }

    .footer__social svg {
      width: 18px;
      height: 18px;
      fill: rgba(255,255,255,0.7);
    }

    .footer__links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .footer__links a {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.5);
      text-decoration: underline;
      text-decoration-color: rgba(255,255,255,0.2);
      text-underline-offset: 2px;
      transition: color 0.2s;
    }

    .footer__links a:hover {
      color: rgba(255,255,255,0.8);
    }

    .footer__copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.35);
    }

    /* ============================================
       EXIT-INTENT POPUP
       ============================================ */
    .exit-popup {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0,0,0,0.5);
      align-items: center;
      justify-content: center;
      padding: 20px;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .exit-popup.visible {
      display: flex;
    }

    .exit-popup__card {
      background: #FFFFFF;
      border-radius: 20px;
      padding: 40px 32px;
      max-width: 440px;
      width: 100%;
      text-align: center;
      position: relative;
      box-shadow: 0 24px 80px rgba(0,0,0,0.2);
      animation: popup-in 0.3s ease;
    }

    @keyframes popup-in {
      from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .exit-popup__close {
      position: absolute;
      top: 12px;
      right: 16px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #9CA3AF;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background 0.2s;
    }

    .exit-popup__close:hover {
      background: #F3F4F6;
      color: #374151;
    }

    .exit-popup__badge {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(232,145,58,0.1);
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #E8913A;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 16px;
    }

    .exit-popup h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.5rem;
      color: #1B2A4A;
      margin-bottom: 8px;
    }

    .exit-popup p {
      font-size: 0.9375rem;
      color: #6B7280;
      margin-bottom: 20px;
      line-height: 1.55;
    }

    .exit-popup .signup-form {
      margin: 0 auto;
    }

    /* ============================================
       COOKIE CONSENT (DSGVO)
       ============================================ */
    .cookie-banner {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1500;
      background: #FFFFFF;
      border-top: 1px solid #E5E7EB;
      padding: 16px 20px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    }

    .cookie-banner.visible {
      display: block;
    }

    .cookie-banner__inner {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cookie-banner__text {
      font-size: 0.8125rem;
      color: #6B7280;
      flex: 1;
      min-width: 200px;
    }

    .cookie-banner__text a {
      color: #374151;
      text-decoration: underline;
    }

    .cookie-banner__actions {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }

    .cookie-banner__btn {
      padding: 8px 20px;
      font-size: 0.8125rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }

    .cookie-banner__btn--accept {
      background: #1B2A4A;
      color: #FFFFFF;
    }

    .cookie-banner__btn--accept:hover {
      background: #2A3F6A;
    }

    .cookie-banner__btn--decline {
      background: #F3F4F6;
      color: #374151;
    }

    .cookie-banner__btn--decline:hover {
      background: #E5E7EB;
    }

    /* ============================================
       MOBILE STICKY CTA
       ============================================ */
    .mobile-sticky {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: #FFFFFF;
      border-top: 1px solid #E5E7EB;
      padding: 12px 20px;
      box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .mobile-sticky.visible {
      transform: translateY(0);
    }

    .mobile-sticky__btn {
      display: block;
      width: 100%;
      padding: 14px;
      font-size: 1rem;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      color: #FFFFFF;
      background: #E8913A;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      text-align: center;
    }

    /* ============================================
       RESPONSIVE: TABLET (640px+)
       ============================================ */
    @media (min-width: 640px) {
      h1 { font-size: 2.75rem; }
      h2 { font-size: 2rem; }

      .signup-form {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .signup-input {
        flex: 1;
      }

      .benefits__grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ============================================
       RESPONSIVE: DESKTOP (1024px+)
       ============================================ */
    @media (min-width: 1024px) {
      h1 { font-size: 3.25rem; }
      h2 { font-size: 2.5rem; }

      .hero {
        padding: 100px 20px 80px;
      }

      .hero__photo {
        display: block;
      }

      .benefits__grid {
        grid-template-columns: 1fr 1fr;
      }

      .about__inner {
        flex-direction: row;
      }

      .mobile-sticky {
        display: none !important;
      }
    }

    /* ============================================
       RESPONSIVE: WIDE (1280px+)
       ============================================ */
    @media (min-width: 1280px) {
      h1 { font-size: 3.75rem; }
    }

    /* ============================================
       MOBILE ONLY (<1024px)
       ============================================ */
    @media (max-width: 1023px) {
      .hero__grid {
        flex-direction: column-reverse;
        text-align: center;
      }

      .hero__photo {
        width: 200px;
      }

      .hero__photo-frame {
        aspect-ratio: 1;
        border-radius: 50%;
      }

      .hero__photo-initials {
        font-size: 3.5rem;
      }

      .hero__photo-label {
        display: none;
      }

      .hero__sub {
        margin-left: auto;
        margin-right: auto;
      }

      .hero__social-proof {
        justify-content: center;
      }

      .signup-form {
        margin-left: auto;
        margin-right: auto;
      }

      .about__inner {
        flex-direction: column;
        text-align: center;
      }

      .about__stats {
        justify-content: center;
      }

      .mobile-sticky {
        display: block;
      }
    }

    @media (max-width: 479px) {
      #tools [style*='grid-template-columns'] {
        grid-template-columns: 1fr !important;
      }
      .proof-bar__inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .hero__trust-badges {
        flex-direction: column;
        gap: 6px;
      }
    }

    /* ============================================
       ANIMATIONS & TRANSITIONS
       ============================================ */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Hidden language content */
    [data-de] {
      /* German text stored in data attributes */
    }

    /* ============================================
       GDPR CONSENT CHECKBOX
       ============================================ */
    .consent-label {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-top: 4px;
      font-size: 0.75rem;
      color: #6B7280;
      cursor: pointer;
      line-height: 1.4;
      max-width: 460px;
      width: 100%;
    }

    .consent-label a {
      color: #E8913A;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .consent-label a:hover {
      color: #D4800F;
    }

    .consent-checkbox {
      margin-top: 2px;
      accent-color: #E8913A;
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      cursor: pointer;
    }

    .consent-error {
      color: #DC2626;
      font-size: 0.75rem;
      margin-top: 4px;
      display: none;
    }

    .consent-error.visible {
      display: block;
    }

    /* Dark section overrides */
    .final-cta .consent-label {
      color: rgba(255,255,255,0.5);
    }

    .final-cta .consent-label a {
      color: rgba(255,255,255,0.7);
    }

    .final-cta .consent-error {
      color: #FCA5A5;
    }

    /* Ensure form stays column when consent is present */
    .signup-form .consent-label {
      flex-basis: 100%;
    }
