.main-banner h1 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 25px;
}

.main-banner h1 em {
    font-style: normal;
    color: #ff565b;
}

.ux-hero {
  position: relative;
  overflow: hidden;
  background-blend-mode: multiply;
}

.ux-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(255,86,91,0.26), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(198,166,104,0.18), transparent 26%),
    linear-gradient(180deg, rgba(12,12,28,0.18), rgba(12,12,28,0.66));
  pointer-events: none;
}

.ux-hero .container {
  position: relative;
  z-index: 1;
}

.hero-kicker,
.hero-actions,
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-kicker {
  gap: 10px;
  margin-bottom: 18px;
}

.hero-kicker span {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  backdrop-filter: blur(8px);
}

.hero-actions {
  gap: 14px;
  margin-bottom: 28px;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff565b, #d9353a);
  box-shadow: 0 16px 34px rgba(255,86,91,0.28);
}

.hero-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.hero-primary:hover,
.hero-secondary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}

.hero-proof {
  gap: 12px;
}

.hero-proof div {
  min-width: 145px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.hero-proof span {
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  margin-top: 6px;
}

.ux-feature-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
}

.ux-feature-section .feature-item {
  position: relative;
  height: 100%;
  border: 1px solid rgba(15,52,96,0.08);
  box-shadow: 0 12px 30px rgba(17,17,38,0.07);
}

.ux-feature-section .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(17,17,38,0.12);
}

.ux-feature-section .feature-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #1a1a2e, #ff565b);
  margin-bottom: 18px;
}

.ux-steps {
  padding: 72px 0;
  background: #111126;
  color: #fff;
}

.ux-steps h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.ux-steps p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
}

.step-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff565b;
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
}

@media (max-width: 575px) {
  .hero-actions a {
    width: 100%;
  }

  .hero-proof div {
    width: 100%;
  }

  .ux-steps h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
    .main-banner h1 {
        font-size: 30px;
    }
}

.fan-disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 15px 25px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 9999;
}

.fan-disclaimer strong {
  color: #664d03;
}

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

.content-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

@media (min-width: 576px) {
  .content-section h2 {
    font-size: 34px;
    line-height: 48px;
  }
}

.content-section h2 em {
  color: #ff565b;
  font-style: normal;
}

.content-section p {
  font-size: 15px;
  line-height: 28px;
  color: #7a7a7a;
  margin-bottom: 15px;
}

.content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.content-section ul li {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  line-height: 28px;
  color: #7a7a7a;
  position: relative;
  padding-left: 25px;
}

.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background-color: #ff565b;
  border-radius: 50%;
}

.faq-section {
  padding: 80px 0;
  position: relative;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff565b, #ff8a8d, #ff565b);
  opacity: 0.6;
}

.faq-section .section-heading {
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  background: #fff;
  border: 1px solid #eee;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-item .accordion-button {
  padding: 22px 24px;
  border: none;
  width: 100%;
  outline: none;
  text-align: left;
  font-size: 16px;
  background-color: #fff;
  color: #1a1a2e;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-item .accordion-button:hover {
  background-color: #fafafa;
}

.faq-item .accordion-button:not(.collapsed) {
  color: #ff565b;
  background-color: #fff8f8;
  border-bottom: 1px solid #eee;
}

.faq-item .accordion-button:focus {
  border: none;
  z-index: 0;
  box-shadow: none;
}

.faq-item .accordion-button::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: #ff565b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item .accordion-button:not(.collapsed)::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-item .accordion-body {
  padding: 20px 24px 24px;
  background: #fff;
}

.faq-item .accordion-body p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 28px;
  color: #666;
}

.comparison-table {
  padding: 80px 0;
  background-color: #fafafa;
}

.comparison-table .section-heading {
  margin-bottom: 40px;
}

.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.comparison-table thead th {
  background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 18px 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.comparison-table thead th:last-child {
  border-right: none;
}

.comparison-table thead th.highlight {
  background: linear-gradient(135deg, #ff565b, #e04449);
}

.comparison-table tbody td {
  padding: 16px 20px;
  font-size: 14px;
  color: #666;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  background-color: #fff;
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover td {
  background-color: #f8f8ff;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1a1a2e;
  font-size: 14px;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody td.check-yes {
  color: #28a745;
  font-weight: 700;
  font-size: 18px;
}

.comparison-table tbody td.check-no {
  color: #dc3545;
  font-weight: 700;
  font-size: 18px;
}

.comparison-table tbody td.highlight-col {
  background-color: #fff5f5;
  font-weight: 600;
}

.comparison-table tbody tr:hover td.highlight-col {
  background-color: #ffebeb;
}

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f5 100%);
  position: relative;
}

.testimonials-section .section-heading {
  margin-bottom: 50px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 35px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff565b, #ff8a8d);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 56px;
  color: #ff565b;
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 700;
}

.testimonial-card .author-info {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-info .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff565b, #ff8a8d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-card .author-info .author-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  display: block;
}

.testimonial-card .author-info .author-role {
  font-size: 13px;
  color: #7a7a7a;
  display: block;
  margin-top: 2px;
}

.testimonial-card .stars {
  margin-bottom: 15px;
}

.testimonial-card .stars span {
  color: #ff565b;
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 28px;
  color: #555;
  font-style: italic;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.article-list {
  padding: 60px 0;
}

.article-card {
  background: #fff;
  border-radius: 7.5px;
  overflow: hidden;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: all 0.5s;
}

.article-card:hover {
  box-shadow: 0px 0px 25px rgba(0,0,0,0.18);
  transform: translateY(-3px);
}

.article-card .card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.article-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card:hover .card-image img {
  transform: scale(1.05);
}

.article-card .card-content {
  padding: 25px 30px 30px;
}

.article-card .card-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.article-card .card-content h4 a {
  color: #2a2a2a;
  transition: color 0.3s;
}

.article-card .card-content h4 a:hover {
  color: #ff565b;
}

.article-card .card-content p {
  font-size: 14px;
  line-height: 24px;
  color: #7a7a7a;
  margin-bottom: 15px;
}

.article-card .card-content .read-more {
  font-size: 14px;
  color: #ff565b;
  font-weight: 500;
  transition: all 0.3s;
}

.article-card .card-content .read-more:hover {
  color: #2a2a2a;
}

.article-page {
  padding: 60px 0;
}

.article-page h1 {
  font-size: 32px;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

@media (min-width: 576px) {
  .article-page h1 {
    font-size: 38px;
  }
}

.article-page h1 em {
  color: #ff565b;
  font-style: normal;
}

.article-page h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top: 40px;
  margin-bottom: 15px;
}

.article-page h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2a2a2a;
  margin-top: 30px;
  margin-bottom: 12px;
}

.article-page p {
  font-size: 15px;
  line-height: 28px;
  color: #7a7a7a;
  margin-bottom: 18px;
}

.article-page .article-image {
  border-radius: 7.5px;
  margin: 30px 0;
  overflow: hidden;
}

.article-page .article-image img {
  border-radius: 7.5px;
  width: 100%;
}

.article-page ul, .article-page ol {
  margin: 0 0 20px 20px;
}

.article-page ul li, .article-page ol li {
  display: list-item;
  font-size: 15px;
  line-height: 28px;
  color: #7a7a7a;
  margin-bottom: 8px;
}

.article-page .article-meta {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.article-page .article-meta span {
  margin-right: 20px;
}

.legal-page {
  padding: 60px 0;
}

.legal-page h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-page h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2a2a2a;
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-page p {
  font-size: 15px;
  line-height: 28px;
  color: #7a7a7a;
  margin-bottom: 18px;
}

.legal-page ul {
  margin: 0 0 20px 20px;
}

.legal-page ul li {
  display: list-item;
  font-size: 15px;
  line-height: 28px;
  color: #7a7a7a;
  margin-bottom: 8px;
}

.contact-form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 7.5px;
  margin-top: 20px;
}

.contact-form-success.show {
  display: block;
}

.contact-form-success h3 {
  color: #28a745;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form-success p {
  color: #7a7a7a;
  font-size: 15px;
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 20px 0;
  z-index: 99999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-banner p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
  line-height: 1.6;
  flex: 1;
  min-width: 250px;
}

.cookie-banner p a {
  color: #ff565b;
  text-decoration: underline;
}

.cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .cookie-btn {
  padding: 10px 25px;
  border-radius: 7.5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.cookie-banner .cookie-accept {
  background-color: #ff565b;
  color: #ffffff;
}

.cookie-banner .cookie-accept:hover {
  background-color: #e04449;
}

.cookie-banner .cookie-decline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.cookie-banner .cookie-decline:hover {
  background-color: #ffffff;
  color: #2a2a2a;
}

.footer-legal {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal a {
  color: #7a7a7a;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #ff565b;
}

.footer-fan-notice {
  background-color: rgba(255,86,91,0.1);
  border: 1px solid rgba(255,86,91,0.3);
  border-radius: 7.5px;
  padding: 15px 20px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.footer-fan-notice p {
  color: #ff565b;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

.features-grid {
  padding: 80px 0;
  position: relative;
}

.features-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff565b, #ff8a8d, #ff565b);
  opacity: 0.6;
}

.feature-item {
  text-align: center;
  padding: 40px 25px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff565b, #ff8a8d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.feature-item:hover::after {
  transform: scaleX(1);
}

.feature-item .feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #ff565b, #ff3b3f);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 6px 20px rgba(255,86,91,0.25);
  transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(255,86,91,0.35);
}

.feature-item .feature-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.feature-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.feature-item:hover h4 {
  color: #ff565b;
}

.feature-item p {
  font-size: 14px;
  line-height: 26px;
  color: #7a7a7a;
  margin-bottom: 0;
}

.text-content-block {
  padding: 80px 0;
  position: relative;
}

.text-content-block .content-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.text-content-block .content-image:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.text-content-block .content-image img {
  width: 100%;
  display: block;
}

@media (min-width: 992px) {
  .text-content-block .content-text {
    padding-left: 50px;
  }
}

.text-content-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  position: relative;
}

@media (min-width: 576px) {
  .text-content-block h2 {
    font-size: 34px;
    line-height: 48px;
  }
}

.text-content-block h2 em {
  color: #ff565b;
  font-style: normal;
}

.text-content-block p {
  font-size: 15px;
  line-height: 28px;
  color: #7a7a7a;
  margin-bottom: 15px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ff565b, #ff3b3f);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.breadcrumb-nav {
  padding: 15px 0;
  background-color: #fafafa;
}

.breadcrumb-nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb-nav ol li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #7a7a7a;
}

.breadcrumb-nav ol li a {
  color: #7a7a7a;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-nav ol li a:hover {
  color: #ff565b;
}

.breadcrumb-nav ol li + li::before {
  content: '/';
  margin: 0 8px;
  color: #ccc;
}

.breadcrumb-nav ol li.active {
  color: #2a2a2a;
  font-weight: 500;
}
