* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html {
  background-color: #ffffff;
  background: #ffffff;
}

:root {
  --color-brand: #000;
  --background-color: #ffffff;

  --logo-icon_display: inline-block;
  --logo-icon_size: 48px;
  --logo-icon_border-radius: 4px;
  --logo-text_display: block;

  --s1-img_filter: none;

  --primary-color: #000;
  --brand-color: #0dc978;
  --text-color: #1D1D1D;
  --accent-color: #f7fafc;
  --gray-light: #f3f4f6;
  --gray-medium: #6b7280;
  --gray-dark: #374151;
}

@font-face {
  font-family: "Satoshi";
  src: url("../assets/fonts/Satoshi-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../assets/fonts/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../assets/fonts/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../assets/fonts/Satoshi-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../assets/fonts/Satoshi-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Tiempos";
  src: url("../assets/fonts/TiemposText-RegularItalic.otf") format("opentype");
  font-weight: 400;
}

body {
  font-family: "Satoshi", sans-serif;
  margin: 0;
  color: #000;
  font-size: 16px;
  background: #ffffff;
  background-color: #ffffff;
  
  /* iOS overscroll fix */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
}

/* Additional iOS Safari fixes */
html, body {
  min-height: 100vh;
  background-color: #ffffff !important;
  background: #ffffff !important;
}

/* Prevent blue background on iOS bounce scroll */
body::before {
  content: '';
  position: fixed;
  top: -100vh;
  left: 0;
  right: 0;
  height: 100vh;
  background: #ffffff;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  bottom: -100vh;
  left: 0;
  right: 0;
  height: 100vh;
  background: #ffffff;
  z-index: -1;
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  html {
    background-color: #ffffff !important;
    background: #ffffff !important;
  }
  
  body {
    background-color: #ffffff !important;
    background: #ffffff !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: auto;
  }
  
  /* Prevent blue background on pull-to-refresh */
  body::before,
  body::after {
    content: '';
    position: fixed;
    top: -100vh;
    left: 0;
    right: 0;
    height: 100vh;
    background: #ffffff !important;
    z-index: -1;
  }
  
  body::after {
    top: auto;
    bottom: -100vh;
  }
}

/* Additional viewport background fixes */
html {
  background-color: #ffffff !important;
  background: #ffffff !important;
}

body {
  background-color: #ffffff !important;
  background: #ffffff !important;
}

/* Comprehensive iOS Safari viewport background fix */
@supports (-webkit-touch-callout: none) {
  * {
    background-color: #ffffff !important;
  }
  
  html, body {
    background-color: #ffffff !important;
    background: #ffffff !important;
    min-height: 100vh;
    height: 100vh;
  }
  
  /* Force white background on all elements */
  div, section, article, aside, header, footer, nav, main {
    background-color: #ffffff !important;
  }
  
  /* Override any potential blue backgrounds */
  .nav, .hero, .section-hero, .campaign-hero {
    background-color: inherit !important;
  }
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h1 {
  color: #1D1D1D;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.6px;
  text-align: center;
}

p {
  margin: 0;
  line-height: 155%;
  font-size: 20px;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: var(--color-brand);
}

strong,
.strong {
  font-weight: 600;
}

video {
  object-fit: fill;
  width: 100%;
}

.body {}

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

.grid {
  display: grid;
}

.row {
  display: flex;
}

.col-6 {
  width: 50%;
}

.gap-1 {
  gap: 1rem;
}

.gap-1-5 {
  gap: 1.5rem;
}

.form-field input,
.form-field textarea {
  height: 48px;
  border: 1px solid #e4e7ec;
  border-radius: 6px;
  padding: 6px 16px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  width: 100%;
  background: #fcfdfd;
  line-height: 18px;
}

.form-field textarea {
  min-height: 144px;
  padding-top: 12px;
}

.form-field label {
  font-weight: 600;
  color: #000000;
  width: 100%;
  margin-bottom: 4px;
  display: block;
}

.card {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 12, 43, .05);
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 20px;
}

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

.nav {
  display: flex;
  justify-content: space-between;
  height: 72px;
  align-items: center;
  max-width: 1480px;
  padding: 0 16px;
  margin: auto;
}

.nav ul {
  list-style-type: none;
  display: none;
}

.nav ul li a {
  text-decoration: none;
  color: #3F3A3A;
  padding: 0 20px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}

.nav ul li a.router-link-active {
  color: var(--color-brand);
  font-weight: 600;
}

/* Navigation Badge Styling */
.nav-item-with-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-badge {
  background: #000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  line-height: 1;
  white-space: nowrap;
  font-family: "Satoshi", sans-serif;
}

/* Enhanced Floating Animation - Subtle */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
    opacity: 1;
  }
  25% {
    transform: translateY(-3px);
    opacity: 0.98;
  }
  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
  75% {
    transform: translateY(-4px);
    opacity: 0.99;
  }
}

/* Mobile responsive for badge */
@media (max-width: 768px) {
  .nav-badge {
    font-size: 10px;
    padding: 3px 6px;
  }
}

.nav-auth {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-current {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.lang-current:hover {
  color: #374151;
  background: #f3f4f6;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 1000;
  padding: 4px;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-link {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-decoration: none;
  min-width: 40px;
  text-align: center;
}

.lang-link:hover {
  color: #374151;
  background: #f3f4f6;
}

.lang-link.active {
  color: #000;
  background: #f3f4f6;
  font-weight: 600;
}

.nav .logo {
  width: 100%;
}

.nav .logo a {
  font-family: Tiempos;
  font-size: 24px;
  color: #1D1D1D;
  display: flex;
}

.nav .logo span {
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  color: #475367;
  display: block;
}

.nav .logo .text {
  display: var(--logo-text_display);
}

.nav .logo img {
  display: var(--logo-icon_display);
  height: var(--logo-icon_size);
  border-radius: var(--logo-icon_border-radius);
  transition: filter 0.3s ease;
}

.nav .logo:hover img {
  filter: grayscale(0);
}

.btn {
  height: 48px;
  background: var(--color-brand);
  color: #ffffff;
  border-radius: 41px;
  padding: 14px 32px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.21px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-s {
  height: 40px;
  padding: 10px 24px;
  font-weight: 600;
  line-height: 20px;
  font-size: 14px;
}

.btn-l {
  padding: 18px 32px;
  height: auto;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

.btn-inv {
  background: #ffffff;
  color: var(--color-brand);
}

.btn-black {
  background: #171C1A;
}

.btn-outline {
  border: 1px solid #000;
  background: transparent;
  color: #000;
}

/* Brand color button */
.btn-brand {
  background: var(--brand-color);
  color: white;
  border: 1px solid var(--brand-color);
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background: #0bb368;
  border-color: #0bb368;
  transform: translateY(-1px);
  color: white;
}

/* Button group styling for hero sections */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

.s1-hero {
  padding: 64px 0 128px 0;
  max-width: 708px;
  width: 100%;
  margin: auto;
  text-align: center;
}

.s1 h1 {
  font-size: 44px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -2.56px;
  max-width: 452px;
  margin: auto;
}

.s1 h1 span {
  color: var(--color-brand);
  font-family: Tiempos;
}

.s1 p {
  color: #667185;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin: auto;
  margin-top: 12px;
  max-width: 425px;
}

.s1 .btn {
  margin-top: 32px;
  position: relative;
}

.s1 .btn:after,
.s1 .btn:before {
  position: absolute;
  left: 0;
  width: 100%;
}

.s1 .btn:hover:before {
  transition: opacity 0.1s linear;
  opacity: 0;
}

.s1 .btn:hover:after {
  transition: opacity 0.5s linear;
  opacity: 1;
}

.s1 .img {
  margin: auto;
  margin-top: 86px;
  background: url(/assets/img/section-1.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  width: 100%;
  border-radius: 24px;
}

.avatars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatars img {
  border-radius: 999px;
  height: 48px;
  width: 48px;
  position: relative;
  /* Adjust the left value as needed to get the desired overlap */
  left: -20px;
  /* Ensures the first avatar doesn't get moved to the left */
  z-index: 1;
}

.avatars img:first-child {
  left: 0;
  z-index: 5;
  /* Ensures the first image is on top of the stack */
}

.avatars img:nth-child(2) {
  z-index: 4;
}

.avatars img:nth-child(3) {
  z-index: 3;
  left: -40px;
}

.avatars img:nth-child(4) {
  z-index: 2;
  left: -60px;
}

.s2 {
  padding: 170px 0 95px 0;
}

.s2 .badge {
  padding: 4px 12px;
  border: 1px solid #09C978;
  border-radius: 999px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: inline-block;
}

.s2 h1 {
  font-size: 40px;
  color: #1D1D1D;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: -1.6px;
  margin-top: 12px;
}

.s2 h1 span {
  font-family: Test Tiempos Text;
  font-style: italic;
}

.s2 p {
  /*color: #667185;*/
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 12px;
}

.s2 .c1 {
  max-width: 495px;
  margin-bottom: 3rem;
}

.s2 .c2 {
  max-width: 611px;
}

.s2 .c2 p {
  /*color: #1D2739;*/
  line-height: 28px;
}

.s2 .c2 .map-wrapper {
  margin-top: 24px;
  width: 100%;
}

.s3 {
  background: #FBFBF9;
  padding: 82px 0;
}

.s3 p {
  color: #1E1E1E;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: auto;
  margin-top: 23px;
  max-width: 830px;
  text-align: center;
}

.s3 h1 {
  color: #1D1D1D;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.6px;
  text-align: center;
}

.s3 h1 span {
  font-family: Test Tiempos Text;
  font-style: italic;
  font-size: 45px;
}

.s3 ul {
  margin-top: 36px;
  list-style-type: none;
  display: grid;
  gap: 32px;
}

.s3 ul li {
  text-align: center;
}

.s3 ul li h2 {
  font-weight: 500;
  line-height: 30px;
  font-size: 20px;
  color: #101828;
  margin-top: 20px;
}

.s3 ul li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: auto;
  margin-top: 8px;
  max-width: 405px;
}

.s3 ul li img {
  height: 48px;
  width: 48px;
}

.s4 {
  padding: 95px 24px 114px 24px;
}

.s4 h1 {
  color: #1D1D1D;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.6px;
  max-width: 760px;
  margin: auto;
}

.s4 h1 span {
  font-family: Test Tiempos Text;
  font-style: italic;
  font-size: 45px;
}

.s4>p {
  color: #667185;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  max-width: 760px;
  margin: auto;
  margin-top: 15px;
}

.s4 .project-list {
  max-width: 1186px;
}

.prog-bar {
  background: rgba(175, 175, 175, 0.50);
  height: 4px;
  display: inline-block;
  border-radius: 999px;
  width: 100%;
  position: relative;
}

.prog-bar .inner {
  display: inline-block;
  height: 4px;
  border-radius: 999px;
  background: #054228;
  position: absolute;
  left: 0;
  top: 0;
}

.s4 ul li .prog-bar {
  margin-top: 24px;
}

.s4 ul li h3 {
  margin-top: 10px;
  font-weight: 400;
  color: #1E1E1E;
}

.s4 ul li .btn {
  width: 100%;
  max-width: 181px;
  margin-top: 45px;
}

.s4 ul li img {
  width: 100%;
}

.s5 {
  background: var(--color-brand);
  padding: 83px 0 71px;
}

.s5 h1 {
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: -0.8px;
  color: #ffffff;
  max-width: 1137px;
}

.s5 h1 span {
  font-family: Test Tiempos Text;
  font-style: italic;
}

.s5 .btn {
  margin-top: 57px;
}

.s6 {
  padding: 169px 0 183px;
}

.s6>h1 {
  color: #1D1D1D;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.6px;
}

.s6 h1 span {
  font-family: Test Tiempos Text;
}

.s6>p {
  color: #1E1E1E;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: auto;
  margin-top: 23px;
  max-width: 830px;
  text-align: center;
}

.blog-list {
  margin: auto;
  margin-top: 53px;
  list-style-type: none;
  max-width: 1215px;
  gap: 32px;
  display: grid;
}

.blog-list li {
  max-width: 384px;
  margin: auto;
  height: 100%;
}

.blog-list li .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.blog-list li .preview-img {
  width: 100%;
  height: 273px;
  position: relative;
}

.blog-list li .preview-img .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  padding: 16px;
}

.blog-list li .preview-img .overlay h2 {
  background: #fbfbf9;
  padding: 8px;
  font-weight: bold;
  color: #0dc978;
  border-radius: 4px;
}

.blog-list li img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 273px;
}

.blog-list li .badge {
  padding: 6px 15px;
  background: #F5FFF5;
  border-radius: 999px;
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  display: inline-block;
}

.blog-list li h5 {
  color: #8C8C8C;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.blog-list li h2 {
  color: #1E1E1E;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.48px;
  margin-top: 8px;
}

.blog-list li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 7px;
  /*  height: 238px;*/
  overflow: hidden;
}

.blog-list li .text {
  position: relative;
}

.pricing-section {
  padding: 128px 0;
}

.pricing-prices {
  display: flex;
  justify-content: center;
}

.pricing-price {
  background: #fbfbf9;
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 320px;
  border-radius: .5rem;
}

.pricing-price-price {
  font-size: 36px;
  font-weight: 600;
}

.pricing-price .btn {
  width: 100%;
  margin-top: 1rem;
}

.pricing-price-category {
  color: #0dc978;
}

.pricing-price-features {
  font-size: 16px;
}

/*.blog-list li .read-more {
  text-align: center;
  width: 100%;
  color: var(--color-brand);
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgb(255 255 255 / 43%));
  height: 64px;
  bottom: 0;
  position: absolute;
  padding: 37px 0 0;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
}*/

.blog-list li .btn {
  margin-top: 32px;
}

.s7 {
  background: #FBFBF9;
  padding: 82px 0;
}

.s7 h1 {
  color: #1D1D1D;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.6px;
  max-width: 474px;
  margin: auto;
}

.s7 .row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.faq a {
  color: var(--color-brand);
}

.donate {
  margin: auto;
  list-style-type: none;
  max-width: 1215px;
  gap: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.donate li {
  border: 1px solid #E4E7EC;
  border-radius: 6px;
  text-align: center;
  padding: 9px 0;
}

.donate li:hover,
.donate li.selected {
  background: #F0FFF9;
  border: 1px solid var(--color-brand);
  cursor: pointer;
}

.donate li h3 {
  font-size: 12px;
  font-weight: 400;
  line-height: 17.4px;
  color: #000000;
}

.donate li h4 {
  font-weight: 600;
  line-height: 20px;
  color: #000000;
}

.donate-title {
  font-weight: 600;
  color: #000000;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.section-hero {
  padding: 100px 0 0 0;
  text-align: center;
  animation: fadeIn 0.3s ease-in;
  position: relative;
  overflow: hidden;
}

/* Floating Testimonial Bubbles - Chat Bubble Style */
.testimonial-bubble {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  max-width: 220px;
  z-index: 10;
  animation: float 12s ease-in-out infinite;
}

/* Enhanced Floating Animation - Very Subtle */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-0.5px);
  }
}

.testimonial-bubble .bubble-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-bubble .user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-bubble .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f3f4f6;
  flex-shrink: 0;
  filter: grayscale(1);
}

.testimonial-bubble .user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.testimonial-bubble .user-name {
  font-weight: 600;
  font-size: 12px;
  color: #1f2937;
  font-family: "Satoshi", sans-serif;
  line-height: 1.2;
}

.testimonial-bubble .rating {
  display: flex;
  align-items: center;
}

.testimonial-bubble .rating .stars {
  font-size: 10px;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(251, 191, 36, 0.3));
}

.testimonial-bubble .testimonial-text {
  font-size: 11px;
  line-height: 1.4;
  color: #374151;
  margin: 0;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* Bubble Positioning - Absolute */
.bubble-1 {
  top: 420px;
  right: 15%;
  animation-delay: 0s;
}

.bubble-2 {
  top: 480px;
  right: 35%;
  animation-delay: 2s;
}

.bubble-3 {
  top: 440px;
  left: 15%;
  animation-delay: 4s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-bubble {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .testimonial-bubble {
    max-width: 250px;
    padding: 16px;
  }
  
  .bubble-1 {
    right: 4%;
    top: 120px;
  }
  
  .bubble-2 {
    right: 10%;
    top: 280px;
  }
  
  .bubble-3 {
    left: 4%;
    top: 180px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.section-hero .hero {
  width: 100%;
  max-width: 1357px;
  padding: 0 8px;
  margin: auto;
  margin-top: 93px;
}

.section-hero .hero img {
  width: 100%;
}

.section-hero h1 {
  line-height: 117.2%;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1%;
}

.section-hero .container {
  max-width: 1200px;
}

.section-hero p {
line-height: 1.5;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.2px;
    margin-top: 24px;
    color: #6b7280;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-hero .btn {
  margin-top: 32px;
  width: auto;
  min-width: 240px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 600;
  height: auto;
}

.section-features {
  padding: 256px 0 128px;
}

.section-features .headline {
  margin-bottom: 38px;
}

.section-features .headline-s {
  margin-bottom: 21px;
}

.section-features .feature-items {
  display: grid;
  gap: 72px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}

.section-features .feature-item {
  max-width: 310px;
}

.section-features .feature-item .icon {
  height: 62px;
  width: 62px;
  background: #F5F5F5;
  border-radius: 12px;
  margin-bottom: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-plans {
  padding: 128px 0px;
}

.section-plans > .headline {
  text-align: center;
  margin-bottom: 48px;
}

.section-plans .plan {
  padding: 32px 24px;
  background: #0dc979;
  border-radius: 24px;
  width: 100%;
  max-width: 320px;
  margin: auto;
}

.section-plans .plan .headline {
  font-size: 48px;
  text-align: center;
}

.plan-description {
  text-align: center;
  font-weight: 600;
}

.plan-benefits {
  margin-top: 48px;
}

.plan-benefits ul {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.plan-benefits ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.plan-price {
  font-size: 48px;
  font-weight: 600;
  margin-top: 32px;
}

.plan-price span {
  font-size: 16px;
  color: #3F3A3A;
}

.plan .btn {
  width: 100%;
  margin-top: 32px;
}

.section-faq {
  padding: 128px 0;
}

.section-faq > .container > .headline {
  margin-bottom: 32px;
}

.faq-items {
  display: flex;
  flex-flow: column;
  gap: 32px;
}

.faq-item {
  border-radius: 12px;
  border: 2px solid #F5F5F5;
  padding: 17px 32px;
  cursor: pointer;
}

.faq-item .headline {
  font-size: 24px;
  margin-bottom: 18px;
}

.headline {
  font-size: 32px;
  line-height: 117.2%;
  letter-spacing: -1%;
  font-weight: 600;
  margin: none;
}

.headline-s {
  font-size: 24px;
  line-height: 117.2%;
  letter-spacing: -1%;
  font-weight: 600;
  margin: none;
}

.footer {
  background: #151918;
  padding: 88px 0 84px;
  color: #ffffff;
  margin-top: 128px;
}

.footer .col-2 {
  display: flex;
  gap: 32px;
  margin-top: 66px;
}

.footer .links li {
  margin-bottom: 8px;
}

.footer .links a {
  color: #ffffff;
}

.footer .links strong {
  font-size: 15px;
  color: var(--color-brand);
}

.footer .container {
  max-width: 1200px;
  padding: 0 20px;
}

.flex {
  display: flex;
}

.gap-12 {
  gap: 3rem;
}

.justify-between {
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav ul {
    display: flex;
  }

  .nav-auth {
    max-width: 310px;
  }

  .nav .logo {
    width: 310px;
  }

  .s1 h1 {
    font-size: 64px;
    line-height: 80px;
    max-width: none;
  }

  .s1 p {
    max-width: none;
  }

  .s2 .c2 img {
    width: auto;
  }

  .s2 h1 {
    line-height: 56px;
  }

  .s3 ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .s5 h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .blog-list {
    margin-top: 53px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }

  .footer .container {
    justify-content: space-between;
  }

  .footer .col-2 {
    margin-top: 0;
  }
}

/* Navigation responsive styles for tablet/smaller desktop */
@media (min-width: 768px) and (max-width: 1024px) {
  .navigation {
    position: relative;
  }
  
  .nav {
    flex-wrap: wrap;
    height: auto;
    min-height: 72px;
    padding: 16px;
    justify-content: space-between;
  }
  
  .nav .logo {
    width: auto;
    flex-shrink: 0;
  }
  
  .nav-auth {
    max-width: none;
    flex-shrink: 0;
    width: auto;
  }
  
  .nav ul {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .nav ul li {
    margin: 0;
  }
  
  .nav ul li a {
    padding: 8px 16px;
    font-size: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #4b5563;
    transition: all 0.2s ease;
  }
  
  .nav ul li a:hover {
    background: #e5e7eb;
    color: #111827;
  }
  
  .nav ul li a.router-link-active {
    background: var(--color-brand);
    color: white;
  }
  
  .nav-item-with-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .nav-badge {
    font-size: 10px;
    padding: 2px 6px;
  }
}

@media (min-width: 1216px) {
  .s2 {
    padding: 170px 0 95px 0;
    display: flex;
    justify-content: space-between;
  }

  .s3 ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .s4 {
    padding: 95px 0 114px;
  }

  .blog-list {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }

  .s7 h1 {
    max-width: none;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 12px;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#content {
    padding: 80px 0;
}

#content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

#content h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

#content h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 48px 0 24px;
}

#content h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    margin: 32px 0 16px;
}

#content h4 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    margin: 24px 0 16px;
}

#content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #333;
}

#content strong {
    font-weight: 600;
    color: #000;
}

#content em {
    font-style: italic;
}

#content ul, 
#content ol {
    margin: 0 0 24px 24px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

#content ul li, 
#content ol li {
    margin-bottom: 12px;
}

#content ul {
    list-style-type: disc;
}

#content ol {
    list-style-type: decimal;
}

#content ul li p,
#content ol li p {
    margin-bottom: 8px;
}

#content ul li p:last-child,
#content ol li p:last-child {
    margin-bottom: 0;
}

#content hr {
    border: none;
    border-top: 1px solid #E5E5E5;
    margin: 48px 0;
}

@media (max-width: 768px) {
    #content {
        padding: 48px 0;
    }

    #content h1 {
        font-size: 36px;
        margin-bottom: 24px;
    }

    #content h2 {
        font-size: 28px;
        margin: 36px 0 20px;
    }

    #content h3 {
        font-size: 22px;
        margin: 28px 0 16px;
    }

    #content h4 {
        font-size: 18px;
        margin: 20px 0 12px;
    }

    #content p,
    #content ul,
    #content ol {
        font-size: 16px;
    }

    /* Navigation Button Mobile */
    .nav-auth .btn {
        height: 36px;
        padding: 8px 16px;
        font-size: 14px;
        min-width: auto;
        white-space: nowrap;
    }

    /* Hero Section Mobile Optimization */
    .section-hero {
        text-align: center;
    }

    .section-hero .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .section-hero h1 {
        line-height: 1.2;
        font-size: 32px;
        font-weight: 600;
        letter-spacing: -0.5%;
        margin-bottom: 16px;
    }

    .section-hero p {
        line-height: 1.5;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: -0.1px;
        margin-top: 16px;
        color: #6b7280;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }

    .section-hero .btn {
        margin-top: 32px;
        width: auto;
        min-width: 200px;
        font-size: 16px;
    }

    .section-hero .hero {
        margin-top: 40px;
        padding: 0 20px;
    }

    .section-hero .hero img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    /* Hide testimonial bubbles on mobile for cleaner layout */
    .testimonial-bubble {
        display: none !important;
    }

    /* Video wrapper mobile optimization */
    .video-wrapper {
        border-radius: 8px;
        margin: 0 auto;
    }
}

/* Tablet responsive styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-hero {
        padding: 80px 0 100px 0;
    }

    .section-hero .container {
        max-width: 90%;
        padding: 0 40px;
    }

    .section-hero h1 {
        font-size: 44px;
        line-height: 1.15;
    }

    .section-hero p {
        font-size: 18px;
        max-width: 600px;
    }

    .section-hero .hero {
        margin-top: 60px;
        padding: 0 20px;
    }
}

/* Skeleton Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton-loader {
    min-height: calc(100vh - 80px); /* Full height minus nav */
    background: linear-gradient(90deg, 
        #f0f0f0 25%, 
        #f8f8f8 50%, 
        #f0f0f0 75%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
    max-width: 800px;
    margin: 80px auto 0;
    border-radius: 12px;
    padding: 0 20px;
}

/* Trustpilot Rating */
.trustpilot-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-family: "Satoshi", sans-serif;
}

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

.trustpilot-stars .star {
  color: #00b67a;
  font-size: 20px;
  line-height: 1;
}

.rating-text {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.trustpilot-logo {
  color: #00b67a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .trustpilot-rating {
    margin-bottom: 24px;
  }
  
  .trustpilot-stars .star {
    font-size: 18px;
  }
  
  .rating-text {
    font-size: 13px;
  }
}

/* Locations Section */
.section-locations {
  background: #ffffff;
  padding: 120px 0;
  border-top: 1px solid #e5e7eb;
}

.locations-header {
  text-align: center;
  margin-bottom: 64px;
}

.locations-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: "Satoshi", sans-serif;
  letter-spacing: -1.6px;
}

.locations-header p {
  font-size: 20px;
  line-height: 1.5;
  color: #6b7280;
  font-family: "Satoshi", sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  position: relative;
}

.location-card.active {
  border-color: #e5e7eb;
  background: #ffffff;
}

.location-status {
  position: absolute;
  top: 16px;
  right: 16px;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.live {
  background: #059669;
  color: #ffffff;
}

.status-badge.planned {
  background: #3b82f6;
  color: #ffffff;
}

.status-badge.partnership {
  background: #7c3aed;
  color: #ffffff;
}

.location-info {
  margin-bottom: 16px;
}

.location-name {
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 2px;
  font-family: "Satoshi", sans-serif;
}

.location-country {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
}

.location-description {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
  font-family: "Satoshi", sans-serif;
  margin: 0;
}

.location-details {
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

.location-type {
  font-size: 10px;
  color: #374151;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-locations {
    padding: 80px 0;
  }
  
  .locations-header {
    margin-bottom: 48px;
    padding: 0 24px;
  }
  
  .locations-header h2 {
    font-size: 32px;
  }
  
  .locations-header p {
    font-size: 18px;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 24px;
  }
  
  .location-card {
    padding: 24px;
  }
  
  .location-name {
    font-size: 20px;
  }
}

/* How It Works Section */
.section-how-it-works {
  background: #ffffff;
  padding: 120px 0;
  border-top: 1px solid #e5e7eb;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-it-works-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: "Satoshi", sans-serif;
  letter-spacing: -1.6px;
}

.how-it-works-header p {
  font-size: 20px;
  line-height: 1.5;
  color: #6b7280;
  font-family: "Satoshi", sans-serif;
  max-width: 700px;
  margin: 0 auto;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: "Satoshi", sans-serif;
  margin: 0 auto 16px auto;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 8px;
  font-family: "Satoshi", sans-serif;
}

.step-description {
  font-size: 13px;
  line-height: 1.4;
  color: #6b7280;
  margin-bottom: 16px;
  font-family: "Satoshi", sans-serif;
}

.step-outcome {
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  font-family: "Satoshi", sans-serif;
  padding: 6px 12px;
  background: #f0fdf4;
  border-radius: 16px;
  display: inline-block;
}

.step-outcome.final-outcome {
  background: #eff6ff;
  color: #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section-how-it-works {
    padding: 80px 0;
  }
  
  .how-it-works-header {
    margin-bottom: 48px;
    padding: 0 24px;
  }
  
  .how-it-works-header h2 {
    font-size: 32px;
  }
  
  .how-it-works-header p {
    font-size: 18px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 24px;
  }
  
  .step-item {
    padding: 20px;
  }
}

/* Comparison Section */
.section-comparison {
  background: #f8fafc;
  padding: 120px 0;
  border-top: 1px solid #e5e7eb;
}

.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: "Satoshi", sans-serif;
  letter-spacing: -1.6px;
}

.comparison-header p {
  font-size: 20px;
  line-height: 1.5;
  color: #6b7280;
  font-family: "Satoshi", sans-serif;
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #f1f5f9;
}

.comparison-row:last-child {
  border-bottom: none;
}

.header-row {
  background: #1D1D1D;
  color: #ffffff;
}

.header-row > div {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  font-family: "Satoshi", sans-serif;
  text-align: center;
}

.comparison-feature,
.comparison-us,
.comparison-others {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comparison-feature {
  background: #ffffff;
  border-right: 1px solid #f1f5f9;
}

.comparison-us {
  background: #fafafa;
  border-right: 1px solid #f1f5f9;
  text-align: center;
}

.comparison-others {
  background: #fafafa;
  text-align: center;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #1D1D1D;
  font-family: "Satoshi", sans-serif;
  margin-bottom: 2px;
}

.feature-subtitle {
  font-size: 13px;
  color: #6b7280;
  font-family: "Satoshi", sans-serif;
}

.value-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1D1D1D;
  font-family: "Satoshi", sans-serif;
}

.value-negative {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1D1D1D;
  font-family: "Satoshi", sans-serif;
}

.value-description {
  font-size: 12px;
  color: #6b7280;
  font-family: "Satoshi", sans-serif;
  margin-top: 4px;
}

/* Icons */
.check-icon {
  width: 20px;
  height: 20px;
  background: #059669;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon::after {
  content: "✓";
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

.x-icon {
  width: 20px;
  height: 20px;
  background: #dc2626;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.x-icon::after {
  content: "✕";
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

/* Comparison Mobile Responsive */
@media (max-width: 768px) {
  .section-comparison {
    padding: 80px 0;
  }
  
  .comparison-header {
    margin-bottom: 32px;
    padding: 0 24px;
  }
  
  .comparison-header h2 {
    font-size: 32px;
  }
  
  .comparison-header p {
    font-size: 18px;
  }
  
  .comparison-table {
    margin: 0 16px;
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .header-row {
    display: none;
  }
  
  .comparison-feature,
  .comparison-us,
  .comparison-others {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
    text-align: left;
  }
  
  .comparison-us::before {
    content: "Unser Professional Desk";
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
  }
  
  .comparison-others::before {
    content: "Andere Prop Firms";
    font-size: 12px;
    font-weight: 600;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
  }
}

/* Map Section */
.section-map {
  width: 100%;
  height: 500px;
  position: relative;
}

.map-container {
  width: 100%;
  height: 100%;
  border: none;
}

/* Location Cards Overlay */
.location-cards-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 220px;
}

.location-card-mini {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.location-card-mini:hover {
  border-color: #9ca3af;
}

.location-card-mini.active {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.location-status-mini {
  position: absolute;
  top: 8px;
  right: 8px;
}

.status-badge-mini {
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge-mini.live {
  background: #059669;
  color: #ffffff;
}

.status-badge-mini.planned {
  background: #3b82f6;
  color: #ffffff;
}

.status-badge-mini.partnership {
  background: #7c3aed;
  color: #ffffff;
}

.location-info-mini {
  padding-right: 40px;
}

.location-name-mini {
  font-size: 13px;
  font-weight: 600;
  color: #1D1D1D;
  margin: 0 0 2px 0;
  font-family: "Satoshi", sans-serif;
  line-height: 1.2;
}

.location-country-mini {
  font-size: 11px;
  color: #6b7280;
  margin: 0 0 4px 0;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
}

.location-description-mini {
  font-size: 10px;
  color: #6b7280;
  line-height: 1.3;
  font-family: "Satoshi", sans-serif;
  margin: 0;
}

/* Mobile Responsive for Map */
@media (max-width: 768px) {
  .section-map {
    height: 400px;
  }
  
  .location-cards-overlay {
    top: 16px;
    left: 16px;
    max-width: 180px;
  }
  
  .location-card-mini {
    padding: 10px;
  }
  
  .location-name-mini {
    font-size: 12px;
  }
  
  .location-country-mini {
    font-size: 10px;
  }
  
  .location-description-mini {
    font-size: 9px;
  }
}

/* Programme Section Styling */
.section-programmes {
  padding: 120px 0;
  background: #ffffff;
}

.programmes-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.programmes-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 16px;
  font-family: "Satoshi", sans-serif;
}

.programmes-header p {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
  font-family: "Satoshi", sans-serif;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Tablet - show 2 items per row */
@media (min-width: 768px) and (max-width: 1023px) {
    .programmes-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 32px;
    }
    
    .programme-card {
        max-width: 400px;
        width: 100%;
    }
}

/* Desktop - show 3 items per row */
@media (min-width: 1024px) {
    .programmes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.programme-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.programme-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.programme-card.featured {
  border-color: #3b82f6;
  transform: scale(1.02);
}

.programme-card.featured:hover {
  border-color: #2563eb;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.12);
}

.programme-card.focused {
  border-color: #0dc978;
  box-shadow: 0 8px 25px rgba(13, 201, 120, 0.15);
  transform: scale(1.02);
}

.programme-card.focused.featured {
  border-color: #0dc978;
  box-shadow: 0 8px 25px rgba(13, 201, 120, 0.15);
  transform: scale(1.02);
}

.programme-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: #3b82f6;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.programme-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.programme-title {
  font-size: 20px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 8px;
  font-family: "Satoshi", sans-serif;
}

.programme-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.programme-price .price {
  font-size: 28px;
  font-weight: 700;
  color: #1D1D1D;
  font-family: "Satoshi", sans-serif;
}

.programme-price .price-note {
  font-size: 12px;
  color: #6b7280;
  font-family: "Satoshi", sans-serif;
}

.programme-features {
  margin-bottom: 24px;
}

.feature-highlight {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.feature-highlight .feature-title {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  font-family: "Satoshi", sans-serif;
}

.feature-highlight .feature-value {
  font-size: 20px;
  font-weight: 700;
  color: #1D1D1D;
  font-family: "Satoshi", sans-serif;
}

.programme-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 13px;
  color: #6b7280;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
}

.detail-value {
  font-size: 13px;
  font-weight: 600;
  color: #1D1D1D;
  font-family: "Satoshi", sans-serif;
}

.programme-benefits {
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.programme-benefits h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 12px;
  font-family: "Satoshi", sans-serif;
}

.programme-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.programme-benefits li {
  font-size: 12px;
  color: #374151;
  font-family: "Satoshi", sans-serif;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.programme-btn {
  width: 100%;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.programme-btn:hover {
  background: #1f2937;
  transform: translateY(-1px);
}

.programme-btn-outline {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

.programme-btn-outline:hover {
  background: #000000;
  color: #ffffff;
}

/* Navigation arrows */
.programmes-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.programmes-nav-btn:hover {
  background: #f8fafc;
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.programmes-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.programmes-nav-btn.prev {
  left: 0;
}

.programmes-nav-btn.next {
  right: 0;
}

.programmes-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: #6b7280;
}

.programmes-nav-btn:hover svg {
  fill: #374151;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-programmes {
    padding: 80px 0;
  }
  
  .programmes-header {
    margin-bottom: 48px;
    padding: 0 24px;
  }
  
  .programmes-header h2 {
    font-size: 32px;
  }
  
  .programmes-header p {
    font-size: 18px;
  }
  
  .programmes-grid {
    padding: 0 24px;
  }
  
  .programme-card {
    padding: 20px;
  }
  
  .programme-card.featured {
    transform: none;
  }
  
  .feature-highlight {
    padding: 14px;
  }
  
  .programme-price .price {
    font-size: 24px;
  }
  
  .programme-title {
    font-size: 18px;
  }
}

/* Small mobile - stack vertically and hide arrows */
@media (max-width: 425px) {
  .programmes-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: auto;
  }
  
  .programme-card {
    min-width: auto;
    width: 100%;
  }
  
  /* Hide navigation arrows on small mobile */
  .programmes-nav-btn {
    display: none;
  }
}

/* Comprehensive Bank-Style Footer */
.comprehensive-footer {
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Satoshi", sans-serif;
  margin-top: 0;
}

/* Main Footer Section */
.footer-main {
  padding: 80px 0 60px;
  background: #1a1a1a;
  border-bottom: 1px solid #333333;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  font-family: "Satoshi", sans-serif;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  line-height: 1.4;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
  display: block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links .coming-soon {
  color: #888888;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  display: block;
  padding: 2px 0;
  cursor: default;
}

/* Secondary Footer Section */
.footer-secondary {
  padding: 60px 0;
  background: #262626;
  border-bottom: 1px solid #404040;
}

.footer-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-secondary h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  font-family: "Satoshi", sans-serif;
}

/* Contact Information */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
}

.contact-item strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* Regulatory Information */
.regulatory-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.regulatory-item {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
}

.regulatory-item strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.regulatory-links {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #404040;
}

.regulatory-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 8px;
}

.regulatory-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.social-link {
  background: #404040;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.social-link:hover {
  background: #555555;
  transform: translateY(-2px);
}

/* Newsletter Signup */
.newsletter-signup h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: "Satoshi", sans-serif;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.newsletter-input {
  background: #404040;
  border: 1px solid #555555;
  border-radius: 6px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Satoshi", sans-serif;
  width: 100%;
}

.newsletter-input::placeholder {
  color: #999999;
}

.newsletter-input:focus {
  outline: none;
  border-color: #666666;
  background: #4a4a4a;
}

.newsletter-btn {
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

/* Bottom Footer */
.footer-bottom {
  padding: 40px 0;
  background: #111111;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
}

.footer-copyright {
  flex: 1;
}

.footer-copyright p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-copyright .disclaimer {
  font-size: 12px;
  color: #999999;
  line-height: 1.6;
  max-width: 800px;
}

/* Certifications */
.footer-certifications {
  display: flex;
  gap: 24px;
  align-items: center;
}

.cert-item {
  background: #262626;
  border: 1px solid #404040;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #cccccc;
  white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .footer-secondary-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-certifications {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
  }
  
  .footer-secondary {
    padding: 40px 0;
  }
  
  .footer-secondary-grid {
    padding: 0 24px;
    gap: 32px;
  }
  
  .footer-bottom {
    padding: 32px 0;
  }
  
  .footer-bottom-content {
    padding: 0 24px;
  }
  
  .newsletter-form {
    gap: 8px;
  }
  
  .footer-certifications {
    gap: 12px;
  }
  
  .cert-item {
    font-size: 11px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-heading {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .footer-links {
    gap: 10px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
}

/* Free Evaluation Section */
.section-free-evaluation {
  padding: 120px 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.free-eval-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.free-eval-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 16px;
  font-family: "Satoshi", sans-serif;
}

.free-eval-header p {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
  font-family: "Satoshi", sans-serif;
}

.free-eval-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.free-eval-main {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.free-eval-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: #059669;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.free-eval-offer {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.offer-title {
  font-size: 24px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 12px;
  font-family: "Satoshi", sans-serif;
}

.offer-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.value-amount {
  font-size: 48px;
  font-weight: 900;
  color: #059669;
  font-family: "Satoshi", sans-serif;
}

.value-note {
  font-size: 14px;
  color: #6b7280;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
}

.free-eval-features {
  margin-bottom: 32px;
}

.free-eval-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.free-eval-benefits {
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.free-eval-benefits h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 16px;
  font-family: "Satoshi", sans-serif;
}

.free-eval-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.free-eval-benefits li {
  font-size: 14px;
  color: #374151;
  font-family: "Satoshi", sans-serif;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.free-eval-btn {
  width: 100%;
  background: #059669;
  color: #ffffff;
  border: 2px solid #059669;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.free-eval-btn:hover {
  background: #047857;
  border-color: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

/* Requirements Section */
.free-eval-requirements {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
}

.free-eval-requirements h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 24px;
  font-family: "Satoshi", sans-serif;
  text-align: center;
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.requirement-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  border-radius: 10px;
}

.requirement-content h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1D1D1D;
  margin: 0 0 4px 0;
  font-family: "Satoshi", sans-serif;
}

.requirement-content p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
  font-family: "Satoshi", sans-serif;
}

.success-rate {
  text-align: center;
  padding: 24px;
  background: #f0fdf4;
  border: 1px solid #22c55e;
  border-radius: 12px;
}

.success-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: #059669;
  font-family: "Satoshi", sans-serif;
}

.stat-label {
  font-size: 12px;
  color: #059669;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.success-note {
  font-size: 12px;
  color: #374151;
  margin: 0;
  line-height: 1.4;
  font-family: "Satoshi", sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-free-evaluation {
    padding: 80px 0;
  }
  
  .free-eval-header {
    margin-bottom: 48px;
    padding: 0 24px;
  }
  
  .free-eval-header h2 {
    font-size: 32px;
  }
  
  .free-eval-header p {
    font-size: 18px;
  }
  
  .free-eval-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 0 24px;
  }
  
  .free-eval-main,
  .free-eval-requirements {
    padding: 24px;
  }
  
  .offer-title {
    font-size: 20px;
  }
  
  .value-amount {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 24px;
  }
}

/* Free Evaluation Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
}

.modal-container {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0 24px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 24px;
}

.modal-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1D1D1D;
  margin: 0;
  font-family: "Satoshi", sans-serif;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.modal-content {
  padding: 0 24px 24px 24px;
}

.modal-intro {
  text-align: center;
  margin-bottom: 32px;
}

.modal-intro p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.5;
  font-family: "Satoshi", sans-serif;
  margin: 0;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  margin-bottom: 36px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d1d5db;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
}

.timeline-step.final {
  margin-bottom: 0;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Satoshi", sans-serif;
  margin-right: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: #6b7280;
}

.step-icon.free {
  background: #6b7280;
}

.step-icon.funded {
  background: #6b7280;
}

.step-icon.live {
  background: #6b7280;
}

.step-icon.professional {
  background: #6b7280;
}

.step-content {
  flex: 1;
  padding-top: 6px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1D;
  margin: 0 0 6px 0;
  font-family: "Satoshi", sans-serif;
}

.step-content p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  margin: 0 0 10px 0;
  font-family: "Satoshi", sans-serif;
}

.step-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.detail-tag {
  background: #f8fafc;
  color: #374151;
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 500;
  font-family: "Satoshi", sans-serif;
  border: 1px solid #e5e7eb;
}

.detail-tag.simulated {
  background: #f8fafc;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.detail-tag.payout {
  background: #f8fafc;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.detail-tag.live-tag {
  background: #f8fafc;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.detail-tag.salary {
  background: #f8fafc;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.detail-tag.location {
  background: #f8fafc;
  color: #374151;
  border: 1px solid #e5e7eb;
}

/* Failure Section */
.failure-section {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.failure-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1D;
  margin: 0 0 20px 0;
  font-family: "Satoshi", sans-serif;
  text-align: center;
}

.failure-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.failure-option {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.failure-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 50%;
  color: #6b7280;
}

.failure-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1D1D1D;
  margin: 0 0 6px 0;
  font-family: "Satoshi", sans-serif;
}

.failure-content p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  margin: 0 0 10px 0;
  font-family: "Satoshi", sans-serif;
}

.failure-link {
  color: #374151;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
}

.failure-link:hover {
  text-decoration: underline;
}

/* Modal Footer */
.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 24px 24px;
  border-top: 1px solid #f1f5f9;
  gap: 14px;
}

.modal-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 100px;
}

.modal-btn.secondary {
  background: #f3f4f6;
  color: #374151;
}

.modal-btn.secondary:hover {
  background: #e5e7eb;
}

.modal-btn.primary {
  background: #374151;
  color: #ffffff;
}

.modal-btn.primary:hover {
  background: #1f2937;
  transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 16px;
  }
  
  .modal-container {
    max-height: 95vh;
    max-width: 100%;
  }
  
  .modal-header {
    padding: 20px 20px 0 20px;
    margin-bottom: 20px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
  
  .modal-content {
    padding: 0 20px 20px 20px;
  }
  
  .modal-intro p {
    font-size: 15px;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
    margin-right: 16px;
  }
  
  .step-content h3 {
    font-size: 16px;
  }
  
  .failure-section {
    padding: 20px;
  }
  
  .failure-options {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .failure-option {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .modal-footer {
    flex-direction: column;
    padding: 16px 20px 20px 20px;
  }
  
  .modal-btn {
    width: 100%;
  }
}

.step-outcome.final-outcome {
  color: #6b7280;
  font-weight: 400;
  opacity: 0.8;
}

.step-item:nth-child(4) {
  opacity: 0.85;
}

.step-item:nth-child(4) .step-number {
  background: #9ca3af;
  color: white;
  border: 2px dashed #d1d5db;
  background: transparent;
  color: #6b7280;
  font-weight: 500;
}

.step-item:nth-child(4) .step-title {
  color: #6b7280;
}

.step-item:nth-child(4) .step-description {
  color: #9ca3af;
}

/* Supported Platforms Section */
.section-supported-platforms {
  padding: 80px 0;
  background: #f9fafb;
}

.platforms-header {
  text-align: center;
  margin-bottom: 60px;
}

.platforms-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.platforms-header p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.platform-item {
  background: white;
  border-radius: 12px;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  min-height: 120px;
}

.platform-logo {
  width: 100%;
  max-width: 140px;
  height: auto;
}

.platform-logo img {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.platform-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.platform-item.featured {
  border: 2px solid #374151;
  position: relative;
}

.platform-item.featured::before {
  content: var(--recommended-text, 'Recommended');
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #374151;
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platforms-note {
  text-align: center;
  margin-top: 48px;
}

.platforms-note p {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
}

@media (max-width: 768px) {
  .section-supported-platforms {
    padding: 60px 0;
  }
  
  .platforms-header {
    margin-bottom: 40px;
  }
  
  .platforms-header h2 {
    font-size: 28px;
  }
  
  .platforms-header p {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .platform-item {
    padding: 32px 20px;
    min-height: 100px;
  }
  
  .platform-logo {
    max-width: 120px;
  }
  
  .platform-logo img {
    max-height: 50px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
}

.section-programmes {
}

/* 25K Campaign Styles */
.campaign-hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px;
}

/* Campaign Navigation */
.campaign-navigation {
  background: #000000;
  border-bottom: 1px solid #333333;
}

.campaign-navigation .nav {
  background: transparent;
}

.campaign-navigation .nav ul li a {
  color: #ffffff;
}

.campaign-navigation .nav ul li a:hover {
  color: #ff6b35;
}

.campaign-navigation .nav .logo span {
  color: #ffffff;
}

.campaign-navigation .nav .logo img {
  filter: brightness(0) invert(1);
}

.campaign-navigation .nav-badge {
  background: #ff6b35;
  color: #ffffff;
}

.campaign-navigation .language-switcher .lang-current {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.campaign-navigation .language-switcher .lang-current:hover {
  background: rgba(255, 255, 255, 0.2);
}

.campaign-navigation .language-switcher .lang-dropdown {
  background: #1a1a1a;
  border: 1px solid #333333;
}

.campaign-navigation .language-switcher .lang-link {
  color: #ffffff;
}

.campaign-navigation .language-switcher .lang-link:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
}

.campaign-navigation .btn {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff;
}

.campaign-navigation .btn:hover {
  background: #f0f0f0 !important;
  color: #000000 !important;
  transform: translateY(-1px);
}

.campaign-badge {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.campaign-badge .badge-icon {
  margin-right: 8px;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

.urgency-banner {
  background: linear-gradient(45deg, #dc2626, #ef4444);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: urgencyShine 3s ease-in-out infinite;
}

@keyframes urgencyShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.urgency-icon {
  font-size: 18px;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.spots-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.spots-remaining {
  font-size: 18px;
  font-weight: 800;
  color: #fbbf24;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.campaign-hero-content {
  text-align: center;
  margin-bottom: 60px;
}

.campaign-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-number {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  text-shadow: none;
}

.campaign-subtitle {
  font-size: 22px;
  color: #e5e7eb;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.campaign-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 18px 28px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 24px;
}

.feature-text {
  font-weight: 600;
  color: #f3f4f6;
}

.campaign-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.btn-campaign {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 20px 50px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-campaign::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-campaign:hover::before {
  left: 100%;
}

.btn-campaign:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.share-incentive {
  text-align: center;
}

.share-text {
  color: #d1d5db;
  margin-bottom: 16px;
  font-size: 16px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.campaign-visual {
  display: flex;
  justify-content: center;
}

.funding-visualization {
  text-align: center;
}

.funding-circle {
  width: 220px;
  height: 220px;
  border: 4px solid #ff6b35;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  background: rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.funding-amount {
  font-size: 36px;
  font-weight: 900;
  color: #ff6b35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.funding-label {
  font-size: 14px;
  color: #d1d5db;
  margin-top: 4px;
}

.funding-details {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.funding-item {
  text-align: center;
}

.funding-number {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #f7931e;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.funding-desc {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .campaign-title {
    font-size: 36px;
  }
  
  .campaign-subtitle {
    font-size: 18px;
    padding: 0 20px;
  }
  
  .campaign-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    max-width: 300px;
  }
  
  .share-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .funding-details {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn-campaign {
    padding: 18px 40px;
    font-size: 16px;
  }
}

/* Campaign Details Section */
.section-campaign-details {
  padding: 80px 0;
  background: #f8fafc;
}

.campaign-details-header {
  text-align: center;
  margin-bottom: 60px;
}

.campaign-details-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.campaign-details-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.campaign-mechanics {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
}

.mechanic-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e5e7eb;
}

.mechanic-icon {
  flex-shrink: 0;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.mechanic-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.mechanic-content p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.campaign-rewards {
  margin-bottom: 80px;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.reward-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.reward-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.reward-card.main-reward {
  border: 2px solid #ff6b35;
  position: relative;
  overflow: hidden;
}

.reward-card.main-reward::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.reward-header {
  margin-bottom: 24px;
}

.reward-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.reward-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
}

.reward-amount {
  font-size: 36px;
  font-weight: 900;
  color: #ff6b35;
  margin-bottom: 16px;
}

.reward-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.campaign-sharing {
  text-align: center;
}

.sharing-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.sharing-header p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
}

.sharing-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.benefit-icon {
  font-size: 20px;
}

.benefit-text {
  font-weight: 600;
  color: #374151;
}

/* Campaign Progress Section */
.section-campaign-progress {
  padding: 80px 0;
  background: white;
}

.progress-header {
  text-align: center;
  margin-bottom: 60px;
}

.progress-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.progress-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.progress-visualization {
  margin-bottom: 60px;
  text-align: center;
}

.progress-bar-container {
  max-width: 600px;
  margin: 0 auto 24px;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 6px;
  transition: width 0.3s ease;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6b7280;
}

.current-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.count-number {
  font-size: 48px;
  font-weight: 900;
  color: #ff6b35;
}

.count-label {
  font-size: 16px;
  color: #6b7280;
  font-weight: 600;
}

.challenge-rounds {
  margin-bottom: 60px;
}

.challenge-rounds h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 40px;
}

.rounds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.round-item {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.round-item.upcoming {
  border-color: #ff6b35;
  background: linear-gradient(135deg, #fff5f2, #ffffff);
}

.round-item.pending {
  opacity: 0.7;
}

.round-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.round-item.upcoming .round-number {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
}

.round-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.round-info p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

.round-spots {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spots-filled {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.spots-status {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.round-item.upcoming .spots-status {
  color: #ff6b35;
}

.campaign-cta-bottom {
  text-align: center;
}

.btn-campaign-large {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 20px 60px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.btn-campaign-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.cta-urgency {
  font-size: 16px;
  color: #dc2626;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .campaign-details-header h2 {
    font-size: 28px;
  }
  
  .mechanic-item {
    flex-direction: column;
    text-align: center;
  }
  
  .sharing-benefits {
    flex-direction: column;
    align-items: center;
  }
  
  .progress-header h2 {
    font-size: 28px;
  }
  
  .count-number {
    font-size: 36px;
  }
  
  .rounds-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-campaign-large {
    padding: 18px 40px;
    font-size: 18px;
  }
  
  .campaign-navigation .nav ul {
    display: none;
  }
  
  .campaign-navigation .nav-auth {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-campaign-nav {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .urgency-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .spots-counter {
    flex-direction: column;
    gap: 4px;
    padding: 8px 12px;
  }
  
  .funding-circle {
    width: 180px;
    height: 180px;
  }
  
  .funding-amount {
    font-size: 28px;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
  border-radius: 8px;
}

.mobile-menu-btn:hover {
  background-color: #f3f4f6;
}

.mobile-menu-btn:active {
  background-color: #e5e7eb;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #374151;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* Hide mobile menu button on desktop */
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: white;
  border-left: 1px solid #e5e7eb;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  min-height: 72px;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  color: #6b7280;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background-color: #f3f4f6;
  color: #374151;
}

/* Mobile Menu Content */
.mobile-menu-content {
  padding: 20px;
}

.mobile-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.mobile-menu-nav li {
  margin-bottom: 8px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--color-brand);
}

.mobile-nav-link.nav-item-with-badge {
  justify-content: space-between;
}

/* Mobile Menu Actions */
.mobile-menu-actions {
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
  position: relative;
  margin-bottom: 24px;
}

.mobile-lang-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-lang-current:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.mobile-lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 10;
}

.mobile-lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-lang-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-lang-link:last-child {
  border-bottom: none;
}

.mobile-lang-link:hover {
  background: #f9fafb;
  color: #374151;
}

.mobile-lang-link.active {
  background: #eff6ff;
  color: var(--color-brand);
}

.mobile-lang-link .lang-code {
  font-weight: 600;
}

.mobile-lang-link .lang-name {
  font-size: 14px;
  color: inherit;
}

/* Mobile CTA Button */
.mobile-cta-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
  .mobile-menu-overlay {
    display: none;
  }
}

.campaign-navigation .language-switcher .lang-link.active {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
}

.campaign-navigation .btn {
  background: #ffffff;
  color: #000000;
  border: 1px solid transparent;
}

.campaign-navigation .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
}

/* Campaign Navigation Mobile Menu Styles */
.campaign-navigation .mobile-menu-btn span {
  background-color: #ffffff;
}

.campaign-navigation .mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.campaign-navigation .mobile-menu-btn:active {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Rich Text Editor Content Styles */
.content-body {
    max-width: 800px;
    margin: 0 auto;
}

.content-body h1 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 32px 0 20px;
}

.content-body h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 32px 0 16px;
}

.content-body h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    margin: 24px 0 12px;
}

.content-body h4 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    margin: 20px 0 12px;
}

.content-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

.content-body strong {
    font-weight: 600;
    color: #000;
}

.content-body em {
    font-style: italic;
}

.content-body ul, 
.content-body ol {
    margin: 0 0 16px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.content-body ul li, 
.content-body ol li {
    margin-bottom: 8px;
}

.content-body ul {
    list-style-type: disc;
}

.content-body ol {
    list-style-type: decimal;
}

.content-body blockquote {
    background: #f8f9fa;
    border-left: 4px solid #007cba;
    margin: 24px 0;
    padding: 16px 24px;
    font-style: italic;
    color: #555;
}

.content-body a {
    color: #007cba;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.content-body a:hover {
    color: #005a8a;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.content-body hr {
    border: none;
    border-top: 1px solid #E5E5E5;
    margin: 32px 0;
}

/* Mobile responsiveness for content-body */
@media (max-width: 768px) {
    .content-body h1 {
        font-size: 28px;
        margin: 24px 0 16px;
    }

    .content-body h2 {
        font-size: 24px;
        margin: 24px 0 12px;
    }

    .content-body h3 {
        font-size: 20px;
        margin: 20px 0 10px;
    }

    .content-body h4 {
        font-size: 18px;
        margin: 16px 0 8px;
    }

    .content-body p,
    .content-body ul,
    .content-body ol {
        font-size: 14px;
    }
}

.urgency-text {
    color: #dc2626;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
}

.hero-overlay-text {
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    transition: opacity 0.5s ease-in-out;
    max-width: 90%;
    line-height: 1.4;
}

.hero-overlay-text.fade-out {
    opacity: 0;
}

.hero-overlay-text.fade-in {
    opacity: 1;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hero-overlay-text {
        font-size: 1.25rem;
    }
}

/* Carousel Component Styles */
.section-carousel {
  padding: 120px 0;
  background: #ffffff;
}

.carousel-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-title {
  font-size: 42px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 16px;
  font-family: "Satoshi", sans-serif;
}

.carousel-subtitle {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
  font-family: "Satoshi", sans-serif;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.carousel-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.carousel-grid {
  display: flex;
  gap: 24px;
  min-width: max-content;
  padding: 20px 0;
  padding-left: calc(50% - 195px); /* Center the first card */
  padding-right: calc(50% - 195px); /* Balance the padding */
}

.carousel-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  min-width: 390px;
  flex-shrink: 0;
}

.carousel-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.carousel-item.focused {
  border-color: #0dc978;
  box-shadow: 0 8px 25px rgba(13, 201, 120, 0.15);
  transform: scale(1.02);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
  background: #f8fafc;
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-nav-btn.prev {
  left: 0;
}

.carousel-nav-btn.next {
  right: 0;
}

.carousel-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: #6b7280;
}

.carousel-nav-btn:hover svg {
  fill: #374151;
}

/* Default Carousel Item Styles */
.carousel-item-content {
  text-align: center;
}

.item-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: #3b82f6;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.item-image {
  margin-bottom: 16px;
}

.item-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.item-text {
  text-align: left;
}

.item-title {
  font-size: 20px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 8px;
  font-family: "Satoshi", sans-serif;
}

.item-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 16px;
  font-family: "Satoshi", sans-serif;
}

.item-link {
  display: inline-block;
  background: #0dc978;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
  transition: all 0.3s ease;
}

.item-link:hover {
  background: #0bb869;
  transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-carousel {
    padding: 80px 0;
  }
  
  .carousel-header {
    margin-bottom: 48px;
  }
  
  .carousel-title {
    font-size: 32px;
  }
  
  .carousel-subtitle {
    font-size: 18px;
  }
  
  .carousel-container {
    padding: 0 24px;
  }
  
  .carousel-item {
    min-width: 320px;
  }
  
  .carousel-grid {
    padding-left: calc(50% - 160px);
    padding-right: calc(50% - 160px);
  }
}

/* Small mobile - stack vertically and hide arrows */
@media (max-width: 425px) {
  .carousel-container {
    padding: 0 16px;
  }
  
  .carousel-scroll-container {
    overflow-x: visible;
    overflow-y: visible;
  }
  
  .carousel-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: auto;
    padding: 0;
  }
  
  .carousel-item {
    min-width: auto;
    width: 100%;
  }
  
  /* Hide navigation arrows on small mobile */
  .carousel-nav-btn {
    display: none;
  }
}

/* Admin Sidebar Styles */
.admin-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    border-right: 1px solid #333;
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.admin-sidebar.collapsed {
    width: 56px;
}

.admin-sidebar.collapsed .admin-sidebar-content {
    display: none;
}

.admin-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #333;
    min-height: 60px;
}

.admin-sidebar.collapsed .admin-sidebar-header {
    padding: 16px 12px;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.admin-sidebar-controls {
    display: flex;
    gap: 8px;
}

.admin-sidebar.collapsed .admin-sidebar-controls {
    flex-direction: column;
    gap: 4px;
}

.admin-sidebar-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.admin-sidebar-toggle,
.admin-sidebar-hide {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-sidebar-toggle:hover,
.admin-sidebar-hide:hover {
    background: rgba(255, 255, 255, 0.1);
}

.admin-sidebar.collapsed .admin-sidebar-toggle svg {
    transform: rotate(180deg);
}

.admin-sidebar-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.admin-sidebar.collapsed .admin-sidebar-content {
    padding: 12px;
}

.admin-section {
    margin-bottom: 24px;
}

.admin-sidebar.collapsed .admin-section {
    margin-bottom: 16px;
}

.admin-section:last-child {
    margin-bottom: 0;
}

.admin-section h4 {
    margin: 0 0 12px 0;
    font-size: 12px;
    font-weight: 600;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-toggle-wrapper {
    margin: 0;
}

.admin-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
}

.admin-sidebar.collapsed .admin-toggle {
    justify-content: center;
    margin-bottom: 16px;
}

.admin-toggle input {
    display: none;
}

.admin-toggle-slider {
    position: relative;
    width: 40px;
    height: 20px;
    background: #333;
    border-radius: 10px;
    margin-right: 12px;
    transition: background 0.3s ease;
}

.admin-sidebar.collapsed .admin-toggle-slider {
    margin-right: 0;
}

.admin-toggle-slider:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #666;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.admin-toggle input:checked + .admin-toggle-slider {
    background: #3b82f6;
}

.admin-toggle input:checked + .admin-toggle-slider:before {
    transform: translateX(20px);
    background: #ffffff;
}

.admin-toggle-label {
    font-size: 13px;
    color: #ffffff;
}

.admin-help {
    font-size: 11px;
    color: #888;
    margin: 8px 0 0 0;
}

.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-sidebar.collapsed .admin-actions {
    gap: 16px;
}

.admin-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.admin-sidebar.collapsed .admin-action-btn {
    justify-content: center;
    padding: 8px;
    min-height: 40px;
}

.admin-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.admin-page-info {
    font-size: 11px;
    color: #888;
}

.admin-page-info p {
    margin: 4px 0;
}

.translation-debug {
    border-bottom: 1px dashed #3b82f6;
    cursor: help;
}

/* Mobile responsive for admin sidebar */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        height: auto;
        bottom: 0;
        top: auto;
        border-right: none;
        border-top: 1px solid #333;
    }
    
    .admin-sidebar.collapsed {
        width: 100%;
        height: 60px;
    }
    
    .admin-sidebar.collapsed .admin-sidebar-content {
        display: none;
    }
    
    .admin-sidebar-header {
        padding: 12px 16px;
        min-height: 60px;
    }
    
    .admin-sidebar.collapsed .admin-sidebar-header {
        padding: 12px 16px;
        justify-content: space-between;
    }
    
    .admin-sidebar-content {
        padding: 16px;
    }
    
    .admin-sidebar.collapsed .admin-sidebar-content {
        padding: 0;
    }
}

.admin-sidebar.collapsed .admin-toggle {
    justify-content: center;
    margin-bottom: 16px;
}

.admin-sidebar.collapsed .admin-toggle-slider {
    margin-right: 0;
}

.admin-sidebar.collapsed .admin-actions {
    gap: 16px;
}

.admin-sidebar.collapsed .admin-action-btn {
    justify-content: center;
    padding: 8px;
    min-height: 40px;
}

/* ===== BLOG STYLES ===== */

/* Blog Header */
.page-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid #e2e8f0;
}

.page-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 20px;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--gray-medium);
  margin: 0;
  line-height: 1.6;
}

/* Blog Posts Section */
.blog-posts {
  padding: 80px 0;
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

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

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: var(--gray-medium);
}

.blog-card-date,
.blog-card-reading-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 16px;
}

.blog-card-title a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--brand-color);
}

.blog-card-excerpt {
  color: var(--gray-medium);
  line-height: 1.6;
  margin: 0 0 20px;
  font-size: 1rem;
}

.blog-card-link {
  color: var(--brand-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.blog-card-link:hover {
  color: var(--text-color);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.pagination-link:hover {
  background: var(--brand-color);
  color: #ffffff;
  border-color: var(--brand-color);
}

.pagination-link.active {
  background: var(--brand-color);
  color: #ffffff;
  border-color: var(--brand-color);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-state h2 {
  font-size: 2rem;
  color: var(--text-color);
  margin: 0 0 16px;
}

.empty-state p {
  color: var(--gray-medium);
  font-size: 1.125rem;
  margin: 0;
}

/* ===== BLOG POST PAGE STYLES ===== */

/* Blog Post Header */
.blog-post-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0 40px;
  border-bottom: 1px solid #e2e8f0;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.back-to-blog {
  color: var(--brand-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.back-to-blog:hover {
  color: var(--text-color);
}

.blog-post-category {
  background: var(--brand-color);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-post-date,
.blog-post-reading-time {
  color: var(--gray-medium);
  font-size: 0.875rem;
}

.blog-post-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 20px;
  line-height: 1.2;
}

.blog-post-excerpt {
  font-size: 1.25rem;
  color: var(--gray-medium);
  line-height: 1.6;
  margin: 0;
}

/* Blog Post Content */
.blog-post-content {
  padding: 80px 0;
  background: #ffffff;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.blog-post-main {
  max-width: 100%;
}

.blog-post-featured-image {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
}

.blog-post-body h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 40px 0 20px;
  line-height: 1.3;
}

.blog-post-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 32px 0 16px;
  line-height: 1.4;
}

.blog-post-body p {
  margin: 0 0 24px;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 24px 0;
  padding-left: 24px;
}

.blog-post-body li {
  margin: 8px 0;
}

.blog-post-body strong {
  font-weight: 600;
  color: var(--text-color);
}

/* Share Section */
.blog-post-share {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.blog-post-share h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 20px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.share-button.twitter {
  background: #1da1f2;
  color: #ffffff;
  border-color: #1da1f2;
}

.share-button.twitter:hover {
  background: #1a91da;
  border-color: #1a91da;
}

.share-button.linkedin {
  background: #0077b5;
  color: #ffffff;
  border-color: #0077b5;
}

.share-button.linkedin:hover {
  background: #006097;
  border-color: #006097;
}

.share-button.facebook {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}

.share-button.facebook:hover {
  background: #166fe5;
  border-color: #166fe5;
}

/* Related Posts Sidebar */
.blog-post-sidebar {
  position: sticky;
  top: 40px;
}

.related-posts h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 24px;
}

.related-post {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.related-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-post-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-content {
  flex: 1;
  min-width: 0;
}

.related-post-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
}

.related-post-title a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-post-title a:hover {
  color: var(--brand-color);
}

.related-post-excerpt {
  font-size: 0.875rem;
  color: var(--gray-medium);
  line-height: 1.5;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-post-meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--gray-medium);
}

/* ===== RESPONSIVE BLOG STYLES ===== */

@media (max-width: 1024px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .blog-post-sidebar {
    position: static;
  }
  
  .blog-post-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0 40px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1.125rem;
  }
  
  .blog-posts {
    padding: 60px 0;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .blog-card-image {
    height: 200px;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .blog-card-title {
    font-size: 1.25rem;
  }
  
  .blog-post-header {
    padding: 40px 0 30px;
  }
  
  .blog-post-meta {
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .blog-post-title {
    font-size: 2rem;
  }
  
  .blog-post-excerpt {
    font-size: 1.125rem;
  }
  
  .blog-post-content {
    padding: 60px 0;
  }
  
  .blog-post-body {
    font-size: 1rem;
  }
  
  .blog-post-body h2 {
    font-size: 1.75rem;
  }
  
  .blog-post-body h3 {
    font-size: 1.375rem;
  }
  
  .share-buttons {
    gap: 8px;
  }
  
  .share-button {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .related-post {
    gap: 12px;
  }
  
  .related-post-image {
    width: 60px;
    height: 60px;
  }
  
  .related-post-title {
    font-size: 0.9rem;
  }
  
  .related-post-excerpt {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    gap: 24px;
  }
  
  .blog-card-image {
    height: 180px;
  }
  
  .blog-card-content {
    padding: 16px;
  }
  
  .blog-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .blog-post-title {
    font-size: 1.75rem;
  }
  
  .blog-post-excerpt {
    font-size: 1rem;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .share-button {
    width: 100%;
    justify-content: center;
  }
}