*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --blue: #014C94;
  --blue-light: #e8f0fa;
  --blue-dark: #003366;
  --red: #CE0101;
  --yellow: #F5A623;
  --green: #00875A;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --radius: 12px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  padding: 16px 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-cta {
  display: inline-block;
  background: #004280;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.2s;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.nav-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-cta:hover {
  background: var(--blue-dark);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

/* ===== HERO ===== */
.hero {
  padding: 40px 0 0;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-tag {
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  color: rgb(64, 64, 64);
  background: var(--white);
  border: 1px solid rgba(64, 64, 64, 0.1);
  border-radius: 6px;
  padding: 2px 8px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.hero-ratings {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.hero-ratings a {
  max-width: 48%;
}

.hero-ratings img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
}

.rating-badge .stars-google {
  display: flex;
  gap: 2px;
}

.rating-badge .stars-google .star {
  width: 18px;
  height: 18px;
  background: #FBBC05;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rating-badge-tp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
}

.tp-stars {
  display: flex;
  gap: 2px;
}

.tp-star {
  width: 20px;
  height: 20px;
  background: #00B67A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
}

.rating-label {
  font-weight: 600;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  line-height: 48px;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 16px;
  color: var(--gray-700);
  margin-bottom: 24px;
  max-width: 500px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 32px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
}

.benefits-list .check {
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list strong {
  font-weight: 700;
}

.cta-btn {
  display: block;
  max-width: 420px;
  border: 1px solid #004280;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  background: var(--white);
  text-align: center;
}

.cta-btn:hover {
  background: var(--blue);
  color: var(--white);
}

.cta-btn-filled {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.cta-btn-filled:hover {
  background: var(--blue-dark);
}

.hero-known {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
  flex-wrap: wrap;
}

.hero-known .known-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
}

.hero-known .known-tag {
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  color: rgb(64, 64, 64);
  background: var(--white);
  border: 1px solid rgba(64, 64, 64, 0.1);
  border-radius: 6px;
  padding: 2px 8px;
  line-height: 1.4;
}

.hero-mail-overview {
  width: 100%;
  max-width: 43.5rem;
  height: auto;
  border-radius: 8px;
  background: var(--gray-50);
}

/* Hero Right Side */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-100 {
  position: absolute;
  top: -23px;
  right: -10px;
  width: 111px;
  height: 111px;
  background: #FFE315;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 21px 8px 20px;
  text-align: center;
}

.badge-100 .badge-top {
  font-size: 12px;
  color: rgb(64, 64, 64);
  font-weight: 400;
  line-height: 1.16;
}

.badge-100 .badge-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.badge-100 .badge-bottom {
  font-size: 12px;
  color: rgb(64, 64, 64);
  font-weight: 400;
  text-align: center;
  line-height: 1.16;
}

.notification-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  margin-top: 40px;
}

.notification-bell {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.notification-text {
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
}

.email-list {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  width: 100%;
  max-width: 440px;
}

.email-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  transition: background 0.2s;
}

.email-item:hover {
  background: var(--gray-50);
}

.email-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.email-content h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.email-content p {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===== BENEFITS BAR ===== */
.benefits-bar {
  background: #004280;
  color: var(--white);
  padding: 28px 64px;
  margin-top: 48px;
  border-radius: 8px;
}

.benefits-bar-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.benefits-bar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}

.benefits-bar-list .bar-icon {
  width: 24px;
  height: 24px;
}

/* ===== HOW IT WORKS ===== */
.section-hiw {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 48px;
}

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

.hiw-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.hiw-card-img {
  background: var(--gray-50);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.hiw-card-img .mock-email {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 16px;
  width: 100%;
  max-width: 220px;
}

.mock-email-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mock-email-avatar {
  width: 32px;
  height: 32px;
  background: var(--gray-200);
  border-radius: 50%;
}

.mock-email-from {
  font-size: 13px;
  font-weight: 600;
}

.mock-email-sub {
  font-size: 11px;
  color: var(--gray-500);
}

.mock-email-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-email-line {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
}

.mock-email-line.short {
  width: 60%;
}

.mock-forward {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--gray-50);
  border-radius: 6px;
  font-size: 12px;
  color: var(--gray-700);
  width: fit-content;
  margin-left: auto;
}

.mock-cursor {
  font-size: 24px;
  margin-left: auto;
  margin-top: 8px;
}

.hiw-image {
  max-width: 100%;
  height: auto;
}

.hiw-card-content {
  padding: 24px;
}

.hiw-card-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.hiw-card-content p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Analysis mock */
.mock-analysis {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 16px;
  width: 100%;
  max-width: 220px;
  text-align: center;
}

.mock-analysis-label {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 10px;
}

.mock-analysis .sparkle {
  font-size: 20px;
  position: absolute;
  right: -10px;
  top: 50%;
}

/* Rights mock */
.mock-rights {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 20px;
  width: 100%;
  max-width: 220px;
}

.mock-rights h5 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mock-rights-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 8px;
}

.mock-checkbox {
  width: 18px;
  height: 18px;
  background: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  flex-shrink: 0;
}

/* ===== ARTICLE SECTION ===== */
.section-article {
  padding: 60px 0;
}

.article-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.article-card h2 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 32px;
}

.article-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.article-author {
  text-align: center;
}

.article-author-img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background: var(--gray-200);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--gray-500);
  overflow: hidden;
}

.article-author h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.article-author p {
  font-size: 12px;
  color: var(--gray-500);
}

.article-text p {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.article-text ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.article-text li {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 4px;
}

/* ===== COMPARISON ===== */
.section-comparison {
  padding: 80px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
}

.comparison-card.is-positive {
  border: 2px solid var(--blue);
}

.comparison-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.comparison-card h3.text-red {
  color: var(--red);
}

.comparison-card h3.text-blue {
  color: var(--blue);
}

.comparison-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.comparison-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.comparison-item p {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
}

.comparison-note {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 16px;
  margin-top: 8px;
}

.comparison-note h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.comparison-note p {
  font-size: 13px;
  color: var(--gray-700);
}

.comparison-note .underline-bold {
  font-weight: 700;
  text-decoration: underline;
}

/* ===== TABS / OFFER ===== */
.section-offer {
  padding: 60px 0 80px;
}

.tabs-menu {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid #e6e7e8;
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
  max-width: 175px;
  margin-left: auto;
  margin-right: auto;
}

.tab-link {
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.35s;
  color: var(--gray-700);
  border: none;
  background: transparent;
  text-align: center;
}

.tab-link.active {
  background: #004280;
  color: var(--white);
  box-shadow: 0 1px 3px rgba(10, 13, 18, 0.1), 0 1px 2px -1px rgba(10, 13, 18, 0.1);
}

.tab-content {
  text-align: center;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-graphic {
  max-width: 700px;
  margin: 0 auto;
}

/* Services Graphic Mock */
.services-graphic {
  padding: 32px;
}

.services-mock-email {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 8px;
}

.services-mock-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spam-badge {
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin: 0 auto 16px;
}

.services-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  margin-bottom: 24px;
}

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.services-box {
  position: relative;
}

.services-box-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.services-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.services-box .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}

.services-box .sub {
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
}

.services-payout {
  margin-top: 24px;
}

.services-payout-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
}

.services-payout-badge .euro {
  font-weight: 800;
  color: var(--green);
}

.services-payout-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 8px;
}

.services-payout-sub {
  font-size: 13px;
  color: var(--gray-500);
}

.toggle-on {
  display: inline-block;
  width: 44px;
  height: 24px;
  background: var(--green);
  border-radius: 12px;
  position: relative;
}

.toggle-on::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 2px;
  right: 2px;
}

.green-check {
  color: var(--green);
  font-size: 32px;
  margin: 12px 0;
}

.dashed-border {
  border: 2px dashed var(--gray-300);
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
  position: relative;
}

.dashed-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.dashed-arrow {
  text-align: center;
  color: var(--gray-300);
  font-size: 24px;
  margin: 8px 0;
}

/* ===== FAQ ===== */
.section-faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gray-500);
  border-radius: 1px;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.3s;
}

.faq-item.is-active .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s;
  opacity: 0;
}

.faq-item.is-active .faq-answer {
  opacity: 1;
}

.faq-answer-content {
  padding-bottom: 20px;
}

.faq-answer-content p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blue);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-left {
    order: -1;
  }

  .hero-right {
    order: 1;
  }

  .badge-100 {
    left: auto;
    right: 10px;
    top: -10px;
    width: 90px;
    height: 90px;
  }

  .badge-100 .badge-amount {
    font-size: 24px;
  }

  .badge-100 .badge-top,
  .badge-100 .badge-bottom {
    font-size: 10px;
  }

  .cta-btn {
    max-width: 100%;
  }

  .hiw-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .article-content {
    grid-template-columns: 1fr;
  }

  .article-author {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .article-author-img {
    margin: 0;
    width: 70px;
    height: 70px;
  }

  .benefits-bar-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .tab-graphic {
    max-width: none;
    margin-left: -24px;
    margin-right: -24px;
  }

  .tab-graphic img {
    width: 100%;
  }

  .services-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .faq-question h3 {
    font-size: 14px;
  }

  .faq-question {
    padding: 16px 0;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

}
