/*!
 * FinderPrice static theme (Bootstrap 3.3.7 compatible)
 */
:root {
  --fp-page-bg: rgb(248, 250, 252);
  --fp-body-bg: #ffffff;
  --fp-text: #002216;
  --fp-text-muted: #5f6b7b;
  --fp-text-dark: #1e2b3a;
  --fp-green: #00fbad;
  --fp-green-dark: #00e09a;
  --fp-purple: #6d28d9;
  --fp-blue: #2563eb;
  --fp-border: #e5e7eb;
  --fp-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --fp-radius: 32px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: var(--fp-page-bg);
  color: var(--fp-text);
  line-height: 1.6;
}
.fp-body.o-nas,
.fp-body.homepage-2 {
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;  
  color: #6d28d9;
  font-weight: 600;
  padding-bottom: 4px;
  transition: color 200ms ease, border 200ms ease;
}

a:hover {
  text-decoration: none;
  color: #00fbad;
}

.hidden {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden;
}

.fp-body {
  background: var(--fp-page-bg);
}

.fp-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* background: var(--fp-page-bg); */
}

.fp-main {
  flex: 1 0 auto;
  padding-top: 0;
}

.fp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  /* background: #fff; */
  /* border-bottom: 1px solid transparent; */
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
}
.homepage-2 .fp-navbar {
  background: #dde9ff;
}

.fp-navbar.navbar-scrolled {
  background: transparent;
  border-color: rgba(226, 232, 240, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: var(--fp-shadow);
}

.fp-navbar-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fp-logo img {
  height: 36px;
}

.fp-nav-links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  color: var(--fp-text);
}

.fp-nav-links a {
  transition: color 200ms ease;
  color: rgb(0, 34, 22);
}

.fp-nav-links a:hover,
.fp-mobile-menu a:hover {
  color: var(--fp-green-dark);
}

.fp-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fp-menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--fp-border);
  background: #fff;
  color: var(--fp-text);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.fp-mobile-menu {
  display: block;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--fp-border);
  box-shadow: var(--fp-shadow);
  padding: 24px;
  text-align: center;
}

.fp-mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
}
.fp-mobile-menu a {
  font-size: 18px;
  padding: 10px 14px;
}
.fp-mobile-menu button {
  margin-top: 12px;
}
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.fp-btn-primary {
    width: auto;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 700;
    background: var(--fp-green);
    color: #313131;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0, 251, 173, 0.35);
    transition: all 0.2s ease;
}

.fp-btn-primary:hover,
.fp-btn-primary:focus {
    /* background-color: #00e09a; */
    background: var(--fp-green-dark);
    color: #313131;
    text-decoration: none;
    transform: translateY(-2px);
}

.fp-btn-black {
  background: #0f172a;
  color: #fefefe;
  box-shadow: 0 15px 35px rgba(61, 61, 61, 0.35);
}
.fp-btn-black:hover {
  background: #464a53;
  transform: translateY(-2px);
  color: #fff;
}

.fp-btn-outline {
  background: transparent;
  color: var(--fp-text);
  border: 1px solid var(--fp-border);
  padding: 14px 32px;
}

.fp-btn-outline:hover {
  background: #f1f5f9;
}
.fp-btn-arrow {
    font-weight: 700;
    font-size: 16px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.fp-btn-arrow .arrow {
  display: inline-block;
  margin-left: 5px;
  font-weight: bold;
  transition: margin-left 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fp-btn-arrow:hover .arrow {
  display: inline-block;
  margin-left: 10px;
}
.btn-arrow-blue {
  color: rgb(37, 99, 235);
}

.fp-btn-white {
  background: #fff;
}
.fp-btn-sm {
  padding: 12px 28px;
  font-size: 14px;
}
.fp-btn-link {
  border: none;
  background: none;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
}

.fp-btn-link i {
  margin-left: 6px;
}

.fp-hero {
  background: #dde9ff;
  text-align: center;
  padding: 140px 0 220px;
  position: relative;
}

.fp-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background-image: url('../images/bg-wave-white.png');
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}
.fp-hero .fp-btn-primary {
    font-size: 2rem;
    font-weight: 800;
    padding: 18px 39px;
}

.fp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 14px;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.1);
}

.fp-hero-badge span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fp-green);
  display: inline-flex;
  animation: pulse 2s infinite;
}

.fp-hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--fp-text);
}

.fp-hero-title span {
  background: linear-gradient(90deg, #22c55e, var(--fp-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fp-hero-text {
  font-size: 20px;
  color: var(--fp-text-muted);
  max-width: 780px;
  margin: 10px auto 50px;
}

.fp-hero-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fp-hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}


.fp-hero-cta {
  margin-top: 28px;
}

.fp-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.fp-hero-link {
  color: #94a3b8;
  font-weight: 600;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 4px;
  transition: color 200ms ease, border 200ms ease;
}

.fp-hero-link:hover {
  color: var(--fp-green-dark);
  border-color: var(--fp-green-dark);
}

.fp-hero-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #6a7282;
}
.fp-hero-check i {
    color: var(--fp-green);
}

.fp-stats-panel {
  background: #fff;
  border-radius: var(--fp-radius);
  border: 1px solid var(--fp-border);
  box-shadow: var(--fp-shadow);
  padding: 40px 20px;
  text-align: center;
}

.fp-stat-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--fp-purple);
}

.fp-stat-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  color: #94a3b8;
}

.fp-stats-section {
  margin-top: -20px;
  padding-top: 0;
  position: relative;
  z-index: 5;
}

.fp-stats-grid {
  background: #fff;
  border-radius: var(--fp-radius);
  border: 1px solid var(--fp-border);
  box-shadow: var(--fp-shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 22px 24px;
}

.fp-stats-grid > div {
  text-align: center;
  padding: 8px 12px;
}

@media (min-width: 768px) {
  .fp-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 28px 64px;
  }

  .fp-stats-grid > div + div {
    border-left: 1px solid var(--fp-border);
  }
}

.fp-section {
  padding: 80px 0;
}
.fp-section-no-bottom {
  padding: 80px 0 10px;
}
.normal-page {
  padding-top: 40px;
}

.fp-section-muted {
  background: #F8FAFC;
}

.fp-section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}
.fp-section-mediumtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 13px;
}

.fp-section-subtitle {
  color: var(--fp-text-muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 28px;
}
.fp-section-subtitle-wide {
  max-width: 100%;
}
.fp-section-textpage {
  padding: 36px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border: 1px solid var(--fp-border);
  border-radius: 40px;
  background: #fff;
  max-width: 900px;
  margin: 90px auto 40px auto;
  color: rgb(75, 85, 99);
  font-size: 16px;
}
.fp-section-textpage > .container {
  width: 100%;
}
.fp-section-textpage h1,
.fp-section-textpage h2,
.fp-section-textpage h3 {
  color: var(--fp-text);
  margin-top: 28px;
  margin-bottom: 24px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .fp-section-textpage {
    padding: 12px;
  }
}

.fp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #e0f2fe;
  color: #0369a1;
  margin-bottom: 18px;
}

.fp-pill--outline {
  background: #fff;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #155dfc;
}

.fp-highlight-blue {
    color: #155dfc;
}
.fp-income-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .fp-income-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fp-section-subtitle {
    margin: 0 auto 28px;
  }
}
@media (max-width: 991px) {  
  .fp-section-subtitle {
    margin: 0 0 28px;
  }
}

.fp-income-card {
  position: relative;
  background: #fff;
  border-radius: var(--fp-radius);
  border: 1px solid var(--fp-border);
  padding: 48px 40px;
  box-shadow: var(--fp-shadow);
  min-height: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}

.fp-income-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.15);
}

.fp-income-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
}

.fp-income-card--dark {
  background: var(--fp-text);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.fp-income-card--dark::after {
  background: rgba(255, 255, 255, 0.08);
}

.fp-income-card--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.fp-income-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: var(--fp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 34px;
  box-shadow: 0 15px 40px rgba(0, 251, 173, 0.35);
  position: relative;
  z-index: 1;
}

.fp-income-card--dark .fp-income-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--fp-green);
  box-shadow: none;
}

.fp-income-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.fp-income-card p {
  color: var(--fp-text-muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.fp-income-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.fp-income-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #475569;
}

.fp-income-card--dark .fp-income-list li {
  color: rgba(255, 255, 255, 0.85);
}

.fp-income-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-flex;
}

.fp-offer-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--fp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #0f172a;
  margin-bottom: 24px;
  box-shadow: 0 15px 40px rgba(0, 251, 173, 0.35);
}

/* .fp-offer-card--dark .fp-offer-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--fp-green);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
} */

.fp-offer-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.fp-offer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 10px;
}

.fp-offer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.fp-scenario {
  padding-top: 100px;
}

.fp-scenario-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}

.fp-scenario-copy h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--fp-text);
  margin: 24px 0 16px;
}

.fp-scenario-copy p {
  font-size: 18px;
  color: var(--fp-text-muted);
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .fp-scenario-grid {
    flex-direction: row;
    align-items: center;
  }

  .fp-scenario-copy,
  .fp-scenario-card {
    width: 50%;
  }
}
@media (max-width: 991px) {
    .fp-scenario-grid .fp-scenario-card .fp-btn {
      padding: 4px 10px;
      font-size: 13px;
  }
  .fp-scenario-sum {
    padding: 14px 14px 8px;
  }
}

.fp-scenario-card {
  background: #fff;
  border-radius: 40px;
  padding: 32px;
  border: 1px solid var(--fp-border);
  box-shadow: var(--fp-shadow);
  position: relative;
}

.fp-scenario-item {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: #F8FAFC;
  margin-bottom: 16px;
  border: 1px solid #f1f1f1;
}

.fp-scenario-item:last-child {
  margin-bottom: 0;
}

.fp-scenario-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 16px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}
.fp-scenario-price {
  margin-left:auto;
  text-align: right;
  color:#16a34a;
  font-size: 20px;
}
.fp-scenario-sum {
  border-top: 1px dashed var(--fp-border);
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 24px;
}

.fp-footer {
  background: #f8fafc;
  border-top: 1px solid var(--fp-border);
  padding: 60px 0 10px;
  margin-top: 0;
}

.fp-footer h4 {
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--fp-text-dark);
}

.fp-footer .fp-logo img {
  max-width: 130px;
  height: auto;
  margin-top: 10px;
}

.fp-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fp-footer li {
  margin-bottom: 10px;
  color: var(--fp-text-muted);
}

.fp-footer li a {
  color: rgb(95, 107, 123);
  font-weight: normal;
}
.fp-footer li a:hover {
  color: var(--fp-green-dark);
}

.fp-footer-meta {
  border-top: 1px solid var(--fp-border);
  margin-top: 40px;
  padding-top: 24px;
  color: #94a3b8;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.fp-footer-meta a {
  color: inherit;
  font-weight: 600;
}

.fp-footer-meta a:hover {
  color: var(--fp-green-dark);
}

.fp-socials {
  display: flex;
  gap: 12px;
}

.fp-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--fp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, border 200ms ease, transform 200ms ease;
  padding-top: 2px;
}

.fp-socials a:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-2px);
}
.fp-socials a.fp-icon-facebook:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.fp-socials a.fp-icon-instagram:hover {
  background: #fdf2f8;
  border-color: #fbcfe8;
}

.fp-socials a svg {
  width: 16px;
  height: 16px;
  color: #4b5563;
}

@media (max-width: 991px) {
  .fp-footer {
    text-align: center;
  }

  .fp-socials {
    justify-content: center;
  }

  .fp-footer h4 {
    margin-top: 28px;
  }
  .fp-footer-meta {
    gap: 0;
  }
}

.fp-feature-card {
  text-align: center;
  background: #f9fafb;
  border-radius: 28px;
  border: 1px solid var(--fp-border);
  padding: 46px 32px;
  height: 100%;
  min-height: 330px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .fp-feature-card {
    min-height: auto;
  }
}
.fp-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 36px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}
.fp-icon-money {
  background: url('../images/icon-money.png') no-repeat center center;
  background-size: 24px 24px;
}
.fp-icon-shield {
  background: url('../images/icon-shield.png') no-repeat center center;
  background-size: 24px 24px;
}
.fp-icon-blitz {
  background: url('../images/icon-blitz.png') no-repeat center center;
  background-size: 24px 24px;
}

.fp-highlight-box {
  background: var(--fp-text);
  color: #fffc;
  font-size: 16px;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.fp-highlight-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 60%);
}

.fp-highlight-box h3 {
  color: var(--fp-green);
  margin-top: 10px;
  margin-bottom: 20px;
}

.fp-blog-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--fp-border);
  box-shadow: var(--fp-shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
  height: 100%;
}

.fp-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.fp-blog-card__image {
  height: 210px;
  overflow: hidden;
}

.fp-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.fp-blog-card:hover .fp-blog-card__image img {
  transform: scale(1.08);
}

.fp-blog-card__body {
  padding: 28px;
}

.fp-blog-card__tag {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}

.fp-blog-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.fp-blog-card__excerpt {
  color: var(--fp-text-muted);
  font-size: 14px;
  min-height: 60px;
}

.fp-blog-meta {
  font-size: 12px;
  font-weight: 700;
  color: #cbd5f5;
}

.fp-contact-card,
.fp-form-card {
  background: #fff;
  border-radius: 40px;
  border: 1px solid var(--fp-border);
  padding: 36px;
  box-shadow: var(--fp-shadow);
}
.fp-contact-card {
  background: none;
}

.fp-form-card label {
  font-weight: 700;
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
  display: inline-block;
}

.fp-form input:not([type='submit']):not([type='button']):not([type='checkbox']):not([type='radio']),
.fp-form textarea,
.fp-form select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--fp-border);
  padding: 10px 16px;
  background: #F8FAFC;
  transition: border 200ms ease, box-shadow 200ms ease;
  font-size: 15px;
  resize: vertical;
  height: auto;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.fp-form label.label-checkbox {
  font-weight: normal;
}

.fp-form textarea {
  min-height: 140px;
}

.fp-form input:not([type='submit']):not([type='button']):not([type='checkbox']):not([type='radio']):focus,
.fp-form textarea:focus,
.fp-form select:focus {
  outline: none;
  border-color: var(--fp-green);
  box-shadow: 0 0 0 3px rgba(0, 251, 173, 0.2);
  background: #fff;
}

.komunikatError,
.komunikatSuccess {
  border-radius: 18px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
}
.komunikatError {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  box-shadow: 0 10px 25px rgba(185, 28, 28, 0.08);
}

.komunikatSuccess {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  box-shadow: 0 10px 25px rgba(22, 101, 52, 0.08);
}
.error {
  color: #b91c1c;
}

@media (max-width: 991px) {
  .fp-form-card {
    margin: 10px;
    margin-top: 60px;
    padding: 24px;
  }
  .wspolpraca .fp-form-card {
    margin-top: 0;
  }
}

.fp-social-links {
  display: flex;
  gap: 16px;
}

.fp-social-links a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 200ms ease, border 200ms ease;
}

.fp-social-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.08);
}

.fp-step-card {
    position: relative;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    padding: 24px;
    padding-left: 40px;
    background: #fff;
    border: 1px solid #f3f4f6;    
    border-radius: 24px;
    font-size: 14px;
}

.fp-step-card + .fp-step-card {
  margin-top: 20px;
}

.fp-step-card h3 {
  margin-top: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

.fp-step-card p {
  margin-bottom: 0;
  color: var(--fp-text-muted);
}

.how-it-works-side--earnings .fp-step-card {
    text-align: right;
    padding: 24px;
    padding-right: 40px;
}

.fp-step-badge {
    box-sizing: border-box;
    box-shadow: 0 0 #fff, 0 0 #000, 0 10px 15px -3px #dcfce7, 0 4px 6px -4px #dcfce7;
    color: #002216;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    border: 2px solid #fff;
    border-radius: 9999px;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    display: flex;
    top: 24px;
    left: -16px;
    position: absolute;
    background-color: #00fbad;
}
.how-it-works-side--earnings .fp-step-badge {  
    background-color: rgb(59, 130, 246);
    box-shadow: 0 0 #fff, 0 0 #000, 0 10px 15px -3px #dbeafe, 0 4px 6px -4px #dbeafe;
    color: #fff;
    left: auto;
    right: -16px;
}

.fp-step-card--highlight .fp-step-badge { 
    background-color: #000;
    color: #fff;
}

.fp-step-card--highlight {
  background: #f0fdf4;
  border-color: #dcfce7;
}
.how-it-works-side--earnings .fp-step-card--highlight {
  background: #eff6ff;
  border-color: #dbeafe;
}
.fp-step-card:hover {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transform: matrix(1, 0, 0, 1, 0, -4);
}

.fp-cta-box {
  text-align: center;
  background: #f9fafb;
  border-radius: 40px;
  border: 1px solid var(--fp-border);
  padding: 48px;
  box-shadow: var(--fp-shadow);
  position: relative;
  overflow: hidden;
}
.fp-cta-box.fp-strong-shadow {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.fp-bg-white {
  background: #fff;
}

@media (max-width: 991px) {
  .fp-cta-box {
    padding: 32px 14px 14px 14px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .fp-nav-links {
    display: none;
  }

  .fp-menu-toggle {
    display: inline-flex;
  }

  .fp-hero-title {
    font-size: 40px;
  }
}

@media (min-width: 992px) {
  .fp-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .fp-navbar-inner {
    height: 72px;
  }

  .fp-hero {
    padding: 120px 0 180px;
  }

  .fp-section-title {
    font-size: 32px;
  }

  .fp-feature-card,
  .fp-contact-card,
  .fp-form-card,
  .fp-scenario-card {
    padding: 28px;
  }
  .fp-scenario-grid .fp-scenario-card {
    padding: 14px;
  }
  

  .fp-footer-meta {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 1600px) {
    .container-big {
        width: 1530px;
    }
}

@media (max-width: 991px) {
   .fp-section {
    padding: 50px 0;
   }
   .fp-section-no-bottom {
    padding: 50px 0 0;
   }
}


/* How it works page */
.how-it-works-intro {
  max-width: 820px;
  margin: 0 auto;
}

.how-it-works-title {
  margin-bottom: 18px;
}

.how-it-works-highlight,
.fp-highlight {
  background: linear-gradient(90deg, #22c55e, var(--fp-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how-it-works-subtitle {
  margin-bottom: 0;
}

.how-it-works-steps {
  padding-top: 0;
}

.how-it-works-grid > [class*='col-'] {
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .how-it-works-grid > [class*='col-'] {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .how-it-works-grid {
    padding: 10px;
  }
}

.how-it-works-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.how-it-works-header--earnings {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  justify-content: flex-end;
}


.how-it-works-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #22c55e;
  border: 1px solid #dcfce7;
  background: rgb(240, 253, 244);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.how-it-works-icon--discounts {
  background: rgb(240, 253, 244) url('../images/icon-how-it-works-cart.png') no-repeat center center;
  color: #16a34a;
}

.how-it-works-icon--earnings {
  background: #eff6ff url('../images/icon-how-it-works-money.png') no-repeat center center;
  color: #3b82f6;
  border-color: #dbeafe;;
}

.how-it-works-heading {
  margin: 0;
  font-weight: 800;
  font-size: 28px;
}

.how-it-works-lead {
  margin: 4px 0 0;
  color: #9ca3af;
  font-size: 16px;
}

.how-it-works-cta {
  text-align: left;
  margin-top: 28px;
}

.how-it-works-btn {
  padding-top: 20px;
}
.how-it-works-side--earnings .how-it-works-btn {
  text-align: right;
}

.how-it-works-help {
  padding-top: 32px;
}

.how-it-works-cta-container {
  max-width: 720px;
  margin: 0 auto;
}

.how-it-works-support-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #fff url('../images/icon-help.png') no-repeat center center;
  border: 1px solid var(--fp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--fp-text);
  font-size: 22px;
}

.how-it-works-cta-title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 28px;
}

.how-it-works-cta-text {
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .how-it-works-side--earnings .fp-step-badge {  
      left: -16px;
  }
  .how-it-works-side--earnings .fp-step-card {
    text-align: left;
    padding: 24px;
    padding-left: 40px;
  }
  .how-it-works-header--earnings {
    justify-content: flex-start;
    padding-top: 20px;
  }
  .how-it-works-side--earnings .how-it-works-btn {
    text-align: left;
  }
}

.fp-cta-box-decor1 {
    filter: blur(64px);
    background-color: rgb(0 251 173 / 0.1);
    border-radius: 9999px;
    width: 160px;
    height: 160px;
    top: -40px;
    right: -40px;
    position: absolute;
}
.fp-cta-box-decor2 {
    filter: blur(64px);
    background-color: #dbeafe80;
    border-radius: 9999px;
    width: 160px;
    height: 160px;
    bottom: -40px;
    left: -40px;
    position: absolute;
}

.fp-color-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #22c55e;
  background: rgb(240, 253, 244);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border-color: #dcfce7;  
  border-style: solid;
  border-width: 0;
}
.fp-color-icon-border {
  border-width: 1px;
}
.fp-color-icon.fp-icon-center {
  margin: 0 auto;
}
.fp-color-icon.fp-icon-big {
  width: 80px;
  height: 80px;
  border-radius: 16px;
}
.fp-color-icon.fp-icon-big svg {
  width: 32px;
  height: 32px;
}

.fp-color-icon-green {
  background: rgb(240, 253, 244);
  border-color: rgb(217, 253, 228);
}
.fp-color-icon-green .fp-icon-svg {
  background-color: #00fbad;
  min-width: 30px;
  min-height: 30px;
}
.fp-color-icon-green svg {
  color: #00fbad;
}

.fp-color-icon-blue {
  background: #eff6ff;
  border-color: #ddecff;
}
.fp-color-icon-blue .fp-icon-svg {
  background-color: #3b82f6;
  min-width: 30px;
  min-height: 30px;
}

.fp-color-icon-purple {
  background: #faf5ff;
  border-color: #d8b4fe;
}
.fp-color-icon-purple .fp-icon-svg {
  background-color: #a855f7;
  min-width: 30px;
  min-height: 30px;
}

.fp-color-icon-mail {
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask: url('../images/icon-mail.svg') no-repeat center;
  mask: url('../images/icon-mail.svg') no-repeat center;
}
.fp-color-icon-newsletter {
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask: url('../images/icon-newsletter.svg') no-repeat center;
  mask: url('../images/icon-newsletter.svg') no-repeat center;
}
.fp-color-icon-localization {
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask: url('../images/icon-localization.svg') no-repeat center;
  mask: url('../images/icon-localization.svg') no-repeat center;
}
.fp-color-icon-time {
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask: url('../images/icon-time.svg') no-repeat center;
  mask: url('../images/icon-time.svg') no-repeat center;
}
.fp-color-icon.fp-icon-big .fp-icon-svg {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  min-width: 40px;
  min-height: 40px;
}

/* .how-it-works-icon--discounts {
  background: rgb(240, 253, 244) url('../images/icon-how-it-works-cart.png') no-repeat center center;
  color: #16a34a;
}

.how-it-works-icon--earnings {
  background: #eff6ff url('../images/icon-how-it-works-money.png') no-repeat center center;
  color: #3b82f6;
  border-color: #dbeafe;;
} */

.media-body {
  font-size: 16px;
}
.media-body p {
  margin-bottom: 0;
}

.m-b-20 {
  margin-bottom: 20px;
}
.media-left, .media>.pull-left {
  padding-right: 20px;
}

.panel-group .faq-panel {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 34, 22, 0.08);
    max-width: 900px;
    margin: auto;
    margin-bottom: 20px;
}

.faq-panel .panel-heading {
    background-color: #fff;
    border: none;
    border-radius: 16px;
    padding: 0;
}
.faq-panel .panel-heading:hover {
    background-color: #f9fafb;
}

.faq-panel .panel-title {
    font-weight: 700;
    font-size: 16px;
}

.faq-panel .panel-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #002216;
    padding: 24px 28px;
    text-decoration: none;
}

.faq-panel .panel-title a.collapsed {
    color: #1f2b27;
}

.faq-panel .panel-body {
    color: #5f6b66;
    font-size: 15px;
    line-height: 1.6;
    padding: 24px 28px;
    border-top: 1px solid #eef2f0;
    background-color: #fff;
    border-radius: 0 0 16px 16px;
}

.faq-arrow {
    transition: transform 0.2s ease;
    font-size: 14px;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #9ca3af;
    color: #9ca3af;
    -webkit-mask: url('../images/icon-arrow-down.svg') no-repeat center;
    mask: url('../images/icon-arrow-down.svg') no-repeat center;
}


.faq-panel .panel-title a[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}


/** blog **/

.blog-main {
    padding-top: 140px;
}

.blog-hero {
    padding: 40px 0 30px;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #00fbad;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-gradient {
    background: linear-gradient(90deg, #0ea5e9, #00fbad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: #62706a;
    margin: 0 auto;
    max-width: 560px;
}

.blog-grid {
    padding: 20px 0 80px;
}

.blog-card {
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 34, 22, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #eef2f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    /* width: 300px; */
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 34, 22, 0.15);
}

.blog-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: 26px 28px 30px;
    height: 340px;
    position: relative;
}
.blog-card__body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(rgba(231, 231, 231, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.blog-card__tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}

.tag-zakupy {
    color: #12b76a;
}

.tag-poradnik {
    color: #2563eb;
}

.tag-news {
    color: #a855f7;
}

.tag-oszczędzanie {
    color: #047857;
}

.tag-podróże {
    color: #f97316;
}

.tag-technologi {
    color: #475467;
}

.blog-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--fp-text-dark);
}
.blog-card:hover .blog-card__title {
  color: var(--fp-green-dark);
}

.blog-card__excerpt {
    color: #9ca3af;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.6;
    min-height: 80px;
    margin-bottom: 18px;
}

.blog-card__meta {
    font-size: 12px;
    font-weight: 700;
    color: #d1d5db;
    margin-bottom: 10px;
}

.fp-outline-btn {
    border-radius: 999px;
    border-color: #d7dfdb;
    color: #002216;
    font-weight: 700;
    padding: 12px 36px;
    transition: background 0.2s ease;
}

.fp-outline-btn:hover,
.fp-outline-btn:focus {
    background-color: #ffffff;
    border-color: #c8d1cd;
}

.load-posts-wrapper {
    text-align: center;
    margin-top: 40px;
}

.blog-post .date {
    color: #d1d5db;
    margin-top: 20px;
    margin-bottom: 40px;
}
.blog-post .featured-image {
  margin-bottom: 60px;
}
.blog-post .single-post-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--fp-text-muted);
  line-height: 1.8;
}
.blog-post .content-separator {
  margin: 40px 0;
}
.blog-post .section-see-also .heading {
  text-align: center;
  padding-bottom: 20px;
}
.blog-post h2 {
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .blog-post .single-post-content {
    font-size: 16px;
  }
  .blog-post h2 {
    font-size: 26px;
  }
}

.newsletter-box-container {
  max-width: 720px;
  margin: 0 auto;
}
.newsletter-box h1 {
  font-weight: 900;
  font-size: 36px;
  line-height: 40px;
}
.newsletter-box .fp-form {
  max-width: 80%;
  margin: 0 auto;
}
.newsletter-box .fp-form .fp-btn {
  margin-bottom: 20px;
  margin-top: 5px;
}
.newsletter-box .fp-form label {
  color: #9ca3af;
}
.newsletter-box .fp-form .fp-input-mail {
  position: relative;
  display: block;
}
.newsletter-box .fp-form .fp-input-mail input[type='email'] {
  padding: 16px;
  padding-left: 56px !important;
  font-size: 18px;
  font-weight: 700;
}
.newsletter-box .fp-form .fp-input-mail::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 22px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-color: #9ca3af;
  -webkit-mask: url('../images/icon-mail.svg') no-repeat center;
  mask: url('../images/icon-mail.svg') no-repeat center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  pointer-events: none;
}

/**
 * offers
 */
.fp-offer-card {
    background-color: #ffffff;
    border-radius: 30px;
    border: 1px solid #edf2f7;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.25s ease;
    margin-bottom: 30px;
}

.fp-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
}

.fp-offer-card-media {
    position: relative;
    height: 220px;
    padding: 30px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fp-offer-card-media .ribbon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    z-index: 20;
}
.fp-offer-card-media .ribbon-slanted {
    position: absolute;
    top: 20px;
    left: -35px;
    width: 150px;
    transform: rotate(-45deg);
    background-color: #00FBAD;
    color: #002216;
    text-align: center;
    font-weight: 800;
    padding: 8px 0;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fp-offer-card-media img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.fp-offer-card:hover .fp-offer-card-media img {
    transform: scale(1.05);
}

.fp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.fp-badge--red {
    background-color: #fef2f2;
    color: #b91c1c;
}

.fp-badge--green {
    background-color: #ecfdf5;
    color: #047857;
}
.fp-badge--top {
  background: linear-gradient(135deg, #fff7d1 0%, #fde68a 55%, #f4c430 100%);
  color: #7a4b00;
  border: 1px solid #f4c430;
  box-shadow: 0 6px 18px rgba(244, 196, 48, 0.35);
}
.fp-badge--blink {
  animation: fp-badge-blink 1s ease-in-out infinite;
}
@keyframes fp-badge-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.fp-offer-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.fp-offer-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    color: #002216;
}

.fp-offer-card-brand {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.fp-offer-card-meta span {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}
.fp-offer-card-meta {
  border-radius: 24px;
  border-color: #f9fafb;
  background-color: #f8fafc;
  box-shadow: 0 0 #0000, 0 0 #0000, inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  margin-bottom: 10px;
}
.fp-offer-card-meta .panel-body {
  padding: 20px;
}
.fp-offer-card-meta .fp-offer-card-meta-header {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 0;
}
.fp-offer-card-meta .fp-offer-card-meta-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: rgba(34, 197, 94, 0.15);
  color: #15803d;
  font-size: 10px;
}
.fp-offer-card-meta .fp-offer-card-meta-status.fp-offer-card-meta-status-success {
  background-color: rgba(34, 197, 94, 0.15);
  color: #15803d;
}
.fp-offer-card-meta .fp-offer-card-meta-status.fp-offer-card-meta-status-warning {
  background-color: rgba(234, 179, 24, 0.15);
  color: #b45309;
}
.fp-offer-card-meta .fp-offer-card-meta-status.fp-offer-card-meta-status-danger {
  background-color: rgba(239, 68, 68, 0.15);
  color: #b91c1c;
}


.fp-offer-card-meta .fp-offer-card-meta-counter {
  margin-bottom: 10px;
  line-height: 1;
}
.fp-offer-card-meta .fp-offer-card-meta-total {
  font-size: 32px;
  font-weight: 800;
  color: #002216;
}
.fp-offer-card-meta .fp-offer-card-meta-divider {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  margin-left: 6px;
  position: relative;
  top: -4px;
}
.fp-offer-card-meta .offers-left {
  letter-spacing: 0.6px;
}
.fp-offer-card-meta .progress,
.fp-offer-card-meta-counter .progress {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444 0%, #eab308 50%, #22c55e 100%);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.08);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.fp-offer-card-meta .progress-bar,
.fp-offer-card-meta-counter .progress-bar {
  border-radius: 0;
  background: #e2e8f0;
  box-shadow: none;
  float: right;
  transition: width 300ms ease;
}

.fp-offer-card-amount {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: #22c55e;
    margin-top: 6px;
}

.fp-offer-card-footer {
    margin-top: 16px;
}
.fp-offer-card-footer a.fp-btn {
  width: 100%;
}

.fp-offer-detail-main {
  padding-top: 30px;
  padding-bottom: 90px;
}
.fp-offer-detail-back-wrap {
  margin-bottom: 14px;
  margin-left: 38px;
}
.fp-offer-detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-weight: 600;
}
.fp-offer-detail-back-link:hover {
  color: var(--fp-green-dark);
}

.fp-offer-detail-card {
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: 40px;
  box-shadow: var(--fp-shadow);
  overflow: hidden;
  margin-bottom: 30px;
}
.fp-offer-detail-header {
  margin: 0;
  padding: 36px;
  border-bottom: 1px solid #f1f5f9;
}
.fp-offer-detail-logo-wrap {
  height: 130px;
  border: 1px solid var(--fp-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  margin-bottom: 15px;
}
.fp-offer-detail-logo-wrap img {
  max-height: 100%;
  max-width: 100%;
}
.fp-offer-detail-title {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--fp-text);
}
.fp-offer-detail-head-meta {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.fp-offer-detail-date-badge {
  position: static;
}
.fp-offer-detail-rating {
  color: #eab308;
  font-weight: 700;
  font-size: 14px;
}
.fp-offer-detail-star {
  margin-right: 4px;
}
.fp-offer-detail-rating-meta {
  color: #9ca3af;
  font-weight: 400;
  margin-left: 4px;
}

.fp-offer-detail-body {
  padding: 36px;
}
.fp-offer-detail-stats-row {
  margin-bottom: 26px;
}
.fp-offer-detail-refund-label {
  display: block;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fp-offer-detail-refund-percent {
  font-size: 44px;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
}
.fp-offer-detail-refund-max {
  margin-top: 8px;
  color: #64748b;
  font-weight: 500;
}
.fp-offer-detail-refund-max span {
  color: #9600f3;
  font-weight: 700;
}
.fp-offer-detail-counter {
  margin-bottom: 0;
}
.fp-offer-detail-cta-wrap {
  margin-top: 40px;
  margin-bottom: 12px;
}
.fp-offer-detail-cta {
  padding: 16px 28px;
  font-size: 22px;
  font-weight: 800;
  width: 100%;
  max-width: 430px;
}

.fp-offer-detail-alert {
  display: flex;
  gap: 16px;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 30px;
  padding: 28px;
}
.fp-offer-detail-alert-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fef3c7;
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.fp-offer-detail-alert h4 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--fp-text);
}
.fp-offer-detail-description,
.fp-offer-detail-example {
  color: #5f6b7b;
  font-size: 16px;
}

.fp-offer-detail-how {
  background: var(--fp-text);
  color: #fff;
  border-radius: 40px;
  padding: 36px;
}
.fp-offer-detail-how h3 {
  margin: 0 0 30px;
  font-size: 32px;
  font-weight: 800;
}
.fp-offer-detail-step {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}
.fp-offer-detail-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-offer-detail-step-active .fp-offer-detail-step-num {
  background: var(--fp-green);
  border-color: var(--fp-green);
  color: var(--fp-text);
}
.fp-offer-detail-step h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}
.fp-offer-detail-step-active h4 {
  color: var(--fp-green);
}
.fp-offer-detail-step p {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
}
.fp-offer-detail-help {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}
.fp-offer-detail-help p {
  margin: 0 0 8px;
  color: #94a3b8;
}

.fp-calc-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 96px;
}
.fp-calc-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}
.fp-calc-bg-shape-left {
  width: 260px;
  height: 260px;
  top: 80px;
  left: 80px;
  background: rgba(34, 197, 94, 0.12);
}
.fp-calc-bg-shape-right {
  width: 320px;
  height: 320px;
  right: 60px;
  bottom: 60px;
  background: rgba(59, 130, 246, 0.12);
}
.fp-calc-cta {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #002216 0%, #003824 100%);
  border-radius: 50px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 25px 55px rgba(0, 34, 22, 0.35);
  overflow: hidden;
}
.fp-calc-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.65) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.65) 1px, transparent 1px);
  background-size: 30px 30px;
}
.fp-calc-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.fp-calc-title {
  margin: 0 0 18px;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
}
.fp-calc-title span {
  color: var(--fp-green);
}
.fp-calc-text {
  max-width: 660px;
  margin: 0 auto 36px;
  color: #cbd5e1;
  font-size: 22px;
  line-height: 1.6;
}
.fp-calc-btn {
  font-size: 22px;
  padding: 16px 36px;
  box-shadow: 0 0 25px rgba(0, 251, 173, 0.35);
}
.fp-calc-btn:hover {
  background: #fff;
}

@media (max-width: 991px) {
  .fp-calc-cta {
    padding: 42px 24px;
    border-radius: 36px;
  }
  .fp-calc-title {
    font-size: 38px;
  }
  .fp-calc-text {
    font-size: 18px;
  }
  .fp-calc-btn {
    font-size: 18px;
  }
}
.fp-offer-detail-help a {
  color: var(--fp-green);
  font-weight: 700;
  font-size: 16px;
}
.fp-offer-detail-help a:hover {
  color: var(--fp-green-dark);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .fp-offer-detail-title {
    font-size: 30px;
    text-align: center;
  }
  .fp-offer-detail-head-meta {
    justify-content: center;
  }
  .fp-offer-detail-refund {
    margin-bottom: 20px;
  }
  .fp-offer-detail-cta {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .fp-offer-detail-refund {
    text-align: left;
  }
}

.fp-calc-page {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}
.fp-calc-page-container {
  max-width: 980px;
}
.fp-calc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-weight: 700;
  margin-bottom: 26px;
  transition: color 200ms ease;
}
.fp-calc-back-link:hover {
  color: var(--fp-green-dark);
}

.fp-calc-card {
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: 40px;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
  padding: 64px;
}
.fp-calc-intro {
  margin-bottom: 34px;
}
.fp-calc-intro h1 {
  margin: 0 0 10px;
  color: var(--fp-text);
  font-size: 44px;
  font-weight: 800;
}
.fp-calc-intro p {
  margin: 0 auto;
  max-width: 700px;
  color: var(--fp-text-muted);
  font-size: 20px;
  line-height: 1.65;
}

.fp-calc-grid {
  text-align: left;
}
.fp-calc-col-left {
  margin-bottom: 20px;
}
.fp-calc-form-group {
  margin-bottom: 22px;
}
.fp-calc-label {
  display: block;
  margin-bottom: 8px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fp-calc-select-wrap {
  position: relative;
}
.fp-calc-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  font-size: 16px;
}
.fp-calc-control.form-control {
  height: auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  box-shadow: none;
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}
.fp-calc-control.form-control:focus {
  border-color: var(--fp-green);
  box-shadow: 0 0 0 3px rgba(0, 251, 173, 0.2);
  background: #fff;
}
.fp-calc-select-wrap .fp-calc-control.form-control {
  padding-right: 42px;
  appearance: none;
}
.fp-calc-input.form-control {
  font-size: 24px;
}

.fp-calc-result-box {
  position: relative;
  overflow: hidden;
  min-height: 295px;
  border-radius: 30px;
  background: #002216;
  color: #fff;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-calc-result-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fp-calc-result-bg-right {
  top: -40px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: rgba(0, 251, 173, 0.2);
  filter: blur(48px);
}
.fp-calc-result-bg-left {
  bottom: -30px;
  left: -20px;
  width: 130px;
  height: 130px;
  background: rgba(37, 99, 235, 0.2);
  filter: blur(35px);
}
.fp-calc-result-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.fp-calc-result-label {
  margin: 0 0 12px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fp-calc-result-amount {
  margin: 0;
  color: var(--fp-green);
  font-size: 58px;
  font-weight: 900;
  line-height: 1.05;
}
.fp-calc-result-amount span {
  font-size: 24px;
  font-weight: 700;
}
.fp-calc-result-sep {
  width: 70px;
  height: 1px;
  margin: 16px auto;
  background: rgba(255, 255, 255, 0.2);
}
.fp-calc-result-rule {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
}
.fp-calc-result-details {
  margin-top: 14px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #86efac;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
}

.fp-calc-cta2 {
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}
.fp-calc-cta2 p {
  margin-bottom: 14px;
  color: #9ca3af;
  font-weight: 700;
    font-size: 16px;
}

@media (max-width: 767px) {
  .fp-calc-page {
    padding-top: 20px;
  }
  .fp-calc-intro h1 {
    font-size: 34px;
  }
  .fp-calc-intro p {
    font-size: 17px;
  }
  .fp-calc-result-amount {
    font-size: 46px;
  }
  .fp-calc-control.form-control {
    font-size: 18px;
  }
  .fp-calc-card {
    padding: 36px;
  }
}

.offers-cashback-widget .sub-heading {
  text-align: center;
  color: #9ca3af;
  margin: 80px 0;
}
.offers-cashback-widget .sub-heading .fp-section-mediumtitle {
  font-weight: 700;
}
.offers-cashback-widget .sub-heading p {
  font-size: 16px;
  color: #9ca3af;
}

/* inactive offers */
.fp-offer-card--inactive.fp-offer-card:hover {
    transform: none;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}
.fp-offer-card--inactive.fp-offer-card:hover .fp-offer-card-media img {
    transform: scale(1);
}
.fp-offer-card.fp-offer-card--inactive .fp-offer-card-media .ribbon-slanted {
    background-color: #bbbcbd !important;
    color: #fff;
}
.fp-offer-card.fp-offer-card--inactive .fp-offer-card-media img {
    filter: grayscale(100%);
    opacity: .6;
}
.fp-offer-card.fp-offer-card--inactive .fp-badge,
.fp-offer-card.fp-offer-card--inactive .fp-offer-card-meta-status {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    border: 0;
    box-shadow: none;
}
.fp-offer-card.fp-offer-card--inactive .fp-offer-card-title {
    color: #5b5c5d;
}
.fp-offer-card.fp-offer-card--inactive .fp-offer-card-meta .fp-offer-card-meta-total {
  color: #bbbcbd;
}
.fp-offer-card.fp-offer-card--inactive .fp-offer-card-meta .fp-offer-card-meta-divider {
  color: #e2e3e4;
}
.fp-offer-card.fp-offer-card--inactive .fp-offer-card-meta .progress {
  background: linear-gradient(90deg, #969696 0%, #d1d5db 50%, #e5e7eb 100%);
}
.fp-offer-card.fp-offer-card--inactive .fp-btn-primary {
  background: #980df6;
  box-shadow: 0 15px 30px rgba(157, 65, 180, 0.35);
  color: #fff;
}
/* modal */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 1);
  /* backdrop-filter: blur(25px); */
}
.offers-cashback-notify-modal .modal-dialog {
    box-shadow: none;
    margin-top: 160px;
}
.offers-cashback-notify-modal a {
  color: var(--fp-green);
}
.offers-cashback-notify-modal .modal-dialog .modal-content {
    border-radius: 30px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
    width: 80%;
    margin-left: 10%;
}
.offers-cashback-notify-modal .modal-dialog .modal-content .modal-header {
  border: 0;
}
.offers-cashback-notify-modal .modal-dialog .modal-content .modal-body {
    padding: 0 36px 36px 36px;
    text-align: center;
    color: #6b7280;
}
.offers-cashback-notify-modal .modal-dialog .modal-content .modal-body .newsletter-title {
  font-size: 26px;
  color: #002216;
  font-weight: 700;
}
.offers-cashback-notify-modal .modal-dialog .modal-content .modal-body p {
  font-size: 16px;
}
.offers-cashback-notify-modal .js-notify-campaign-name {
  color: var(--fp-green);
}
.offers-cashback-notify-modal .fp-form {
  margin-top: 10px;
}
.offers-cashback-notify-modal .fp-form label {
  font-size: 13px;
}
.offers-cashback-notify-modal .fp-btn {
  width: 100%;
  margin-top: 20px;
}
.offers-cashback-notify-modal .alert {
  border-radius: 30px;
  margin-bottom: 0;
}
.fp-offer-not-found {
  padding-top: 60px;
}

@media (max-width: 991px) {
  .offers-cashback-notify-modal .modal-dialog .modal-content {
      width: 90%;
      margin-left: 5%;
  }
  .fp-offer-detail-how {
    padding: 28px;
  }
  .fp-offer-detail-header {
    padding: 28px;
  }
  .fp-offer-detail-body {
    padding: 28px;
  }
  .fp-offer-detail-alert {
    padding: 28px;
    margin-bottom: 28px;
  }
}