/** Shopify CDN: Minification failed

Line 18:18 Expected ")" to end URL token
Line 25:18 Expected ")" to end URL token
Line 32:18 Expected ")" to end URL token
Line 39:18 Expected ")" to end URL token

**/


/* CSS from section stylesheet tags */
/* Font definíciók */
  @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url({{ 'inter-regular.woff2' | asset_url }}) format('woff2');
  }
  @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 600;
      font-display: swap;
      src: url({{ 'inter-semibold.woff2' | asset_url }}) format('woff2');
  }
  @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url({{ 'inter-bold.woff2' | asset_url }}) format('woff2');
  }
  @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 900;
      font-display: swap;
      src: url({{ 'inter-black.woff2' | asset_url }}) format('woff2');
  }

  /* Alapértelmezett stílusok */
  .custom-static-page-section {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      scroll-behavior: smooth;
      color: #1f2937;
      line-height: 1.5;
  }

  .custom-static-page-section * {
      box-sizing: border-box;
  }

  /* Container */
  .humac-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  /* Hero szekció */
  .humac-hero-section {
      background-color: #f7f4f2;
      background-image: radial-gradient(#4c7c7d 1px, transparent 1px);
      background-size: 40px 40px;
      padding: 80px 0;
      text-align: center;
  }

  .humac-badge {
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      color: #4c7c7d;
      background-color: #e0f2f1;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
  }

  .humac-hero-title {
      font-size: 48px;
      font-weight: 900;
      color: #111827;
      margin: 0 0 20px 0;
      line-height: 1.1;
  }

  .humac-gradient-text {
      background: linear-gradient(45deg, #4c7c7d, #0d3a3b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .humac-hero-subtitle {
      font-size: 18px;
      color: #4b5563;
      max-width: 800px;
      margin: 0 auto 30px;
      line-height: 1.6;
  }

  .humac-hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .humac-btn {
      display: inline-block;
      padding: 12px 32px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .humac-btn-primary {
      background-color: #4c7c7d;
      color: white;
  }

  .humac-btn-primary:hover {
      background-color: #3a6364;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .humac-btn-secondary {
      background-color: white;
      color: #4c7c7d;
      border: 1px solid #e5e7eb;
  }

  .humac-btn-secondary:hover {
      background-color: #f9fafb;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  /* Közös szekció stílusok */
  .humac-section {
      padding: 80px 0;
  }

  .humac-bg-white {
      background-color: white;
  }

  .humac-bg-gray {
      background-color: #f9fafb;
  }

  .humac-bg-light-gray {
      background-color: #f3f4f6;
  }

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

  .humac-section-title {
      font-size: 36px;
      font-weight: 700;
      color: #111827;
      margin: 0 0 16px 0;
      position: relative;
      padding-bottom: 20px;
  }

  .humac-section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #4c7c7d;
      margin: 16px auto 0;
      border-radius: 2px;
  }

  .humac-section-subtitle {
      font-size: 16px;
      color: #4b5563;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
  }

  /* Domino szekció */
  .humac-domino-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      padding: 20px;
  }

  .humac-domino {
      width: 180px;
      height: 280px;
      background-color: #f9fafb;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      transform-origin: bottom left;
      transition: all 0.5s ease;
  }

  .humac-domino:hover {
      transform: rotate(5deg);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

  .humac-domino-icon {
      color: #ef4444;
      margin-bottom: 16px;
  }

  .humac-domino-title {
      font-size: 16px;
      font-weight: 700;
      color: #111827;
      margin: 0 0 8px 0;
  }

  .humac-domino-text {
      font-size: 12px;
      color: #6b7280;
      margin: 0;
      line-height: 1.4;
  }

  /* Mechanizmus szekció */
  .humac-mechanism {
      max-width: 1000px;
      margin: 0 auto;
  }

  .humac-mechanism-title {
      font-size: 28px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 30px;
  }

  .humac-mechanism-box {
      background-color: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e7eb;
  }

  .humac-mechanism-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
  }

  .humac-mechanism-item {
      text-align: center;
  }

  .humac-mechanism-icon-wrap {
      width: 96px;
      height: 96px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .humac-mechanism-icon {
      width: 64px;
      height: 64px;
  }

  .humac-icon-red { color: #ef4444; }
  .humac-icon-green { color: #10b981; }
  .humac-icon-blue { color: #3b82f6; }
  .humac-icon-gray { color: #374151; }
  .humac-icon-amber { color: #f59e0b; }

  .humac-mechanism-item-title {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 12px 0;
  }

  .humac-mechanism-item-text {
      font-size: 14px;
      color: #4b5563;
      margin: 0;
      line-height: 1.5;
  }

  /* Tanulmányok grid */
  .humac-studies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
  }

  .humac-study-card {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e7eb;
      padding: 24px;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
  }

  .humac-study-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      transform: translateY(-4px);
  }

  .humac-study-title {
      font-size: 18px;
      font-weight: 700;
      color: #111827;
      margin: 0 0 12px 0;
      line-height: 1.3;
  }

  .humac-study-result {
      font-size: 14px;
      color: #4b5563;
      margin: 0 0 16px 0;
      flex-grow: 1;
      line-height: 1.5;
  }

  .humac-study-result strong {
      color: #374151;
  }

  .humac-study-source {
      padding-top: 16px;
      border-top: 1px solid rgba(229, 231, 235, 0.8);
      margin-top: auto;
  }

  .humac-study-link {
      font-size: 14px;
      color: #4c7c7d;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
      gap: 4px;
  }

  .humac-study-link:hover {
      color: #3a6364;
  }

  /* Statisztika kártyák */
  .humac-stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
      margin-top: 60px;
  }

  .humac-stat-card {
      background-color: white;
      padding: 32px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e7eb;
      text-align: center;
  }

  .humac-stat-icon {
      margin: 0 auto 20px;
  }

  .humac-stat-number {
      display: block;
      font-size: 48px;
      font-weight: 700;
      color: #4c7c7d;
      margin-bottom: 16px;
  }

  .humac-stat-title {
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 12px 0;
  }

  .humac-stat-text {
      font-size: 14px;
      color: #4b5563;
      margin: 0;
      line-height: 1.5;
  }

  /* GYIK */
  .humac-faq-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .humac-faq-item {
      background-color: white;
      padding: 24px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e7eb;
  }

  .humac-faq-question {
      font-size: 18px;
      font-weight: 700;
      color: #111827;
      margin: 0 0 12px 0;
  }

  .humac-faq-answer {
      font-size: 16px;
      color: #4b5563;
      margin: 0;
      line-height: 1.6;
  }

  /* Chatbot */
  .humac-chatbot-container {
      max-width: 800px;
      margin: 0 auto;
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      border: 1px solid #e5e7eb;
      overflow: hidden;
  }

  .humac-chatbot-window {
      height: 400px;
      padding: 24px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .humac-chat-message {
      display: flex;
      gap: 12px;
      align-items: flex-start;
  }

  .humac-chat-message.humac-chat-user {
      flex-direction: row-reverse;
  }

  .humac-chat-avatar {
      background-color: #4c7c7d;
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .humac-chat-user .humac-chat-avatar {
      background-color: #3b82f6;
  }

  .humac-chat-bubble {
      background-color: #e5e7eb;
      padding: 12px 16px;
      border-radius: 8px;
      max-width: 70%;
  }

  .humac-chat-user .humac-chat-bubble {
      background-color: #3b82f6;
      color: white;
  }

  .humac-chatbot-loading {
      display: none;
      padding: 24px;
      text-align: center;
      color: #6b7280;
      align-items: center;
      justify-content: center;
      gap: 8px;
  }

  .humac-loading-spinner {
      width: 24px;
      height: 24px;
      border: 2px solid #e5e7eb;
      border-top-color: #111827;
      border-radius: 50%;
      animation: spin 1s linear infinite;
  }

  @keyframes spin {
      to { transform: rotate(360deg); }
  }

  .humac-chatbot-input-area {
      padding: 16px;
      background-color: #f9fafb;
      border-top: 1px solid #e5e7eb;
  }

  .humac-faq-buttons {
      margin-bottom: 12px;
  }

  .humac-faq-label {
      font-size: 14px;
      font-weight: 600;
      color: #4b5563;
      margin: 0 0 8px 0;
  }

  .humac-faq-button-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
  }

  .humac-faq-btn {
      background-color: white;
      border: 1px solid #d1d5db;
      font-size: 14px;
      padding: 6px 12px;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.2s ease;
  }

  .humac-faq-btn:hover {
      background-color: #e5e7eb;
  }

  .humac-chat-input-group {
      display: flex;
      gap: 8px;
  }

  .humac-chat-input {
      flex-grow: 1;
      padding: 10px 16px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 16px;
      outline: none;
      transition: border-color 0.2s ease;
  }

  .humac-chat-input:focus {
      border-color: #4c7c7d;
  }

  .humac-send-btn {
      background-color: #4c7c7d;
      color: white;
      padding: 10px 16px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .humac-send-btn:hover {
      background-color: #3a6364;
  }

  /* Mobil optimalizálás */
  @media (max-width: 768px) {
      .humac-hero-title {
          font-size: 32px;
      }

      .humac-hero-subtitle {
          font-size: 16px;
      }

      .humac-section {
          padding: 60px 0;
      }

      .humac-section-title {
          font-size: 28px;
      }

      .humac-domino-container {
          flex-direction: column;
      }

      .humac-domino {
          width: 160px;
          height: 240px;
      }

      .humac-mechanism-box {
          padding: 24px;
      }

      .humac-mechanism-grid {
          gap: 32px;
      }

      .humac-stats-grid {
          grid-template-columns: 1fr;
          gap: 24px;
      }

      .humac-chatbot-window {
          height: 300px;
      }

      .humac-chat-bubble {
          max-width: 85%;
      }
  }