.elementor-11429 .elementor-element.elementor-element-3a8b9e5{--display:flex;}.elementor-11429 .elementor-element.elementor-element-fc43363{margin:-164px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-11429 .elementor-element.elementor-element-55d640d{margin:-97px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-11429 .elementor-element.elementor-element-440b18e{margin:-67px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-11429 .elementor-element.elementor-element-fd8c744{margin:-22px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}@media(max-width:767px){.elementor-11429 .elementor-element.elementor-element-fc43363{margin:-147px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-11429 .elementor-element.elementor-element-55d640d{margin:-111px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-11429 .elementor-element.elementor-element-440b18e{margin:-104px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-7b464a7 */.hero-ai-beauty {
  background: #fff;
  color: #111;
  font-family: 'Inter Tight', sans-serif;
  padding: 120px 0 140px;
  overflow: hidden;
}

/* --- STRUKTURA --- */
.hero-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

/* --- TAG NAD TYTUŁEM --- */
.hero-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #F25623;
  background: rgba(242, 86, 35, 0.07);
  padding: 6px 14px;
  border-radius: 40px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}

/* --- NAGŁÓWEK --- */
.hero-label {
  display: inline-block;
  font-size: clamp(36px, 4vw, 64px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 35px;
  animation: fadeDown 1s ease both;
  position: relative;
}

.hero-label .ai {
  color: #F25623;
}

.hero-label .beautychat {
  color: #000;
}

/* --- TEKST --- */
.hero-description {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  max-width: 650px;
  animation: fadeSlide 1.2s ease both;
}

.hero-description strong {
  color: #000;
  font-weight: 600;
}

/* --- ZDJĘCIE --- */
.hero-image {
  position: relative;
  text-align: center;
  animation: fadeInRight 1.2s ease both;
  margin-top: -20px;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: none;
  transition: transform 0.6s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
}

/* --- ANIMACJE --- */
@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlide {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin-top: -10px;
  }

  .hero-tag {
    margin-bottom: 18px;
  }

  /* 🔹 POWIĘKSZONY NAGŁÓWEK NA MOBILE */
  .hero-label {
    justify-content: center;
    font-size: clamp(38px, 9vw, 56px); /* ✅ większy nagłówek */
    margin-bottom: 25px;
    line-height: 1.1;
  }

  .hero-label .ai {
    color: #F25623;
  }

  .hero-label .beautychat {
    color: #000;
  }

  .hero-description {
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0 auto;
    text-align: left;
    max-width: 90%;
  }

  .hero-image img {
    max-width: 320px;
    border-radius: 14px;
    margin-top: -10px;
  }
}

/* --- PODTYTUŁ Z KROPKĄ --- */
.hero-label {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  color: #000;
  letter-spacing: -0.5px;
  margin: 0;
  padding: 0;
  line-height: 1.05;
}

.hero-heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #777;
  letter-spacing: 0.3px;
  margin-top: 6px;
  line-height: 1.4;
}

.hero-subtitle .dot {
  color: #F25623;
  font-size: 18px;
  animation: pulseDot 1.8s ease-in-out infinite;
  line-height: 1;
}

/* 🔸 Pulsująca kropka */
@keyframes pulseDot {
  0%   { opacity: 0.4; transform: scale(1); }
  50%  { opacity: 1;   transform: scale(1.35); }
  100% { opacity: 0.4; transform: scale(1); }
}

/* --- RESPONSYWNOŚĆ PODTYTUŁU --- */
@media (max-width: 900px) {
  .hero-heading-group {
    align-items: center;
    text-align: center;
  }

  .hero-subtitle {
    justify-content: center;
    font-size: 14px;
    margin-top: 4px;
  }

  .hero-subtitle .dot {
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fc43363 */.mission-section {
  background: #fff;
  color: #111;
  font-family: 'Inter Tight', sans-serif;
  padding: 180px 0;
}

.mission-container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
}

/* --- HEADER --- */
.mission-header {
  text-align: center;
  margin-bottom: 120px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #F25623;
  background: rgba(242, 86, 35, 0.07);
  padding: 6px 14px;
  border-radius: 40px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mission-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #000;
}

.mission-title span {
  color: #7a7a7a;
  font-weight: 500;
}

.mission-sub {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* --- GRID --- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 30px;
}

.mission-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.mission-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 14px;
}

.mission-card p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
  max-width: 380px;
}

/* --- DUŻY KAFEL --- */
.mission-card.large {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  padding: 70px 60px;
}

.mission-card.large p {
  font-size: 17px;
  line-height: 1.9;
}

/* --- CZARNY KAFEL (pełny biały tekst) --- */
/* --- CZARNY KAFEL (pełny biały tekst bez dziedziczenia) --- */
.mission-card.dark {
  background: #121212; /* lekko rozjaśniony czarny */
  color: #fff !important;
  border: none;
  grid-column: 3 / span 1;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 70px 50px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.07) 0%, transparent 60%);
}

.mission-card.dark * {
  color: #fff !important; /* klucz: wymusza pełną biel we wszystkim wewnątrz */
}

.dark-text {
  font-size: 20px;
  line-height: 1.8;
  color: #fff !important;
  max-width: 420px;
  text-shadow: 0 0 8px rgba(255,255,255,0.05);
}

.dark-text strong {
  color: #fff !important;
  font-weight: 700;
}

.dark-text span {
  display: block;
  margin-top: 20px;
  font-size: 17px;
  color: #fff !important;
  opacity: 1;
}

/* --- MOBILE --- */
@media (max-width: 1000px) {
  .mission-section {
    padding: 100px 0;
  }

  .mission-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .mission-card,
  .mission-card.large,
  .mission-card.dark {
    border-radius: 20px;
    padding: 40px 28px;
    text-align: left;
  }

  .mission-card h4 {
    font-size: 19px;
  }

  .mission-card p {
    font-size: 16px;
    line-height: 1.75;
  }

  .mission-card.large {
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .mission-card.dark {
    background: #111;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    order: 4;
  }

  .dark-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
  }

  .dark-text span {
    color: #fff;
  }

  .mission-header {
    margin-bottom: 70px;
  }

  .mission-title {
    font-size: clamp(34px, 8vw, 48px);
  }

  .mission-sub {
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-55d640d */.ai-input-section {
  background: #fff;
  color: #111;
  font-family: 'Inter Tight', sans-serif;
  padding: 160px 0;
}

.ai-input-inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Lewa kolumna */
.ai-text .ai-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #F25623;
  background: rgba(242,86,35,0.07);
  padding: 6px 14px;
  border-radius: 40px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ai-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #000;
}

.ai-sub {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  max-width: 560px;
}

/* Prawa kolumna – pole wiadomości */
.ai-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-input-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 1.6px solid rgba(242,86,35,0.25);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.ai-input-box:focus-within {
  border-color: #F25623;
  box-shadow: 0 12px 40px rgba(242,86,35,0.15);
}

.ai-input-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 17px;
  color: #111;
  background: transparent;
  font-family: 'Inter Tight', sans-serif;
}

.ai-input-box input::placeholder {
  color: #aaa;
}

.ai-send-btn {
  background: #F25623;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(242,86,35,0.2);
}

.ai-send-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(242,86,35,0.3);
}

/* Efekt kursora przy wpisywaniu */
.typing-cursor {
  border-right: 2px solid #F25623;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  .ai-input-section {
    padding: 100px 0;
  }

  .ai-input-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .ai-text {
    order: 1;
  }

  .ai-right {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .ai-input-box {
    width: 90%;
    max-width: 100%;
    padding: 12px 16px;
  }

  .ai-input-box input {
    font-size: 15px;
  }

  .ai-send-btn {
    padding: 10px 20px;
  }

  .ai-title {
    font-size: clamp(34px, 8vw, 48px);
    line-height: 1.2;
  }

  .ai-sub {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    max-width: 90%;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 900px) {

  .ai-input-box input {
    font-size: 13px !important;
    letter-spacing: -0.02em !important;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-440b18e */.ai-personal-section {
  background: #fff;
  color: #111;
  font-family: 'Inter Tight', sans-serif;
  padding: 160px 0;
}

.ai-personal-inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* --- LEWA STRONA (ZDJĘCIA) --- */
.ai-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ai-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

/* --- ZDJĘCIA --- */
.ai-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: clip-path 0.3s ease-out;
}

.ai-img.before {
  z-index: 1;
}

.ai-img.after {
  z-index: 2;
  clip-path: inset(0 100% 0 0);
}

/* --- LINIA ŚWIETLNA (glow efekt przy przejściu) --- */
.ai-slider-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%);
  opacity: 0.8;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: left 0.25s ease-out;
  border-radius: 2px;
}

/* --- UCHWYT SUWAKA --- */
.ai-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #F25623;
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(242, 86, 35, 0.45);
  cursor: ew-resize;
  transition: left 0.25s ease-out;
  z-index: 3;
}

/* --- PRAWA STRONA (TEKST) --- */
.ai-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #F25623;
  background: rgba(242, 86, 35, 0.07);
  padding: 6px 14px;
  border-radius: 40px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ai-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  margin-bottom: 20px;
}

.ai-sub {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 560px;
}

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

.ai-list li {
  position: relative;
  font-size: 17px;
  color: #333;
  margin-bottom: 12px;
  padding-left: 24px;
}

.ai-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #F25623;
  font-weight: bold;
}

@media (max-width: 900px) {
  .ai-personal-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }

  /* 🔽 Najpierw tekst, potem zdjęcie */
  .ai-text {
    order: 1;
  }

  .ai-slider-wrapper {
    order: 2;
    max-width: 90%;
    aspect-ratio: 3 / 4;
  }

  .ai-title {
    font-size: clamp(34px, 8vw, 48px);
  }

  .ai-sub {
    font-size: 16px;
    line-height: 1.7;
  }

  .ai-list li {
    font-size: 16px;
  }

  .ai-slider-overlay {
    width: 4px;
  }

  .ai-slider-handle {
    width: 3px;
  }
}
@media (max-width: 900px) {
  /* 🔽 Mniej przestrzeni nad sekcją na mobile */
  .ai-personal-section {
    padding-top: 80px; /* było 160px – zmniejszamy */
    padding-bottom: 100px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fd8c744 */.faq-dual-section {
  background: #fff;
  color: #111;
  font-family: 'Inter Tight', sans-serif;
  padding: 160px 0;
}

.faq-dual-inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* LEWA KOLUMNA */
.faq-left {
  max-width: 500px;
}

.faq-heading {
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  color: #000;
  margin-bottom: 24px;
}

.faq-heading span {
  color: #F25623;
}

.faq-desc {
  color: #555;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.faq-more {
  font-weight: 600;
  font-size: 16px;
  color: #F25623;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-more:hover {
  color: #000;
  letter-spacing: 0.4px;
}

/* PRAWA KOLUMNA – AKORDEON */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 20px 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 6px 0;
  gap: 20px; /* 🔹 Przestrzeń między tekstem a ikoną */
  word-wrap: break-word; /* 🔹 Zawijanie długich pytań */
  overflow-wrap: anywhere;
  white-space: normal;
}

.faq-icon {
  flex-shrink: 0; /* 🔹 Zapobiega ściskaniu ikony */
  font-size: 22px;
  color: #F25623;
  transition: transform 0.3s ease;
  margin-top: 2px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #555;
  font-size: 16px;
  line-height: 1.75;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 12px;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 1100px) {
  .faq-dual-inner {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .faq-dual-section {
    padding: 100px 0;
  }

  .faq-dual-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .faq-left {
    max-width: 100%;
    text-align: center;
  }

  .faq-heading {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .faq-desc {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-more {
    font-size: 14.5px;
  }

  .faq-right {
    width: 100%;
  }

  .faq-question {
    font-size: 16px;
    line-height: 1.5;
    padding: 10px 0;
    gap: 14px; /* 🔹 Dostosowanie przestrzeni na ikonę */
  }

  .faq-answer {
    font-size: 14.5px;
    padding-right: 10px;
  }

  .faq-icon {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .faq-dual-section {
    padding: 80px 0;
  }

  .faq-dual-inner {
    gap: 40px;
  }

  .faq-heading {
    font-size: 24px;
  }

  .faq-desc {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .faq-question {
    font-size: 15px;
    gap: 12px; /* 🔹 Więcej miejsca na małych ekranach */
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* Wyłączenie efektu hover na przyciskach akordeonu */
.faq-question:hover {
  color: inherit !important;
  background: none !important;
  transform: none !important;
  letter-spacing: normal !important;
  box-shadow: none !important;
  cursor: pointer;
}/* End custom CSS */