/* ===== CUSTOM STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #faf9f6;
  --color-card: #ffffff;
  --color-foreground: #1c2536;
  --color-muted: #6b7280;
  --color-accent: #3b6bba;
  --color-accent-light: rgba(59, 107, 186, 0.1);
  --color-border: #e2e5ea;
  --color-section-alt: #f3f2ee;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-foreground);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--color-foreground);
}
h2 {
  margin-bottom: 1.5rem;
}
.text-muted-custom {
  color: var(--color-muted) !important;
}
.header-actions {
  gap: 0;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(188, 198, 214, 0.55);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f2a44;
  background: linear-gradient(135deg, #eef5ff 0%, #f7f1ff 55%, #fff6ec 100%);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  color: #1f2a44;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  border-color: #c9d8ee;
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 575.98px) {
  .social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .social-icon-btn svg {
    width: 16px;
    height: 16px;
  }
}
.text-accent {
  color: var(--color-accent);
}

#contactForm .form-control-custom {
  font-size: 16px !important;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(250, 249, 246, 0.95) !important;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
}

.site-header .brand {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-foreground);
  text-decoration: none;
}

.offer-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.offer-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #666;
  background: #f6f6f6;
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 18px;
}

.offer-title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}

.offer-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 22px;
  min-height: 120px;
}

.offer-price-wrap {
  border-top: 1px solid #efefef;
  padding-top: 16px;
  margin-bottom: 22px;
}

.offer-price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8b8f97;
  margin-bottom: 6px;
  font-weight: 600;
}

.offer-price {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.offer-btn {
  width: 100%;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .offer-text {
    min-height: auto;
  }
}

.brands-strip {
  padding: 70px 0 55px;
  background: #ffffff;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

.brands-label {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #8b8f97;
  margin-bottom: 38px;
  font-weight: 600;
}

.brands-logos {
  row-gap: 28px;
}

.brand-item {
  padding: 10px 20px;
}

.brand-logo {
  max-height: 50px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: all 0.25s ease;
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .brands-strip {
    padding: 50px 0 35px;
  }

  .brands-label {
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .brand-logo {
    max-height: 40px;
  }
}

.site-header .brand:hover {
  color: var(--color-foreground);
  text-decoration: none;
}

.site-header .brand-sub {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-left: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background-color: var(--color-foreground) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 0.375rem !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  transition: opacity 0.2s !important;
  text-decoration: none !important;
  display: inline-block !important;
  line-height: 1.5 !important;
  cursor: pointer;
  box-shadow: none !important;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus,
.btn-primary-custom:active {
  opacity: 0.85;
  color: #fff !important;
  text-decoration: none !important;
  background-color: var(--color-foreground) !important;
  box-shadow: none !important;
  outline: none !important;
}

.btn-outline-custom {
  background: transparent !important;
  color: var(--color-foreground) !important;
  border: 1px solid var(--color-border) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 0.375rem !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  transition: background-color 0.2s !important;
  text-decoration: none !important;
  display: inline-block !important;
  line-height: 1.5 !important;
  cursor: pointer;
  box-shadow: none !important;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus,
.btn-outline-custom:active {
  background-color: var(--color-section-alt) !important;
  color: var(--color-foreground) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ===== SECTIONS ===== */
.section-padding {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--color-section-alt);
}

/* ===== BADGE ===== */
.badge-custom {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
  background: transparent;
}

.label-accent {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-accent);
}

/* ===== TRUST PILLS ===== */
.trust-item {
  font-size: 0.85rem;
  color: var(--color-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1.5rem;
  margin-top: 0.5rem;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

/* ===== HERO PHOTO ===== */
.hero-photo-block {
  aspect-ratio: 4/5;
  background: var(--color-section-alt);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.about-photo-block {
  aspect-ratio: 3/4;
  background: var(--color-section-alt);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* ===== STATS ===== */
.stats-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ===== CARDS ===== */
.card-custom {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.2s;
}

.card-custom:hover {
  border-color: rgba(59, 107, 186, 0.35);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.375rem;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.card-custom h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-custom p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== OFFER CARDS ===== */
.offer-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.offer-card:hover {
  border-color: rgba(59, 107, 186, 0.35);
}

.offer-btn {
  padding: 0.5rem 1.15rem !important;
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  width: auto !important;
  min-height: 0 !important;
  align-self: flex-start;
}

.offer-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.offer-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.375rem;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

/* ===== BLOCKQUOTE ===== */
.highlight-line {
  border-left: 2px solid var(--color-accent);
  padding-left: 1rem;
  font-weight: 500;
  color: var(--color-foreground);
  font-size: 1.05rem;
}

/* ===== DOT LIST ===== */
.dot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dot-list li {
  padding-left: 1rem;
  position: relative;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.dot-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

/* ===== LIMITED BLOCK ===== */
.limited-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2.5rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
  background: #fbfaf9;
  padding-top: 6.5rem;
  padding-bottom: 7rem;
}

.faq-container {
  max-width: 750px;
}

.faq-wrap {
  background: transparent;
}

.faq-item {
  border-bottom: 1px solid #d4d7dd;
}

.faq-item:first-child {
  border-top: 0;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 1rem 4.25rem 1rem 0;
  font-weight: 500;
  color: #202532;
  line-height: 1.35;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}

.faq-question::after {
  content: '';
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #202532;
  border-bottom: 1px solid #202532;
  transform: translateY(-68%) rotate(45deg);
  transition: transform 0.22s ease;
}

.faq-question:not(.collapsed)::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-question:hover,
.faq-question:focus {
  color: #202532;
  outline: none;
}

.faq-answer {
  padding: 0 6rem 2rem 0;
  color: #565d69;
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 900px;
}


}

@media (max-width: 991.98px) {
  .faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }

  .faq-question {
    font-size: 1.08rem;
    padding: 1.5rem 2.8rem 1.5rem 0;
  }

  .faq-answer {
    padding: 0 2.8rem 1.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .faq-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .faq-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    font-size: 1rem;
    line-height: 1.45;
    padding: 1.2rem 2.1rem 1.2rem 0;
  }

  .faq-question::after {
    width: 11px;
    height: 11px;
    right: 0;
  }

  .faq-answer {
    font-size: 0.94rem;
    line-height: 1.7;
    padding: 0 0 1.25rem 0;
  }
}

/* ===== FORM ===== */
.form-control-custom {
  border: 1px solid var(--color-border) !important;
  border-radius: 0.375rem !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem !important;
  color: var(--color-foreground) !important;
  background: var(--color-card) !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
  display: block;
  font-family: 'DM Sans', sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none !important;
  height: auto !important;
}

select.form-control-custom {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.5rem !important;
}

textarea.form-control-custom {
  resize: none;
}

.form-control-custom:focus {
  outline: none !important;
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 0 2px var(--color-accent-light) !important;
}

.form-control-custom::placeholder {
  color: #aaa !important;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 0;
  background: var(--color-bg);
}

.site-footer a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--color-foreground);
  text-decoration: none;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-foreground);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 999;
  cursor: pointer;
  padding: 0;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  opacity: 0.85;
}

.back-to-top:focus {
  outline: none;
}

/* ===== FADE IN ON SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .section-padding {
    padding: 3.5rem 0;
  }
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.5rem !important; }
  .hero-photo-block { margin-top: 2rem; }
  .stat-number { font-size: 1.75rem; }
  .brand-sub { display: none !important; }
  .limited-block { padding: 1.5rem; }
  .offer-card { padding: 1.5rem; }
}


/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(28, 37, 54, 0.08);
  z-index: 2000;
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--color-accent);
  transition: width 0.08s linear;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status.is-error {
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.15);
}


.form-control-custom.is-invalid-custom {
  border-color: #dc6a6a !important;
  background: #fff7f7 !important;
  box-shadow: 0 0 0 2px rgba(220, 106, 106, 0.12) !important;
}

.form-control-custom.is-invalid-custom:focus {
  border-color: #dc6a6a !important;
  box-shadow: 0 0 0 2px rgba(220, 106, 106, 0.16) !important;
}

.form-status.is-hiding {
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Pastel card refresh */
.offer-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.98) 100%),
    linear-gradient(135deg, rgba(232,244,255,0.85) 0%, rgba(245,238,255,0.78) 55%, rgba(255,246,232,0.72) 100%) !important;
  border: 1px solid rgba(188, 198, 214, 0.55) !important;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.035) !important;
}

.offer-card:hover {
  box-shadow: 0 16px 36px rgba(31, 41, 55, 0.06) !important;
}

.feature-card {
  background: linear-gradient(135deg, rgba(232,244,255,0.74), rgba(255,255,255,0.96)) !important;
  border: 1px solid rgba(188, 198, 214, 0.45) !important;
}

.col-lg-4:nth-of-type(3n+2) .feature-card,
.col-md-6:nth-of-type(3n+2) .feature-card {
  background: linear-gradient(135deg, rgba(244,238,255,0.76), rgba(255,255,255,0.96)) !important;
}

.col-lg-4:nth-of-type(3n) .feature-card,
.col-md-6:nth-of-type(3n) .feature-card {
  background: linear-gradient(135deg, rgba(255,243,232,0.78), rgba(255,255,255,0.96)) !important;
}

.limited-block {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.98) 100%),
    linear-gradient(135deg, rgba(238,247,255,0.85) 0%, rgba(246,241,255,0.75) 100%) !important;
  border: 1px solid rgba(188, 198, 214, 0.5) !important;
}

.hero-photo-block,
.about-photo-block {
  border: 1px solid rgba(188, 198, 214, 0.45) !important;
}



.field-error {
  display: none;
  margin-top: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #b42318;
}

.field-error.is-visible {
  display: block;
}

.form-control-custom.is-invalid-custom + .field-error {
  display: block;
}

.card-custom {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.98) 100%),
    linear-gradient(135deg, rgba(233,244,255,0.82) 0%, rgba(246,239,255,0.74) 52%, rgba(255,246,234,0.70) 100%) !important;
  border: 1px solid rgba(188, 198, 214, 0.52) !important;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.035);
}

.card-custom:hover {
  border-color: rgba(148, 163, 184, 0.55) !important;
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.05);
}

.card-icon {
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(231,241,255,0.95)) !important;
  border: 1px solid rgba(188, 198, 214, 0.45);
}

.offer-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.98) 100%),
    linear-gradient(135deg, rgba(232,244,255,0.85) 0%, rgba(245,238,255,0.78) 55%, rgba(255,246,232,0.72) 100%) !important;
  border: 1px solid rgba(188, 198, 214, 0.55) !important;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.035) !important;
}

.offer-card:hover {
  box-shadow: 0 16px 36px rgba(31, 41, 55, 0.06) !important;
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.98) 100%),
    linear-gradient(135deg, rgba(232,244,255,0.74), rgba(255,255,255,0.96)) !important;
  border: 1px solid rgba(188, 198, 214, 0.45) !important;
}



/* ===== FORCE PASTEL CARD COLORS ===== */
.card-custom {
  background: linear-gradient(135deg, #eef5ff 0%, #f7f1ff 52%, #fff6ec 100%) !important;
  border: 1px solid #d9e3f2 !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04) !important;
}

.card-custom:hover {
  background: linear-gradient(135deg, #e8f1ff 0%, #f3ebff 52%, #fff2e5 100%) !important;
  border-color: #c9d8ee !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06) !important;
}

.card-icon {
  background: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(201, 216, 238, 0.9) !important;
}

.offer-card {
  background: linear-gradient(135deg, #eef5ff 0%, #f7f1ff 52%, #fff6ec 100%) !important;
  border: 1px solid #d9e3f2 !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04) !important;
}

.offer-card:hover {
  background: linear-gradient(135deg, #e8f1ff 0%, #f3ebff 52%, #fff2e5 100%) !important;
  border-color: #c9d8ee !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06) !important;
}

