/* ==============================
   Imports
============================== */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&display=swap");

/* ==============================
   Fonts & Global Variables
============================== */
@font-face {
  font-family: "PP Woodland";
  src: url("../fonts/PPWoodland-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-body: "DM Sans", sans-serif;
  --font-heading: "PP Woodland", serif;
}

/* ==============================
   Reset & Base Styles
============================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  color: #202020;
  background: #fff;
  line-height: 1.5;
}
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
}
html,
body {
  overflow-x: hidden;
}

/* ==============================
   Promo Bar
============================== */
.promo-bar {
  background: #f9f9f9;
  color: #4b5563;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
}

/* ==============================
   Navigation
============================== */
.nav-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.nav-spacer {
  width: 1.5rem;
  height: 1.5rem;
}
.nav-logo-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
}
.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #374151;
}
.nav-btn {
  background: 0 0;
  border: 0;
  cursor: pointer;
  color: inherit;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-btn:hover {
  color: #000;
}
@media (min-width: 768px) {
  .nav-spacer {
    display: none;
  }
  .nav-logo-link {
    position: static;
    transform: none;
  }
  .nav-logo {
    height: 1.5rem;
  }
}

/* ==============================
   Language Dropdown
============================== */
.language-dropdown {
  position: relative;
  display: inline-flex;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.language-button {
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1;
  transition: 0.18s ease;
}

.language-button:hover {
  background: #f7f7f7;
}

.language-icon,
.language-chevron {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.language-chevron {
  width: 14px;
  height: 14px;
  color: #777;
  transition: transform 0.18s ease;
}

.language-dropdown.is-open .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 110px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 999;
}

.language-dropdown.is-open .language-menu {
  display: block;
}

.language-option {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: 0.15s ease;
}

.language-option:hover {
  background: #f5f5f5;
  color: #111;
}

.language-option.active {
  background: #f1f1f1;
  color: #111;
}

/* Desktop visible */
.language-dropdown-desktop {
  display: inline-flex;
}

/* Mobile hidden on desktop */
.language-dropdown-mobile {
  display: none;
}

@media (max-width: 768px) {
  .language-dropdown-desktop {
    display: none;
  }

  .language-dropdown-mobile {
    display: inline-flex;
  }

  .language-button {
    height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .language-icon {
    width: 15px;
    height: 15px;
  }

  .language-chevron {
    width: 13px;
    height: 13px;
  }

  .language-menu {
    right: 0;
    min-width: 100px;
  }
}

/* ==============================
   Hero Section
============================== */
.hero {
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title {
  text-align: center;
  font-size: 1.575rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero-desc {
  font-size: 1rem;
  color: #555555;
  text-align: center;
  max-width: 44rem;
  margin: 0.6rem auto 2.5rem;
  line-height: 1.625;
}
.hero-img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  border: 0;
  height: 100%;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-br {
    display: block;
  }
}
@media (max-width: 767px) {
  .hero-br {
    display: none;
  }
}

/* ==============================
   Why Section
============================== */
.why-section {
  text-align: center;
  width: 100%;
}
.why-title {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 600;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .why-title {
    font-size: 2rem;
  }
}
.why-content {
  color: #4f4f4f;
  font-size: 1rem;
  max-width: 35rem;
  margin: 1.5rem auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.highlight {
  background: #f3f3f3;
  color: #111827;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-weight: 500;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.why-list li::marker {
  color: #9ca3af;
}
.list-item-title {
  font-weight: 500;
  color: #111827;
}
.why-italic {
  font-style: italic;
  color: #6b7280;
}
.why-footer {
  text-align: left;
}
@media (min-width: 640px) {
  .why-footer {
    text-align: left;
    margin-bottom: 2rem;
  }
}
.why-footer-title {
  font-size: 14px;
  color: #111827;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.highlight-lg {
  background: #f3f3f3;
  color: #111827;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.02em;
  display: inline-block;
}

/* ==============================
   Product / Offer Section
============================== */
.product {
  max-width: 450px;
  margin: 0 auto;
  padding: 3rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}
.rating-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: .25rem;
  margin-bottom: .75rem;
  width: 100%;
}
.stars-bg {
  display: flex;
  color: #000000;
  background: #ffdc7ba6;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  gap: 0.25rem;
}
.stars-bg svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}
.rating-text {
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 0.5rem;
}
.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .product-title {
    font-size: 1.7rem;
    text-align: left;
    line-height: 1.2;
  }
}
.features-list {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: #1f2937;
  list-style: none;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.features-list svg {
  color: #ffffff;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background: black;
  border-radius: 999px;
  padding: 3px;
}
.btn-primary {
  width: 100%;
  background: #ffdc7b;
  color: #000;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 1rem;
}
.btn-primary:hover {
  background: #facc15;
}
.pay-info {
  font-size: .875rem;
  color: #7e7e7e;
  margin-bottom: 2rem;
  font-family: monospace;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.product-desc {
  text-align: left;
  width: 100%;
}
.product-desc p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.625;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0.6;
  filter: grayscale(100%);
}
.trust-logos span {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.trust-logos svg {
  width: 2rem;
  height: 2rem;
}

/* ==============================
   Included Section
============================== */
.included {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10rem 1.5rem;
  text-align: center;
}
.inc-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.inc-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #1f2937;
}
.inc-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.inc-desc {
  font-size: 1rem;
  color: #626262;
  max-width: 32rem;
  margin: 0 auto 3rem;
  line-height: 1.625;
}
.inc-img {
  width: 100%;
  max-width: 100%;
  margin: 2rem auto 0;
  display: block;
}
.dots-wrap {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #000;
}
.dot-dim {
  background: #d1d5db;
}

/* ==============================
   Testimonials / Comments
============================== */
.testimonials {
  max-width: 1152px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.testi-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  max-width: 280px;
  margin: 1rem auto;
}
.testi-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  font-size: 1.125rem;
}
.testi-rating span {
  color: #4b5563;
}
.stars {
  display: flex;
  color: #10b981;
  gap: 0.25rem;
}
.stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}
.comments-list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .comments-list {
    gap: 2rem;
  }
}
.comment {
  display: flex;
  gap: 0.625rem;
  text-align: left;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 640px) {
  .comment {
    gap: 0.75rem;
  }
}
.comment-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 0.125rem;
  border: 1px solid #f3f4f6;
}
@media (min-width: 640px) {
  .comment-avatar {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.comment-content {
  flex: 1;
  min-width: 0;
}
.comment-bubble-wrap {
  position: relative;
  display: inline-block;
  max-width: 95%;
}
@media (min-width: 640px) {
  .comment-bubble-wrap {
    max-width: 90%;
  }
}
.comment-bubble {
  background: #fafafa;
  border-radius: 1rem;
  padding: 0.625rem 0.875rem;
  display: inline-block;
  text-align: left;
  width: 100%;
  box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.12),0px 0px 0px 1px rgba(0,0,0,0.08);
}
@media (min-width: 640px) {
  .comment-bubble {
    border-radius: 1.25rem;
    padding: 0.75rem 1rem;
  }
}
.comment-name {
  font-weight: 500;
  font-size: 0.8125rem;
  color: #111827;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) {
  .comment-name {
    font-size: 0.875rem;
  }
}
.comment-text {
  font-size: 0.82rem;
  color: #3d3d3d;
  margin-top: 0.125rem;
  line-height: 1.4;
  word-break: break-word;
}
@media (min-width: 640px) {
  .comment-text {
    font-size: 0.8rem;
  }
}
.comment-text strong {
  font-weight: 700;
  display: block;
  color: #242424;
  margin-bottom: 0.125rem;
}
.like-badge {
  position: absolute;
  bottom: -0.375rem;
  right: -0.5rem;
  background: #fff;
  border-radius: 9999px;
  padding: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-left: 0.25rem;
  padding-right: 0.375rem;
  border: 1px solid #f9fafb;
  z-index: 10;
}
@media (min-width: 640px) {
  .like-badge {
    right: -0.75rem;
  }
}
.like-icon-bg {
  background: #1877f2;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.like-icon-bg svg {
  width: 10px;
  height: 10px;
  margin-left: 1px;
}
.like-count {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1;
}
.comment-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}
@media (min-width: 640px) {
  .comment-actions {
    gap: 1rem;
    padding: 0 0.75rem;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
  }
}
.comment-actions button {
  background: 0 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-weight: inherit;
  font-size: inherit;
  padding: 0;
}
.comment-actions button:hover {
  text-decoration: underline;
}
.comment-time {
  font-weight: 400;
  color: #9ca3af;
}
.comment-hide-mobile {
  display: none;
}
@media (min-width: 768px) {
  .comment-hide-mobile {
    display: flex;
  }
}

/* ==============================
   Case Study Section
============================== */
.case-study {
  max-width: 1024px;
  margin: 0 auto;
  padding: 4rem 3rem;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.case-images {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.case-images img {
  width: 50%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.case-images img:last-child {
  margin-top: 2rem;
}
.case-title {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.case-desc {
  color: #646464;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.625;
}
.case-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.5;
  filter: grayscale(100%);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

/* ==============================
   Original FAQ Section
============================== */
.faq {
  max-width: 768px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.faq-title {
  font-size: 1.875rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-item span {
  font-weight: 500;
  font-size: 1.125rem;
  color: #111827;
  transition: color 0.2s;
}
.faq-item:hover span {
  color: #000;
}
.faq-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
}

/* ==============================
   Original Footer / CTA
============================== */
.footer-wrap {
  padding: 4rem 1.5rem 2rem;
  background: #fff;
}
.cta-card {
  max-width: 1024px;
  margin: 0 auto 6rem;
  background: #f9fafb;
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .cta-card {
    padding: 4rem;
  }
}
.cta-title {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: #111827;
}
.cta-desc {
  color: #4b5563;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.625;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #000;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-dark:hover {
  background: #1f2937;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.footer-main {
  max-width: 1152px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: left;
  border-top: 1px solid #f3f4f6;
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 5fr 7fr;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #111827;
}
.footer-brand p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 24rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
.link-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.link-group h4 {
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.25rem;
}
.link-group a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.link-group a:hover {
  color: #000;
}
.footer-bottom {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.875rem;
  color: #6b7280;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-legal {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #000;
}
.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0.6;
}
.footer-icons svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ==============================
   Fanels FAQ + Minimal Footer Redesign
============================== */ /* Fanels FAQ + minimal footer redesign */

/* Fanels FAQ */
.fanels-faq {
  background: #fff;
  padding: 3.75rem 1.5rem 4.5rem;
  color: #121417;
  overflow: hidden;
}
.fanels-tabs {
  max-width: 1180px;
  margin: 0 auto 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.9rem;
  white-space: nowrap;
}
.fanels-tab {
  font-family: var(--font-body);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 700;
  color: #9ca0a7;
  text-decoration: none;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}
.fanels-tab-brand {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.fanels-tab-spaced {
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 1.33rem;
}
.fanels-tab-active {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  color: #9ca0a7;
  border: 1px solid #a9abb0;
  padding: 0.55rem 1rem;
}
.fanels-faq-inner {
  max-width: 500px;
  margin: 0 auto;
}
.fanels-faq-title {
  font-size: 2rem;
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-align: center;
  margin-bottom: 3rem;
  color: #111417;
}
.fanels-faq-list {
  border-top: 1px solid #e7e7e7;
}
.fanels-faq-item {
  border-bottom: 1px solid #e7e7e7;
}
.fanels-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: #1f2328;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}
.fanels-faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 1.8;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.fanels-faq-item.is-open .fanels-faq-question svg {
  transform: rotate(180deg);
}
.fanels-faq-answer {
  display: none;
  color: #69707a;
  font-size: 14px;
  line-height: 1.65;
  padding: 0 3rem 1.85rem 0;
  max-width: 760px;
}
.fanels-faq-item.is-open .fanels-faq-answer {
  display: block;
}

/* Fanels Footer */
.fanels-footer {
  background: #fff;
  color: #111417;
  position: relative;
  overflow: hidden;
  background-image: url(https://www.image2url.com/r2/default/images/1780870111463-463febfd-22e9-4dff-a25e-66412943a8b3.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: repeat-x;
}
.fanels-footer-pattern {
  height: 3rem;
  background: repeating-linear-gradient(
    135deg,
    transparent 0 22px,
    #e5e2dc 22px 25px,
    transparent 25px 51px
  );
  opacity: 0.9;
}
.fanels-footer-inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 7rem 3rem 9rem;
  text-align: center;
}
.fanels-footer-title {
  font-size: 2rem;
  line-height: 0.98;
  margin: 0 auto 1.5rem;
  color: #111417;
  max-width: 420px;
}
.fanels-footer-desc {
  font-size: 1rem;
  color: #555555;
  text-align: center;
  max-width: 27rem;
  margin: 0.6rem auto 2rem;
  line-height: 1.625;
}
.fanels-footer-actions {
  max-width: 350px;
  margin: 0 auto 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fanels-footer-btn {
  width: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  padding: 0.5rem 1rem;
}
.fanels-footer-btn:hover {
  transform: translateY(-1px);
}
.fanels-footer-btn-outline {
  background: #fff;
  border: 2px solid #111417;
  color: #111417;
}
.fanels-footer-btn-primary {
  background: #ffdc7b;
  color: #000000;
  border: none;
}
.fanels-footer-trial {
  display: inline-block;
  color: #5c5c5c;
  font-size: 1rem;
  margin: 0.15rem 0 4rem;
  font-family: monospace;
  text-transform: uppercase;
}
.fanels-payment-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}
.fanels-payment-badges span {
  min-width: 2.7rem;
  height: 1.45rem;
  border-radius: 0.18rem;
  background: #e5e5e5;
  border: 1px solid #d2d2d2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #333;
}
.fanels-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  color: #7b818b;
  font-size: 1rem;
}
.fanels-footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.fanels-footer-bottom a:hover {
  color: #111417;
}

/* ==============================
   Responsive Styles
============================== */
@media (max-width: 900px) {
  .fanels-tabs {
    justify-content: flex-start;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 4rem;
  }
  .fanels-tabs::-webkit-scrollbar {
    display: none;
  }
  .fanels-faq-title,
  .fanels-footer-title {
    font-size: 2.65rem;
  }
  .fanels-footer-inner {
    padding-top: 4rem;
  }
  .fanels-faq-question {
    font-size: 16px;
  }
  .fanels-faq-answer {
    font-size: 14px;
    padding-right: 1rem;
  }
}
@media (max-width: 560px) {
  .fanels-faq {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .fanels-faq-title,
  .fanels-footer-title {
    font-size: 1.5rem;
  }
  .fanels-tab {
    font-size: 1.2rem;
  }
  .fanels-tab-active {
    font-size: 0.95rem;
  }
  .fanels-footer-desc {
    font-size: 14px;
  }
  .fanels-footer-bottom {
    gap: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  .fanels-payment-badges span {
    min-width: 2.35rem;
  }
  .hero-img-container {
    flex-direction: column;
}
body {
}
.hero-desc {
    font-size: 14px;
    max-width: 21rem;
    margin: 1rem auto 2.5rem;
}
.nav-container {
    padding: 1rem 1.5rem;
}
}

/* ==============================
   Fanels Feature Slider
============================== */
.inc-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: #f3f3f3;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.features-slider-wrap {
  position: relative;
  width: 100%;
  margin-top: 2.25rem;
}
.features-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.25rem 1rem;
  scrollbar-width: none;
  margin-left: 1rem;
  scroll-padding-left: 10px;
}
.features-slider::-webkit-scrollbar {
  display: none;
}
.feature-card {
  min-height: 420px;
  background: #ffffff;
  border-radius: 10px;
  padding: 1.2rem;
  text-align: left;
  scroll-snap-align: start;
  box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.12),0px 0px 0px 1px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.feature-visual {
  height: 200px;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  border: 1px solid #e6e6e6;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-card h3 {
  color: #171717;
  font-size: 1.2rem;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 0.7rem;
  font-family: var(--font-heading);
}
.feature-card p {
  color: #626262;
  font-size: 0.82rem;
  line-height: 1.50;
  margin-bottom: 1rem;
  min-height: 5.9rem;
}
.feature-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 1rem;
  margin: 1 0 1rem 0;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.12),0px 0px 0px 1px rgba(0,0,0,0.08);
}
.feature-btn:hover {
  transform: translateY(-1px);
  background: #e8ded1;
}
.feature-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: #292929;
  font-size: 0.75rem;
  margin: auto 0 0;
}
.feature-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.feature-card li svg {
  width: 1.08rem;
  height: 1.08rem;
  padding: 0.18rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ebebeb;
  color: #000000;
  stroke-width: 3;
}
.features-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid #eee8de;
  background: rgba(255, 255, 255, 0.9);
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(10px);
}
.features-arrow-left {
  left: -1.25rem;
}
.features-arrow-right {
  right: -1.25rem;
}
.features-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.features-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #dbdbdb;
  transition: all 0.2s ease;
}
.features-dots span.is-active {
  width: 1.55rem;
  background: #808080;
}
.mini-window,
.mini-checkout,
.offer-stack,
.stats-card,
.editor-mini,
.ready-list {
  width: 82%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0.8rem;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.06);
}
.mini-window {
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mini-title,
.mini-text {
  display: block;
}
.mini-title {
  font-weight: 700;
  color: #141414;
}
.mini-text {
  font-size: 0.72rem;
  color: #737373;
}
.mini-input {
  height: 1.7rem;
  border-radius: 0.35rem;
  background: #f4f4f4;
  border: 1px solid #ececec;
}
.mini-button,
.mini-pay {
  height: 1.85rem;
  border-radius: 0.38rem;
  background: #ffdc7b;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
}
.mini-checkout {
  padding: 1rem;
}
.mini-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 0.38rem 0;
  font-size: 0.72rem;
}
.mini-pay {
  margin-top: 0.75rem;
}
.offer-stack {
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.offer-stack div {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem;
  border-radius: 0.55rem;
  background: #fff7eb;
  border: 1px solid #dadada;
  font-size: 0.72rem;
}
.offer-stack div:nth-child(2) {
  background: #f2f2f2;
}
.offer-stack div:nth-child(3) {
  background: #fffbf1;
}
.stats-card {
  padding: 1rem;
}
.chart-line {
  height: 4rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, transparent 45%, #ffdc7a 46%, #ffc359 49%, transparent 50%), repeating-linear-gradient(to bottom, #eef0f2 0 1px, transparent 1px 1.25rem);
}
.stats-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.9rem;
}
.stats-bottom span:first-child {
  display: flex;
  flex-direction: column;
}
.stats-bottom b {
  font-size: 1rem;
}
.stats-bottom small {
  color: #777;
  font-size: 0.68rem;
}
.donut {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: conic-gradient(#ffc459 0 68%, #e6e6e6 68% 100%);
  position: relative;
}
.donut::after {
  content: "";
  position: absolute;
  inset: 0.72rem;
  border-radius: 50%;
  background: #fff;
}
.feature-visual-automation {
  flex-direction: column;
  gap: 0.28rem;
}
.flow-box {
  min-width: 60%;
  padding: 0.25rem 0.65rem;
  border-radius: 0.55rem;
  background: #ffdc7a;
  color: #000000;
  border: 1px solid #ff98005c;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}
.flow-box-green {
  background: #edf8ef;
  color: #2d603c;
  border-color: #d8eddc;
}
.flow-box-warm {
  background: #ffffff;
  color: #000000;
  border-color: #d1d1d1;
}
.flow-line {
  width: 1px;
  height: 0.75rem;
  background: #c8c8c8;
}
.editor-mini {
  height: 75%;
  display: flex;
  padding: 0.55rem;
  gap: 0.55rem;
}
.editor-sidebar {
  width: 27%;
  border-radius: 0.45rem;
  background: repeating-linear-gradient(to bottom, #f2f2f2 0 0.45rem, #fff 0.45rem 0.9rem);
}
.editor-canvas {
  flex: 1;
  border-radius: 0.5rem;
  border: 1px dashed #9db7f8;
  padding: 0.65rem;
  font-size: 0.72rem;
  color: #111417;
}
.editor-canvas div {
  height: 3.2rem;
  border-radius: 0.4rem;
  background: #d0d0d0;
  margin-top: 0.7rem;
}
.ready-list {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.ready-list div {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem;
  border-radius: 0.55rem;
  background: #fff;
  font-size: 0.6rem;
  font-weight: 600;
}
.ready-list svg {
  width: 1rem;
  height: 1rem;
  color: black;
  background: #ffdc7b;
  border-radius: 999px;
  padding: 2px;
}

@media (min-width: 1024px) {
  .features-slider {
    grid-auto-columns: calc((100% - 6rem) / 4);
  }
}
@media (max-width: 900px) {
  .features-arrow {
    display: none;
  }
  .features-slider {
    /* margin-left: -1.5rem; */
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    grid-auto-columns: minmax(260px, 78vw);
  }
  .feature-card {
    min-height: 500px;
  }
}
@media (max-width: 560px) {
  .included {
    padding: 9rem 1.15rem;
  }
  .inc-title {
    font-size: 1.5rem;
    line-height: 1.08;
    max-width: 200px;
    margin: 1rem auto;
  }
  .inc-desc {
    font-size: 14px;
    margin-bottom: 1.75rem;
    max-width: 280px;
  }
  .features-slider {
    grid-auto-columns: minmax(245px, 86vw);
  }
  .feature-card {
    min-height: max-content;
  }
  .feature-card p {
    min-height: auto;
  }
  .case-title {
    font-size: 1.5rem;
}
}


/* ==============================
   PP Woodland heading font fix
   Reason: style.css is in the root, so the font path must point to assets/fonts/.
============================== */
@font-face {
  font-family: "PP Woodland";
  src: url("../fonts/PPWoodland-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-heading: "PP Woodland", Georgia, "Times New Roman", serif;
  --fanels-title-size: clamp(1.875rem, 5.2vw, 2rem);
}

.font-heading,
.hero-title,
.product-title,
.why-title,
.inc-title,
.testi-title,
.case-title,
.fanels-faq-title,
.fanels-footer-title {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
}



.fanels-faq-question {
  font-family: var(--font-body);
  font-weight: 600 !important;
}

@media (min-width: 768px) {
  :root {
    --fanels-title-size: 2rem;
  }
}

/* FOOTER CSS */
.site-footer {
  border-top: 1px solid var(--dm-footer-border, rgba(0, 0, 0, 0.07));
  padding: 3.5rem 2rem 2.5rem;
}

.footer-inner {
  max-width: 740px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo-wrap {
  margin-bottom: 0.875rem;
}

.footer-logo {
  height: 22px;
  width: auto;
}

.footer-logo.logo-light {
  filter: none;
  opacity: 1;
}

.footer-description {
  font-size: 0.78rem;
  color: var(--dm-subtle, #8a8a8a);
  line-height: 1.7;
  max-width: 200px;
  margin: 0;
}

.footer-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dm-subtle, #8a8a8a);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--dm-muted, #78716c);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--dm-heading, #1c1917);
}

.footer-divider {
  width: 100%;
  height: 1.5px;
  background-color: var(--dm-divider, rgba(0, 0, 0, 0.1));
  opacity: 0.4;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--dm-subtle, #8a8a8a);
  line-height: 1.7;
}

.footer-address strong {
  color: var(--dm-muted, #78716c);
}

.footer-copyright {
  font-size: 0.7rem;
  color: var(--dm-subtle, #8a8a8a);
  opacity: 0.7;
  white-space: nowrap;
  margin: 0;
}

.logo-dark {
  display: block;
}

.logo-light {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .logo-dark {
    display: none;
  }

  .logo-light {
    display: block;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  .site-footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copyright {
    white-space: normal;
  }
  .case-desc {
    font-size: 14px;
}
.features-list {

    font-size: 0.9rem;
}
}

@media (max-width: 392px) {
  /* CSS za male ekrane ide ovdje */

.font-heading, .hero-title, .product-title, .why-title, .inc-title, .testi-title, .case-title, .fanels-faq-title, .fanels-footer-title {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 1.4rem;
  }
  .features-list {
    font-size: 0.82rem;
}
.rating-text {
    font-size: 0.75rem;
}
}
.pay-info strong,
.fanels-footer-trial strong {
  font-weight: 700 !important;
}
