:root {
  --bg-main: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --primary-color: #0f1c3f;
  --secondary-color: #1e293b;
  --accent-color: #ef4444;
  --accent-blue: #2563eb;
  --border-color: #e2e8f0;
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.header-wrapper {
  background-color: var(--primary-color);
  color: rgb(255, 255, 255);
  position: sticky;
  top: 0px;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px;
}

.header-top {
  max-width: 1100px;
  margin: 0px auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgb(99, 102, 241) 0%,
    rgb(59, 130, 246) 100%
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  font-family: var(--font-heading);
  box-shadow: rgba(59, 130, 246, 0.5) 0px 0px 15px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-text span {
  color: rgb(99, 102, 241);
}

.live-badge {
  background-color: var(--accent-color);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: 1.5s ease 0s infinite normal none running blink;
}

.live-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.header-bottom {
  background-color: rgb(23, 37, 84);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
  max-width: 1100px;
  margin: 0px auto;
  padding: 8px 20px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  white-space: nowrap;
  list-style: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  color: rgb(203, 213, 225);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.2s ease 0s;
}

.nav-links a:hover,
.nav-links a.active {
  color: rgb(99, 102, 241);
}

.main-container {
  max-width: 800px;
  margin: 0px auto;
  padding: 30px 20px 80px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 0px 40px;
}

.breadcrumbs {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-blue);
}

h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.author-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.meta-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
}

.publish-time {
  font-size: 12px;
  color: var(--text-secondary);
}

.lead-paragraph {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: rgb(30, 41, 59);
  margin-bottom: 20px;
  padding: 15px 20px;
  background-color: rgb(241, 245, 249);
  border-left: 4px solid var(--accent-blue);
  border-radius: 0px 8px 8px 0px;
}

p {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.7;
}

h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 35px 0px 15px;
  border-bottom: 2px solid rgb(241, 245, 249);
  padding-bottom: 8px;
}

.article-image-container {
  margin: 25px 0px;
  width: 100%;
}

.article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px;
  display: block;
}

.image-caption {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  line-height: 1.4;
}

.interview-block {
  margin: 25px 0px;
  background-color: rgb(248, 250, 252);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
}

.speaker-dialogue {
  margin-bottom: 15px;
}

.speaker-dialogue:last-child {
  margin-bottom: 0px;
}

.speaker-name {
  font-weight: 700;
  color: var(--primary-color);
}

.speaker-dialogue.antagonist .speaker-name {
  color: var(--accent-color);
}

.info-banner {
  background-color: rgb(254, 242, 242);
  border-left: 4px solid var(--accent-color);
  padding: 15px 20px;
  border-radius: 0px 8px 8px 0px;
  margin: 25px 0px;
}

.info-banner p {
  margin: 0px;
  font-size: 15px;
  color: rgb(153, 27, 27);
  font-weight: 500;
}

.urgency-box {
  background: linear-gradient(
    135deg,
    rgb(254, 243, 199) 0%,
    rgb(255, 251, 235) 100%
  );
  border: 2px solid rgb(245, 158, 11);
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0px;
  text-align: center;
  box-shadow: rgba(245, 158, 11, 0.1) 0px 4px 15px;
}

.urgency-spots {
  font-size: 32px;
  font-weight: 800;
  color: rgb(180, 83, 9);
  font-family: var(--font-heading);
}

.urgency-text {
  font-weight: 600;
  color: rgb(120, 53, 15);
  margin-top: 5px;
}

.urgency-desc {
  font-size: 13px;
  color: rgb(146, 64, 14);
  margin-top: 8px;
}

.form-container {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
  padding: 30px;
  margin: 40px 0px;
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgb(59, 130, 246),
    rgb(239, 68, 68),
    rgb(245, 158, 11)
  );
}

.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-note {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 15px;
  line-height: 1.4;
}

.inline-link {
  color: var(--accent-blue);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.inline-link:hover {
  color: rgb(29, 78, 216);
}

.steps-list {
  list-style: none;
  margin: 25px 0px;
}

.step-item {
  position: relative;
  padding: 15px 15px 15px 60px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 2px 5px;
}

.step-number {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.comments-section {
  margin-top: 50px;
  border-top: 2px solid var(--border-color);
  padding-top: 30px;
}

.comments-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
}

.comment-count {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 400;
}

.comment-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(241, 245, 249);
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(203, 213, 225);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.comment-content {
  flex: 1 1 0%;
}

.comment-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.comment-time {
  font-size: 11px;
  color: var(--text-secondary);
  margin-left: 8px;
  font-weight: 400;
}

.comment-text {
  font-size: 14.5px;
  margin-top: 5px;
  margin-bottom: 8px;
  color: rgb(51, 65, 85);
}

.comment-actions {
  display: flex;
  gap: 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.comment-actions span {
  cursor: pointer;
}

.comment-actions span:hover {
  color: var(--accent-blue);
}

.comment-proof-img {
  display: block;
  max-width: 250px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid rgb(226, 232, 240);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px;
  cursor: pointer;
  transition:
    transform 0.2s ease 0s,
    box-shadow 0.2s ease 0s;
}

.comment-proof-img:hover {
  transform: scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
}

.sticky-cta-banner {
  position: fixed;
  bottom: -100px;
  left: 0px;
  right: 0px;
  background-color: var(--primary-color);
  color: white;
  padding: 15px 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px -4px 20px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.4s ease-in-out 0s;
}

.sticky-cta-banner.show {
  bottom: 0px;
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.sticky-subtitle {
  font-size: 12px;
  color: rgb(148, 163, 184);
}

.sticky-btn {
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  transition: background-color 0.2s ease 0s;
  box-shadow: rgba(239, 68, 68, 0.2) 0px 4px 10px;
}

.sticky-btn:hover {
  background-color: rgb(220, 38, 38);
}

.footer-disclaimer {
  background-color: rgb(15, 23, 42);
  color: rgb(100, 116, 139);
  padding: 40px 20px;
  font-size: 11px;
  text-align: center;
  border-top: 1px solid rgb(30, 41, 59);
  line-height: 1.6;
}

.footer-disclaimer a {
  color: rgb(148, 163, 184);
  text-decoration: none;
}

.footer-disclaimer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }
  .main-container {
    padding: 20px 15px 80px;
  }
  .form-container {
    padding: 20px;
  }
  .sticky-cta-banner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 12px 15px;
  }
  .sticky-btn {
    width: 100%;
  }
}

.calculator-sec {
  background: rgb(255, 255, 255);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  margin: 40px 0px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 10px 30px;
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 10px;
}

.calc-intro {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}

.calc-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.calc-input-group {
  background: rgb(248, 250, 252);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
}

.calc-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-amount-display {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.calc-eur-equivalent {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.calc-slider {
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgb(203, 213, 225);
  outline: none;
  margin-bottom: 10px;
}

.calc-slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-blue);
  cursor: pointer;
  box-shadow: rgba(37, 99, 235, 0.4) 0px 0px 10px;
  transition: transform 0.1s ease 0s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.calc-result-card {
  background: rgb(255, 255, 255);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 4px 6px -1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.result-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}

.result-value.green {
  color: rgb(22, 163, 74);
}

.result-value.green-gold {
  color: rgb(4, 120, 87);
  background: linear-gradient(
      135deg,
      rgb(5, 150, 105) 0%,
      rgb(16, 185, 129) 100%
    )
    text;
  -webkit-text-fill-color: transparent;
  text-shadow: rgba(16, 185, 129, 0.1) 0px 2px 10px;
}

.calc-note {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

@media (max-width: 600px) {
  .calc-results {
    grid-template-columns: 1fr;
  }
}

input {
  outline: 0px;
  appearance: unset !important;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  margin: 0px;
  appearance: none !important;
}

input:focus {
  outline: 0px;
  box-shadow: none !important;
}

.form-container {
  box-shadow: rgba(13, 13, 13, 0.43) 0px 4px 20.9px 3.1px;
  border-radius: 10px;
  max-width: 530px;
  position: relative;
  overflow: hidden;
  margin: 30px auto;
}

.form-title {
  padding: 0px;
  margin: 0px;
  text-align: center;
  place-self: center;
  border: none;
  color: #000;
}

@media screen and (max-width: 480px) {
  .form-container {
    width: calc(100% - 40px);
    max-width: 100%;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}