/* Custom Font Declarations */
@font-face {
  font-family: 'Tiro Devanagari Hindi';
  src: url('/static/fonts/TiroDevanagariHindi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tiro Devanagari Hindi';
  src: url('/static/fonts/TiroDevanagariHindi-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Padauk';
  src: url('/static/fonts/Padauk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Padauk';
  src: url('/static/fonts/Padauk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #f34d26;
  --color-text-light: #eeeeee;
  --color-text-medium: #999999;
  --color-text-dark: #666666;
  --color-text-black: #111111;
  --color-background-dark: #0a0a0a;
  --color-background-darker: #0f0f0f;
  --color-background-darkest: #101010;
  --color-background-light-rgba: rgba(255, 255, 255, 0.05);
  --color-background-white: #ffffff;
  --color-white: #ffffff;
  --font-padauk: 'Inter', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-georgia: 'Georgia', serif;
  --font-rubik: 'Rubik', sans-serif;
  --font-palanquin: 'Palanquin', sans-serif;
  --font-header: 'Tiro Devanagari Hindi', serif;
  --font-body: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-background-dark);
  color: var(--color-text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  box-sizing: border-box;
}

.page-container {
  max-width: 1920px;
  margin: 0 auto;
}

.section-container {
  padding: 120px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

@media screen and (max-width: 1500px) {
  .section-container {
    padding: 120px 0px;
  }
}

.section-title {
  color: var(--color-primary);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.section-heading {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

.section-subheading {
  color: var(--color-text-medium);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  max-width: 926px;
  margin: 0;
}

.text-highlight {
  color: var(--color-primary);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 16px 26px;
  font-size: 30px;
}

.btn-primary:hover {
  color: var(--color-text-black);
  background-color: var(--color-background-white);
}

.btn-primary:hover img {
  filter: invert(1);
}

.btn-pricing {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 14px 26px;
  font-size: 20px;
}

.btn-pricing:hover {
  color: var(--color-text-black);
  background-color: var(--color-background-white);
}

.btn-pricing:hover img {
  filter: invert(1);
}

.btn-nav {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 12px 18px;
  font-size: 20px;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .section-container {
    padding: 80px 40px;
  }
  .section-title {
    font-size: 16px;
  }
  .section-heading {
    font-size: 40px;
  }
  .section-subheading {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 60px 20px;
  }
  .section-heading {
    font-size: 36px;
  }
  .section-subheading {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .btn-primary {
    padding: 16px 22px;
    font-size: 20px;
  }
}

.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

.container-fluid {
  max-width: 100%;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  position: relative;
}


/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  padding: 40px 0px 150px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  width: 100%;
}

#section-hero {
  height: auto;
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
}

#section-hero.home-page .hero-section {
  padding-bottom: 40px;
}

#section-hero.home-page #section-authentic-content {
  padding-bottom: 80px;
}

#section-hero.home-page .fintech-partners-list li {
  font-size: 24px;
}

.site-header {
  width: 100%;
  max-width: 960px;
  background-color: rgba(60, 60, 60, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px 12px 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: fixed;
  z-index: 99;
  backdrop-filter: blur(8px);
}

.logo img {
  display: block;
  height: 39px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 20px;
  padding: 14px;
  transition: color 0.3s ease;
}

.mobile-menu-toggle {
  display: none;
}

.main-nav a:not(.btn-nav) {
  padding: 0;
}

.main-nav a:not(.btn-nav):hover {
  color: var(--color-primary);
}

.main-nav a.btn-nav:hover {
  color: var(--color-text-black);
  background-color: var(--color-background-white);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
  z-index: 1;
  margin-top: 280px;
  max-width: 1080px;
}

.hero-title {
  font-family: var(--font-header);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.14;
  color: var(--color-white);
  margin: 0;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 24px;
  color: var(--color-text-medium);
  line-height: 1.5;
  max-width: 976px;
  margin: -15px 0 0 0;
}

/* FAQ Hero Section */
#section-hero.faq-hero {
  background-image: none;
  min-height: auto;
}

#section-hero.faq-hero .hero-section {
  min-height: 40px;
}

.home-page .content-step-container {
  padding: 60px;
}

/* ===================================
   CUSTOMERS SECTION
   =================================== */
.customers-section {
  background-color: var(--color-background-darker);
  position: relative;
  z-index: -1;
  color: #fff;
  text-align: center;
}

.customers-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.section-heading-alt {
  color: var(--color-text-light);
  font-size: 30px;
  line-height: 1.2;
  margin: 0;
}

.logo-strip-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.logo-strip {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll 20s linear infinite;
  width: fit-content;
  padding-right: 60px; /* Match the gap to ensure seamless loop */
}

/* .logo-strip-container:hover .logo-strip {
  animation-play-state: paused;
} */

.logo-strip img {
  opacity: 0.6;
  max-height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.how-it-works-cards {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  max-width: 1440px;
}

.info-card {
  flex: 1;
  background-color: var(--color-background-darkest);
  border: 2px solid rgba(238, 238, 238, 0.1);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.info-card:hover {
  background-color: var(--color-background-light-rgba);
  transition: all 0.3s ease;
}

.info-card h4 {
  color: var(--color-text-light);
  font-size: 30px;
  font-weight: 400;
  margin: 0;
}

.info-card p {
  color: var(--color-text-medium);
  font-size: 20px;
  line-height: 1.67;
  margin: 0;
}

/* ===================================
   ABOUT US PAGE
   =================================== */
.about-body {
  background-color: #000;
}

#section-hero.about-hero {
  background-image: none;
}

#section-hero.about-hero .ai-collab-visual {
  width: 75%;
  margin-top: 200px;
}

#section-hero.about-hero .hero-section {                      
  padding-bottom: 100px;
}

.about-hero .hero-title {
  font-size: 56px;
  line-height: 1.2;
}

.about-hero .hero-content {
  margin-top: 200px;
  gap: 40px;
}

.about-hero .hero-subtitle {
  font-size: 20px;
  color: rgba(238, 238, 238, 0.7);
  margin-top: 0;
}

.about-image-section img.about-team-image {
  width: 90%;
}

.about-image-section {
  text-align: center;
}

#section-welcome {
  text-align: center;
}

#section-welcome .about-welcome-subtitle {
  font-size: 24px;
  font-weight: 700;
}

#section-welcome .about-welcome-text {
  font-size: 20px;
  line-height: 1.67;
  color: rgba(238, 238, 238, 0.7);
}


.leadership-header, .headquarters-content, .welcome-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.headquarters-content {
  width: 100%;
}

.headquarters-stats {
  width: 80%;
  display: flex;
  justify-content: center;
  justify-content: space-between;
  margin-top: 36px;
}

.headquarters-stats .stat-item .stat-number {
  font-size: 100px;
}

.headquarters-stats .stat-item .stat-number .text-highlight {
  background: linear-gradient(#F34D26, #db3498, #6f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.headquarters-stats .stat-item .stat-label {
  font-size: 24px;
  color: var(--color-text-medium);
  margin-top: 20px;
}

.leadership-grid {
  display: flex;
  gap: 30px;
}

.leadership-grid a {
  text-decoration: none;
}

.leader-card {
  background-color: var(--color-primary);
}

.leader-card img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.leader-card:hover img {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.leader-image-wrapper {
  position: relative;
  max-height: 420px;
}

.leader-image-wrapper h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--color-text-black);
  margin: 0;
  max-width: 160px;
  border-top-right-radius: 20px;
  font-size: 20px;
}

.leader-info {
  padding: 12px 20px;
}

.leader-info .leader-title {
  font-size: 20px;
  margin: 0;
  text-decoration: none;
  color: white;
}

.about-us-section .fintech-why-paragraph {
  font-size: 20px;
  line-height: normal;
  margin-bottom: 20px;
  color: rgba(238, 238, 238, 0.7);
}

.about-single-card {
  background-color: var(--color-background-darkest);
  border: 2px solid rgba(238, 238, 238, 0.1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-box-1.about-us-section .about-single-card {
  width: 75%;
  box-sizing: border-box;
}

.about-single-card .fintech-partners-title {
  font-size: 36px;
} 

.about-single-card .item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-single-card .item {
  color: rgba(238, 238, 238, 0.7);
  font-size: 20px;
  font-weight: normal;
}

.about-single-card .item p {
  margin: 0;
}

.about-single-card .check-icon {
  background-color: var(--color-primary), .5;
  border-radius: 5px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-box-1-text {
  font-size: 20px;
  line-height: normal;
  margin-bottom: 20px;
  color: rgba(238, 238, 238, 0.7);
  margin-top: 40px !important;
}

.about-single-card .check-icon::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
}

.about-vision-section .about-vision-subtitle {
  font-size: 20px;
  line-height: normal;
  margin-top: 30px;
  color: rgba(238, 238, 238, 0.7);
}

.about-vision-section .about-vision-text {
  font-size: 24px;
  line-height: normal;
  margin-bottom: 30px;
}

.about-vision-section .about-vision-list {
  margin-top: 60px;
}

.about-vision-section .about-vision-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-background-darkest);
  border: 2px solid rgba(238, 238, 238, 0.1);
  border-radius: 20px;
  padding: 20px;
}

.about-vision-content {
  width: 100%;
}

.about-vision-item {
  display: grid;
  justify-content: center;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.about-vision-box span {
  color: rgba(238, 238, 238, 0.7);
  text-align: left;
  font-size: 18px;
}

.leadership-container {
  background-color: var(--color-background-darkest);
}

/* Why Founders Choose Blazel Section */
.why-choose-container {
  background-color: var(--color-background-dark);
}

.why-choose-section {
  padding: 120px 0;
}

.why-choose-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.why-choose-subtitle {
  color: var(--color-text-medium);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-choose-card {
  background-color: transparent;
  padding: 40px 30px;
  text-align: center;
}

.why-choose-card:hover {
  background-color: var(--color-background-darkest);
}

.why-choose-card:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-card:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-card:nth-child(3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-card:nth-child(4) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-card:nth-child(5) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-text {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

.why-choose-footer {
  color: var(--color-text-medium);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  font-style: italic;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 20px;
}

/* ===================================
   AUTHENTIC CONTENT SECTION
   =================================== */
.authentic-content-section {
  gap: 60px;
}

.authentic-content-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-step-container {
  background-color: var(--color-background-darkest);
  
  border: 2px solid rgba(238, 238, 238, 0.1);
  border-radius: 30px;
  padding: 80px;
  display: flex;
  gap: 100px;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  box-sizing: border-box;
}

.content-step-container.reverse {
  gap: 50px;
}

.content-step-text {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-step-text .section-title {
  text-align: left;
}

.content-step-heading {
  font-family: var(--font-padauk);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: var(--color-text-light);
  margin: 0;
}

.content-step-description {
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-text-medium);
  margin: 0;
}

.content-step-visual {
  flex: 1;
}

/* Profile Grid */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(94px, 6fr));
  gap: 20px;
}

.profile-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 4px solid #999;
  object-fit: cover;
  transition: border-color 0.3s ease, filter 0.4s ease, opacity 0.3s ease;
  position: relative;
  /* Dark overlay on all avatars by default */
  filter: brightness(0.4) contrast(0.9);
}

.profile-avatar.orange-border {
  border-color: #ff6b35;
  /* Remove dark overlay and add slight orange tint for active avatars */
  filter: brightness(1) contrast(1) saturate(1.1) hue-rotate(-5deg);
}

/* Orange tint effect for newly highlighted avatars - enhanced animation */
.profile-avatar.orange-tint {
  filter: brightness(1.1) contrast(1.05) saturate(1.3) hue-rotate(-5deg);
  animation: orangePulse 0.6s ease-out;
}

@keyframes orangePulse {
  0% {
    filter: brightness(0.4) contrast(0.9);
  }
  50% {
    filter: brightness(1.2) contrast(1.1) saturate(1.4) hue-rotate(-8deg);
  }
  100% {
    filter: brightness(1.1) contrast(1.05) saturate(1.3) hue-rotate(-5deg);
  }
}

/* Diagram Container */
.diagram-container {
  position: relative;
  height: 650px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-inter);
}

/* LinkedIn Post Cards */
.post-card-diagram {
  position: absolute;
  width: 460px;
  background-color: var(--color-white);
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.post-card-1 {
  transform: rotate(-15deg);
  top: 10px;
  left: 10px;
}

.post-card-2 {
  transform: rotate(15deg);
  top: 10px;
  right: 30px;
}

.post-card-3 {
  top: 250px;
  left: 206px;
}

.post-card-padding {
  padding: 20px;
}

.post-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.post-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.post-avatar-1 {
  background-image: url('../images/study-client-3.png');
  background-position: top;
}

.post-avatar-2 {
  background-image: url('../images/study-client-1.png');
  background-position: top;
}

.post-avatar-3 {
  background-image: url('../images/study-client-2.png');
  background-position: top;
}

.post-author-info {
  flex: 1;
}

.post-author-name {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
}

.post-author-name svg {
  margin-left: 2px;
  color: #c37d16;
}

.post-author-website {
  font-size: 12px;
  color: #0a66c2;
}

.post-author-title {
  font-size: 12px;
  color: #666;
}

.post-meta {
  font-size: 11px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.follow-btn {
  color: #0a66c2;
  font-weight: 600;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.post-content {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

.highlight-text {
  background: #ff9b5a;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: 500;
}

.post-actions {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  margin-top: 5px;
}

.post-reactions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
}

.post-reactions svg {
  margin-right: -10px;
  width: 18px;
  height: 18px;
}

.post-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}

.post-action-btn:hover {
  background: #f3f3f3;
}

.comment-repost {
  color: #333;
  font-size: 14px;
}

/* Annotations */
.annotation {
  position: absolute;
  z-index: 0;
}

.annotation-box {
  background-color: var(--color-background-darker);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.annotation-1 {
  top: -40px;
  left: 20px;
  transform: rotate(15deg);
}

.annotation-2 {
  top: -18px;
  left: -26px;
  transform: rotate(-15deg);
}

.annotation-3 {
  top: -60px;
  right: 80px;
  transform: rotate(-15deg);
}

.annotation-4 {
  bottom: 55px;
  left: -77px;
  transform: rotate(15deg);
}

.annotation-5 {
  bottom: 0px;
  left: 0px;
  top: 410px;
}

.annotation-6 {
  bottom: -21px;
  left: 240px;
}

.annotation-svg {
  position: absolute;
  overflow: visible;
  pointer-events: none;
}

.annotation-svg-1 {
  top: 36px;
  left: 100px;
  width: 80px;
  height: 100px;
}

.annotation-svg-2 {
  top: -1px;
  left: 104px;
  width: 70px;
  height: 111px;
}

.annotation-svg-3 {
  bottom: -60px;
  right: 60px;
  width: 120px;
  height: 70px;
}

.annotation-svg-4 {
  bottom: 37px;
  left: 65px;
  width: 100px;
  height: 140px;
}

.annotation-svg-5 {
  bottom: -149px;
  left: -44px;
  width: 100px;
  height: 280px;
}

.annotation-svg-6 {
  bottom: -42px;
  right: -65px;
  width: 100px;
  height: auto;
}

#section-faq {
  padding-top: 0px;
}

/* Score Cards */
.score-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 3fr));
  gap: 15px;
}

.score-card {
  background-color: var(--color-white);
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.score-card-content {
  font-size: 16px;
  color: #000;
  line-height: 1.2;
  margin-bottom: 10px;
}

.score-card-more {
  color: #0a66c2;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.score-badge {
  position: absolute;
  bottom: -12px;
  right: 15px;
  background-color: #000;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.score-card.best-score {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 155, 90, 0.1) 100%);
  border-color: #ff6b35;  
}

.score-card.best-score .score-badge {
  background-color: #ff6b35;
  color: var(--color-white);
  border-color: #ff6b35;
}

.score-card.best-score .score-card-content {
  color: var(--color-white);
}

/* ===================================
   AI COLLABORATION SECTION
   =================================== */
.ai-collab-section {
  background-color: #161616;
}

.ai-collab-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1440px;
}

.ai-collab-visual {
  flex: 1;
  width: 65%;
  overflow: hidden;
  border-radius: 40px;
}

.ai-collab-visual img {
  width: 100%;
  height: auto;
}

.ai-collab-visual video {
  width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.video-play-pause-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-container:hover .video-play-pause-icon {
  opacity: 1;
}

.video-container.paused .video-play-pause-icon {
  opacity: 1;
}

.play-icon, .pause-icon {
  transition: transform 0.2s ease;
}

.play-icon:hover, .pause-icon:hover {
  transform: scale(1.1);
}

.ai-collab-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.ai-collab-text .section-title,
.ai-collab-text .section-heading,
.ai-collab-text .section-subheading {
  text-align: left;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq-list {
  background-color: var(--color-background-light-rgba);
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 860px;
}

.faq-item {
  background-color: var(--color-background-darkest);
  border: 2px solid rgba(238, 238, 238, 0.05);
  border-radius: 20px;
  padding: 30px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.faq-question p {
  font-size: 20px;
  color: var(--color-text-light);
  margin: 0;
}

.faq-question img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.faq-question svg {
  border-radius: 50px;
  background-color: rgba(243, 77, 38, .2);
}

.faq-item.expanded .faq-question img {
  transform: rotate(180deg);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon-vertical {
  transition: opacity 0.3s ease;
}

.faq-item.expanded .faq-icon-vertical {
  opacity: 0;
}

.faq-answer {
  display: none;
  padding-top: 20px;
}

.faq-answer p {
  font-size: 20px;
  line-height: 1.67;
  color: var(--color-text-medium);
  margin: 0;
}

.faq-item.expanded .faq-answer {
  display: block;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  padding-top: 0;
}

.cta-divider {
  width: 100%;
  max-width: 992px;
  height: 1px;
  background: linear-gradient(90deg, rgba(238, 238, 238, 0) 0%, rgba(238, 238, 238, 0.3) 50%, rgba(238, 238, 238, 0) 100%);
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 80%;
  padding-top: 60px;
}

.cta-heading {
  font-family: var(--font-padauk);
  font-weight: 700;
  font-size: 82px;
  line-height: 1.2;
  color: var(--color-text-light);
  text-align: center;
  margin: -60px 0 0 0;
}

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

.cta-matter .cta-heading {
  margin-bottom: 30px;
}

.cta-matter p {
  font-size: 24px;
}

/* ===================================
   FOOTER SECTION
   =================================== */
.site-footer {
  padding: 0 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

.ai-summary {
  color: var(--color-text-medium);
  font-weight: bold;
  font-size: 18px;
}

.footer-ai-powered .ai-logos {
  display: flex;
  gap: 15px;
}

.footer-ai-powered .ai-logos img {
  width: 36px;
  height: 36px;
}


.footer-divider {
  width: 100%;
  max-width: 992px;
  height: 1px;
  background: linear-gradient(90deg, rgba(238, 238, 238, 0) 0%, rgba(238, 238, 238, 0.3) 50%, rgba(238, 238, 238, 0) 100%);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  gap: 60px;
}

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

.about-column {
  flex: 1;
  max-width: 500px;
  gap: 20px;
}

.footer-logo {
  width: 120px;
  height: auto;
}

.footer-description {
  color: var(--color-text-medium);
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
}

.links-column {
  gap: 25px;
}

.links-column h4 {
  color: var(--color-text-medium);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

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

.links-column a {
  color: var(--color-text-medium);
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.links-column a:hover {
  color: var(--color-primary);
}

.footer-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 400;
  padding-left: 20px;
  display: inline-block;
  margin-left: auto;
}

.links-column a:hover .footer-arrow {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  border-top: 1px solid #222;
  padding-top: 20px;
}

.copyright,
.legal-links a {
  color: var(--color-text-dark);
  font-size: 16px;
  letter-spacing: 0.56px;
  text-decoration: none;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a:hover {
  color: var(--color-text-medium);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links img {
  width: 24px;
  height: 24px;
}

.social-links a[aria-label="Twitter"] img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.conditions-section {
  padding: 80px;
  align-items: start;
  background-color: #0F0F0F;
}

.conditions-hero {
  padding-bottom: 100px;
}

.conditions-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.conditions-anchor {
  color: var(--color-primary);
  text-decoration: none;
}

.conditions-subtitle {
  color: var(--color-primary);
    font-family: var(--font-padauk);
    font-weight: bold;
    font-size: 28px;
    line-height: 1.4;
    margin: 10px 0;
}

/* ===================================
   RESPONSIVE MEDIA QUERIES
   =================================== */

/* Large Screens (1200px and below) */
@media screen and (max-width: 1500px) {
  .container {
    max-width: 1140px;
  }
  .profile-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 4fr));
  }
  .profile-avatar {
    width: 76px;
    height: 76px;
  }
  .profile-avatar:last-child {
    display: none;
  }
  .score-card-grid {
      grid-template-columns: repeat(auto-fit, minmax(190px, 2fr));
  }
  .score-card:last-child {
    display: none;
  }
  #section-ai-collaboration {
    padding-right: 40px;
    padding-left: 40px;
  }
  .content-step-container.reverse {
    display: block;
  }
  .content-step-container.reverse .content-step-text {
    margin-top: 140px;
  }
  /* .post-card-3 {
    left: 180px;
  } */
}

@media (max-width: 1200px) {
  .hero-section {
    /* padding: 40px; */
    gap: 80px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .btn-nav {
    padding: 10px 14px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .content-step-container {
    flex-direction: column;
    padding: 60px;
    gap: 40px;
  }

  .content-step-text {
    flex: 0 0 auto;
    text-align: center;
  }

  .content-step-text .section-title {
    text-align: center;
  }

  .profile-avatar {
    width: 80px;
    height: 80px;
  }

  .diagram-container {
    transform: scale(0.7);
    margin-top: -50px;
  }

  .site-footer {
    padding-left: 40px;
    padding-right: 40px;
    gap: 60px;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .content-step-heading {
    font-size: 30px;
  }
  .content-step-description {
    font-size: 20px;
  }
  .content-step-visual {
    width: 100%;
  }
  .profile-avatar:last-child {
    display: block;
  }
  .content-step-container.reverse .content-step-text {
    margin-top: 0;
  }
  .container {
    padding: 0px;
  }
  .faq-answer p {
    font-size: 16px;
  }
  .cta-heading {
    font-size: 76px;
  }
  .footer-description, .links-column a {
    font-size: 16px;
  }
  .links-column h4 {
    font-size: 20px;
  }
}

/* Medium Screens (992px and below) */
@media (max-width: 992px) {
  .how-it-works-cards {
    flex-direction: column;
  }

  .about-vision-item {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-box-1.about-us-section .about-single-card {
    width: 100%;
  }

  .about-single-card .fintech-partners-title {
    font-size: 24px;
  }

  .about-us-section .fintech-why-paragraph, .about-single-card .item {
    font-size: 16px;
  }

  .about-single-card .check-icon {
    max-width: 20px;
    max-height: 20px;
    min-width: 20px;
    min-height: 20px;
  }

  .fintech-why-paragraph.about-box-1-text {
    margin-top: 20px !important;
  }

  #section-welcome.section-container:not(.vision) {
    padding-top: 0px;
  }
  
  .info-card {
    padding: 40px;
  }

  .ai-collab-content {
    flex-direction: column;
    gap: 40px;
  }

  .ai-collab-text {
    align-items: center;
  }

  .ai-collab-text .section-title,
  .ai-collab-text .section-heading,
  .ai-collab-text .section-subheading {
    text-align: center;
  }

  .cta-heading {
    font-size: 64px;
  }
  .score-card:last-child {
    display: block;
  }

  /* Why Choose Blazel Medium Screens */
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-card:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .why-choose-card:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .why-choose-card:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

}

/* Mobile Screens (768px and below) */
@media (max-width: 768px) {
  .hero-section {
    padding: 20px 0 0 0;
    gap: 60px;
  }

  .about-vision-item {
    grid-template-columns: repeat(1, 1fr);
    justify-content: flex-start;
    width: 100%;
  }

  .about-vision-box {
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100%;
  }

  .about-vision-box span {
    text-align: left !important;
    color: rgba(238, 238, 238, 0.7);
    width: 100%;
  }

   .leadership-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  
  #section-welcome .about-welcome-subtitle {
    font-size: 20px;
  }

  #section-welcome .about-welcome-text {
    font-size: 16px;
  }

   /* Why Choose Blazel Medium Screens */
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-choose-card {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .headquarters-stats {
    flex-direction: column;
    gap: 40px;
  }

  .site-header {
    flex-direction: column;
    gap: 15px;
    background: none;
    border: none;
    width: 85%;
  }

  .leadership-grid {
    gap: 15px;
  }

  .leader-image-wrapper h4 {
    font-size: 14px;
    padding: 10px;
    bottom: 4px;
  }

  .leader-info {
    padding: 0 10px;
  }

   .leader-info p {
    padding: 0;
    margin: 6px 0px;
    font-size: 14px;
   }

  /* Why Choose Blazel Responsive */
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .why-choose-card {
    padding: 30px 20px;
    text-align: left !important;
  }

  .why-choose-text {
    font-size: 16px;
    text-align: left !important;
  }

  .why-choose-footer {
    font-size: 16px;
    margin-top: 40px;
  }

   .cta-content {
    padding-top: 0;
   }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .play-button {
    width: 80px;
    height: 80px;
  }

  .logo-strip {
    gap: 40px;
    padding-right: 40px; /* Match the gap to ensure seamless loop */
  }

  .logo-strip img {
    max-height: 20px;
  }

  .score-card-grid {
    grid-template-columns: 1fr;
  }

  .cta-heading {
    font-size: 48px;
  }

  .cta-content {
    gap: 40px;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .authentic-content-section {
    gap: 30px;
  }
  .content-step-container {
    padding: 40px;
  }
  .home-page .content-step-container {
    padding: 30px;
  }
  .content-step-description {
    font-size: 16px;
  }
  .info-card h4 {
    font-size: 20px;
  }
  .section-heading-alt {
    font-size: 24px;
  }
  .info-card p {
    font-size: 16px;
  }
  #section-cta .section-title {
    margin-bottom: 40px;
  }
  .links-column {
    gap: 15px;
  }
  .footer-content {
    gap: 40px;
  }
  .footer-bottom {
    gap: 10px;
  }
  .site-footer {
    gap: 40px;
  }
  .hero-section {
    gap: 40px;
  }
  .post-card-1 {
    left: -70px;
    top: -30px;
  }
  .post-card-2 {
    top: 300px;
    right: 0px;
  }
  .post-card-3 {
    left: 2%;
    top: 550px;
  }
  .content-step-container.reverse .content-step-text {
    margin-top: 200px;
  }
  .about-vision-section .about-vision-subtitle {
    font-size: 16px;
  }
  .about-vision-section .about-vision-text {
    font-size: 20px;
  }
}
  /* Mobile Header Adjustments */
@media (max-width: 768px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    gap: 0;
  }

  .hero-section {
    min-height: auto;
  }

  #section-hero {
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-content {
    gap: 30px;
    margin-top: 180px;
    max-width: 95%;
  }

  .logo {
    order: 1;
    z-index: 1001;
  }
  
  .ai-collab-visual {
    width: 90%;
    margin-top: 30px;
    border-radius: 20px;
  }

  #section-hero.about-hero .ai-collab-visual {
    width: 90%;
    margin-top: 120px;
  }

  #section-hero.home-page {
    background-size: contain;
  }

  .btn-nav {
    order: 2;
    padding: 11px 11px;
    font-size: 16px;
    display: inline-block;
    z-index: 1001;
  }

  /* Mobile Menu Icon */
  .mobile-menu-toggle {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    margin: 6px 0;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Mobile Navigation */
  .main-nav {
    position: fixed;
    top: 74px;
    right: -100%;
    width: 80%;
    max-width: 200px;
    background-color: rgba(40, 40, 40, 0.99);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    flex-direction: column;
    padding: 30px 30px;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    align-items: baseline;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    font-size: 20px;
    padding: 15px 0;
    text-decoration: none;
  }

  .main-nav .btn-nav {
    display: none;
  }

  /* Mobile Hero Title */
  .hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }

  /* Overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 999;
    display: none;
  }

  .site-header {
    flex-direction: row-reverse;
  }

  .spacer {
    display: flex;
    gap: 10px;
  }
}

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

.mobile-menu-toggle {
  display: block;
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .content-step-container.reverse .content-step-text {
    margin-top: 330px;
  }
  .section-container {
    padding: 40px 20px;
  }
  #section-why-choose.section-container {
    gap: 0px;
  }
  .post-card-3 {
    left: -30px;
    top: 675px;
  }
  .post-card-2 {
    top: 270px;
    right: -50px;
  }
  .post-card-1 {
    left: -30px;
  }  
  .hero-title {
    font-size: 32px;
  }
  .annotation-1 {
    top: -5px;
    left: 160px;
  }
  .annotation-2 {
    top: -31px;
    left: 22px;
  }
  .annotation-3 {
    top: 0px;
    right: 0px;
  }
  .annotation-5 {
    bottom: 78px;
    left: 0px;
    top: 495px;
  }
  .annotation-svg-5 {
    bottom: -148px;
    left: -66px;
  }
  /* .annotation-svg-5 path{
    d: path("M 77 129 Q 22 46 216 -50") !important;
  } */
  .annotation-6 {
    bottom: 90px;
    left: 190px;
  }
  .annotation-4 {
    bottom: 50px;
    left: -133px;
  }
  .annotation-svg-2 {
    top: 14px;
    left: 50px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-heading {
    font-size: 28px;
  }

  .content-step-heading {
    font-size: 28px;
  }

  .info-card {
    padding: 30px;
  }

  .info-card h4 {
    font-size: 24px;
  }

  .cta-heading {
    font-size: 36px;
  }
  .post-card-diagram {
    width: 350px;
  }
  .post-content {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .site-header {
    width: 90%;
  } 
}

/* Disable sticky positioning on tablets and smaller screens */
@media (max-width: 1024px) {
  .sticky-text {
    position: static !important;
    top: auto !important;
  }
  
  /* Adjust container alignment for better tablet layout */
  .content-step-container[style*="align-items: flex-start"] {
    align-items: center !important;
  }
}

/* ===========================================
   SMOOTH AVATAR TRANSITION FIX
   Add this to your styles.css in the profile grid section
   =========================================== */

   .profile-avatar {
    /* Existing styles remain the same */
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 4px solid #999;
    object-fit: cover;
    
    /* Enhanced transition for smooth image changes */
    transition: border-color 0.3s ease, filter 0.4s ease, opacity 0.3s ease-in-out;
    
    /* Prevent layout shift during image load */
    display: block;
    background-color: #2a2a2a; /* Fallback color while loading */
    
    /* Hardware acceleration for smoother transitions */
    will-change: opacity, filter;
    transform: translateZ(0);
    backface-visibility: hidden;
    
    /* Dark overlay on all avatars by default */
    filter: brightness(0.4) contrast(0.9);
    
    /* For background-image implementation */
    background-size: cover;
    background-position: center;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }
  
  .profile-avatar.orange-border {
    border-color: #ff6b35;
    /* Remove dark overlay and add slight orange tint for active avatars */
    filter: brightness(1) contrast(1) saturate(1.1) hue-rotate(-5deg);
  }
  
  /* Orange tint effect for newly highlighted avatars - enhanced animation */
  .profile-avatar.orange-tint {
    filter: brightness(1.1) contrast(1.05) saturate(1.3) hue-rotate(-5deg);
    animation: orangePulse 0.6s ease-out;
  }
  
  /* Ensure no image placeholder shows */
  .profile-avatar::before {
    content: '';
    display: none;
  }

/* ===================================
   PRICING PAGE STYLES
   =================================== */

/* Pricing Hero Section */

#section-hero.pricing-hero {
  height: auto;
  background-image: url('../images/hero-bg-1.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.pricing-hero {
  background-color: #000;
  min-height: auto;
}

.pricing-hero .hero-section {
  background: none;
  padding: 40px 0px 100px 0;
}

.pricing-hero .hero-content {
  margin-top: 200px;
  gap: 40px;
}

.pricing-hero .hero-title {
  font-size: 56px;
  line-height: 1.2;
}

.pricing-hero .hero-subtitle {
  font-size: 20px;
  color: rgba(238, 238, 238, 0.7);
  margin-top: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.pricing-card hr {
  width: 100%;
  height: 1px;
  border: none;
  border-top: 1px dashed #333;
}

/* Pricing Card */
.pricing-card {
  background-color: var(--color-background-darkest);
  border: 2px solid rgba(238, 238, 238, 0.1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(243, 77, 38, 0.08);
}

.pricing-card:hover .pricing-badge {
  background-color: rgba(243, 77, 38, 0.2);
  color: var(--color-primary);
}

/* Pricing Badge */
.pricing-badge {
  background-color: rgba(238, 238, 238, 0.1);
  color: var(--color-text-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  width: fit-content;
}

/* Pricing Card Title */
.pricing-card-title {
  color: var(--color-text-light);
  font-size: 26px;
  font-weight: 600;
  margin: 0;
}

/* Pricing Price */
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0;
}

.price-amount {
  color: var(--color-text-light);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.price-custom {
  font-size: 36px;
}

.price-period {
  color: var(--color-text-medium);
  font-size: 18px;
  font-weight: 400;
}

/* Pricing Description */
.pricing-description {
  color: var(--color-text-medium);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

/* Pricing Seats */
.pricing-seats {
  color: var(--color-text-dark);
  font-size: 16px;
  text-align: center;
  margin: 0;
}

/* Pricing Features */
.pricing-features {
  margin-top: 10px;
}

.features-title {
  color: var(--color-text-light);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

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

.features-list li {
  color: var(--color-text-medium);
  font-size: 18px;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.features-list li::before {
  content: "✓";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 16px;
}

/* Pricing Page Responsive Styles */
@media (max-width: 1200px) {  
  .pricing-hero .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  } 
  .pricing-section {
    padding: 80px 30px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .pricing-hero .hero-content {
    margin-top: 180px;
  }
  
  .pricing-hero .hero-title, .about-hero .hero-title {
    font-size: 36px;
  }
  
  .pricing-hero .hero-subtitle, .about-hero .hero-subtitle {
    font-size: 18px;
  }

  .about-image-section {
    text-align: center;
  }

  .headquarters-stats .stat-item .stat-number {
    font-size: 60px;
  }

  .about-hero .hero-subtitle {
    font-size: 16px;
  }

  .about-image-section img.about-team-image {
    width: 90%;
  }

  .headquarters-stats .stat-item .stat-label {
    font-size: 20px;
  }
  
  .pricing-header {
    margin-bottom: 40px;
  }
  
  .pricing-card {
    padding: 30px;
  }
  
  .price-amount {
    font-size: 40px;
  }
  
  .price-custom {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .pricing-hero .hero-title, .about-hero .hero-title {
    font-size: 32px;
    margin-bottom: 0px;
  }
  
  #section-hero.about-hero .hero-content {
    margin-top: 150px;
  }

  .price-amount {
    font-size: 36px;
  }
  
  .price-custom {
    font-size: 28px;
  }
}

/* ===================================
   INDUSTRIES PAGE STYLES
   =================================== */

/* Industries Hero Section */
#section-hero.industries-hero {
  min-height: auto;
  background: none;
}

.industries-hero .hero-section {
  background: none;
  padding: 40px 0px 0 0;
}

.industries-hero .hero-content {
  margin-top: 200px;
  gap: 30px;
}

.industries-hero .section-title {
  margin-bottom: 10px;
}

.industries-hero .hero-title {
  font-size: 48px;
  line-height: 1.2;
  max-width: 900px;
  font-family: var(--font-header);
}

.industries-hero .hero-subtitle {
  font-size: 20px;
  color: rgba(238, 238, 238, 0.7);
  margin-top: 0;
}

/* Industries Section */
.industries-section {
  padding: 80px 0;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Industry Card */
.industry-card {
  background-color: var(--color-background-darkest);
  border: 2px solid rgba(238, 238, 238, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(243, 77, 38, 0.05);
  transform: translateY(-4px);
}

.industry-card:hover .industry-icon {
  color: var(--color-primary);
  background-color: rgba(243, 77, 38, 0.15);
}

.industry-card:hover .industry-link {
  opacity: 1;
  transform: translate(4px, -4px);
  color: var(--color-primary);;
}

.industry-card .industry-main-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Industry Icon */
.industry-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(238, 238, 238, 0.05);
  border: 2px solid rgba(238, 238, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: all 0.3s ease;
}

.industry-icon svg {
  width: 32px;
  height: 32px;
}

/* Industry Title */
.industry-title {
  color: var(--color-text-light);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

/* Industry Description */
.industry-description {
  color: var(--color-text-medium);
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Industry Link Arrow */
.industry-link {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-medium);
  transition: all 0.3s ease;
  text-decoration: none;
}

.industry-link svg {
  width: 30px;
  height: 30px;
}

/* Industries Page Responsive Styles */
@media (max-width: 1200px) {  
  .industries-hero .hero-title {
    font-size: 48px;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  } 
  
  .industries-section {
    padding: 30px;
  }
  
  .industry-link {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .industries-hero .hero-content {
    margin-top: 180px;
  }
  
  .industries-hero .hero-title {
    font-size: 36px;
  }
  
  .industries-hero .hero-subtitle {
    font-size: 16px;
  }
  
  .industry-card {
    padding: 30px;
  }
  
  .industry-link {
    top: 30px;
    right: 30px;
  }
}

@media (max-width: 480px) {
  .industries-hero .hero-title {
    font-size: 32px;
  }
  
  .industry-card {
    padding: 24px;
  }
  
  .industry-icon {
    width: 50px;
    height: 50px;
  }
  
  .industry-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .industry-title {
    font-size: 20px;
  }
  
  .industry-description {
    font-size: 16px;
  }
  
  .industry-link {
    top: 24px;
    right: 24px;
  }
}

#section-hero.ai-data-hero {
  background-image: url('../images/ai-data-banner.png');
}

#section-hero.fintech-hero {
  background-image: url('../images/financial-technology-banner.png');
}

#section-hero.real-estate-hero {
  background-image: url('../images/real-estate-hero.png');
}

#section-hero.marketing-productivity-hero {
  background-image: url('../images/marketing-and-productivity-banner.png');
}

#section-hero.legal-cybersecurity-hero {
  background-image: url('../images/legal-and-cybersecurity-banner.png');
}

#section-hero.health-life-sciences-hero {
  background-image: url('../images/health-and-life-sciences-banner.png');
}

#section-hero.private-equity-hero {
  background-image: url('../images/private-equity-banner.png');
}

#section-hero.service-providers {
  background-image: url('../images/service-providers-banner.png');
}


/* ===================================
   FINANCIAL TECHNOLOGY PAGE STYLES
   =================================== */

/* Industry Insight Section */
.insight-section {
  background-color: #0F0F0F;
}

.fintech-insight-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  max-width: 1440px;
  width: 100%;
  align-items: start;
}

.fintech-insight-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  height: 100%;
}

.fintech-insight-label {
  color: var(--color-primary);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.fintech-insight-title {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
}

.fintech-insight-subtitle {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: bold;
  font-size: 28px;
  line-height: 1.4;
  opacity: 0.75;
  margin: 0;
}

.fintech-insight-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fintech-insight-paragraph {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Styles for Fintech Page */
@media (max-width: 1200px) {
  .fintech-hero-title {
    font-size: 46px;
  }
  
  .fintech-insight-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
  }
  
  .fintech-insight-title {
    font-size: 42px;
  }
  
  .fintech-insight-subtitle {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .fintech-insight-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .fintech-insight-section {
    padding: 80px 30px;
  }
}

@media (max-width: 768px) {
  .fintech-hero-content {
    margin-top: 180px;
    gap: 28px;
  }
  
  .fintech-hero-title {
    font-size: 36px;
  }
  
  .fintech-hero-subtitle {
    font-size: 16px;
  }
  
  .fintech-insight-section {
    padding: 60px 30px;
  }
  
  .fintech-insight-title {
    font-size: 36px;
  }
  
  .fintech-insight-subtitle {
    font-size: 22px;
  }
  
  .fintech-insight-paragraph {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .fintech-hero-title {
    font-size: 30px;
  }
  
  .fintech-hero-subtitle {
    font-size: 15px;
  }
  
  .fintech-insight-title {
    font-size: 32px;
  }
  
  .fintech-insight-subtitle {
    font-size: 20px;
  }
  
  .fintech-insight-paragraph {
    font-size: 15px;
  }
  
  .fintech-insight-label {
    font-size: 13px;
  }
}

/* Who We Work With Section */
.fintech-partners-section {
  padding: 100px 0;
  align-items: start;
  gap: 0;
}

.fintech-partners-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.fintech-partners-label {
  color: var(--color-primary);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0;
}

.fintech-partners-title {
  color: var(--color-text-light);
  font-family: var(--font-header);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
}

.fintech-partners-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fintech-partners-subtitle {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.fintech-partners-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fintech-partners-list li {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
}

.fintech-partners-list li::before {
  content: "•";
  color: rgba(153, 153, 153, 1);
  position: absolute;
  left: 0;
  font-weight: 400;
  font-size: 20px;
}

/* Responsive Styles for Who We Work With */
@media (max-width: 1200px) {
  .fintech-partners-section {
    padding: 80px 30px;
  }
  
  .fintech-partners-title {
    font-size: 42px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .fintech-partners-section {
    padding: 60px 30px;
  }
  
  .fintech-partners-title {
    font-size: 36px;
  }
  
  .fintech-partners-subtitle {
    font-size: 20px;
  }
  
  .fintech-partners-list li {
    font-size: 16px;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .fintech-partners-title {
    font-size: 32px;
  }
  
  .fintech-partners-subtitle {
    font-size: 18px;
  }
  
  .fintech-partners-label {
    font-size: 14px;
  }
}

/* Who Your Content Reaches Section */
.fintech-audience-section {
  padding: 100px 0;
}

.fintech-audience-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.fintech-audience-label {
  color: var(--color-primary);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0;
}

.fintech-audience-title {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
}

.home-page .fintech-partners-title {
  font-size: 60px;
}

.fintech-audience-subtitle {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

.fintech-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

/* Profile Card */
.fintech-profile-card {
  background-color: rgba(30, 30, 30, 1);
  border: 1px solid rgba(60, 60, 60, 1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fintech-profile-card:hover {
  border-color: rgba(80, 80, 80, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fintech-profile-banner {
  width: 100%;
  height: 180px;
  background: url('../images/default-background-image.png') center/cover no-repeat;
  position: relative;
}

@media (max-width: 768px) {
  .fintech-profile-banner {
    height: 120px;
  }
}

.fintech-profile-body {
  padding: 0 24px 24px 24px;
  position: relative;
}

.fintech-profile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: -70px;
  margin-bottom: 16px;
}

.fintech-profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(30, 30, 30, 1);
  object-fit: cover;
}

.fintech-profile-linkedin {
  color: #b8860b;
  padding: 8px;
  margin-top: 60px;
  transition: opacity 0.3s ease;
  display: none;
}

.fintech-profile-linkedin:hover {
  opacity: 0.8;
}

.fintech-profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.fintech-profile-name {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fintech-profile-verified {
  color: rgba(153, 153, 153, 0.6);
  width: 14px;
  height: 14px;
  display: none;
}

.fintech-profile-time {
  color: rgba(153, 153, 153, 1);
  font-weight: 400;
  font-size: 16px;
}

.fintech-profile-position {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

.fintech-profile-location {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

.fintech-profile-website {
  margin: 4px 0 0 0;
  display: none;
}

.fintech-profile-link {
  color: #5b9bd5;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.fintech-profile-link:hover {
  color: #7bb3e0;
  text-decoration: underline;
}

.fintech-profile-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  display: none;
}

.fintech-profile-btn {
  font-family: var(--font-padauk);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
}

.fintech-profile-btn-primary {
  background-color: #5b9bd5;
  color: #ffffff;
  border: 1px solid #5b9bd5;
}

.fintech-profile-btn-primary:hover {
  background-color: #4a8bc4;
}

.fintech-profile-btn-secondary {
  background-color: transparent;
  color: #5b9bd5;
  border: 1px solid #5b9bd5;
}

.fintech-profile-btn-secondary:hover {
  background-color: rgba(91, 155, 213, 0.1);
}

.fintech-profile-btn-more {
  background-color: transparent;
  color: rgba(153, 153, 153, 1);
  border: 1px solid rgba(80, 80, 80, 1);
  padding: 9px 9px;
  font-size: 13px;
  line-height: 1;
}

.fintech-profile-btn-more:hover {
  background-color: rgba(60, 60, 60, 0.5);
}

.fintech-profile-description {
  border-top: 1px solid rgba(60, 60, 60, 1);
  padding-top: 16px;
}

.fintech-profile-description p {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles for Audience Section */
@media (max-width: 1200px) {
  .fintech-audience-section {
    padding: 80px 30px;
  }
  
  .fintech-audience-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .fintech-audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fintech-audience-section {
    padding: 60px 30px;
  }
  
  .fintech-audience-title {
    font-size: 36px;
  }
  
  .fintech-audience-subtitle {
    font-size: 16px;
  }
  
  .fintech-profile-avatar {
    width: 100px;
    height: 100px;
  }
  
  .fintech-profile-top {
    margin-top: -40px;
  }
  
  .fintech-profile-linkedin {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .fintech-audience-title {
    font-size: 32px;
  }
  
  .fintech-profile-card {
    border-radius: 10px;
  }
  
  .fintech-profile-body {
    padding: 0 16px 16px 16px;
  }
  
  .fintech-profile-actions {
    flex-wrap: wrap;
  }
  
  .fintech-audience-label {
    font-size: 13px;
  }
}

/* What We Create Section */
.fintech-create-section {
  padding: 100px 0;
}

.fintech-create-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.fintech-create-label {
  color: var(--color-primary);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0;
}

.fintech-create-title {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
}

.fintech-create-subtitle {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

.fintech-create-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

/* Content Card - Similar to industry cards */
.fintech-content-card {
  background-color: var(--color-background-darkest);
  border: 2px solid rgba(238, 238, 238, 0.1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fintech-content-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(243, 77, 38, 0.05);
  transform: translateY(-4px);
}

.fintech-content-card:hover .fintech-content-icon {
  color: var(--color-primary);
  background-color: rgba(243, 77, 38, 0.15);
}

.fintech-content-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(238, 238, 238, 0.05);
  border: 2px solid rgba(238, 238, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: all 0.3s ease;
}

.fintech-content-description {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

.authentic-content-header h2 {
  text-align: center;
}

/* Responsive Styles for What We Create */
@media (max-width: 1200px) {
  .fintech-create-section {
    padding: 80px 30px;
  }
  
  .fintech-create-title {
    font-size: 42px;
  }
  
  .fintech-create-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fintech-create-section {
    padding: 60px 30px;
  }
  
  .fintech-create-title {
    font-size: 36px;
  }
  
  .fintech-create-subtitle {
    font-size: 16px;
  }
  
  .fintech-create-grid {
    grid-template-columns: 1fr;
  }
  
  .fintech-content-card {
    padding: 30px;
  }
  
  .fintech-content-icon {
    width: 50px;
    height: 50px;
  }
  
  .fintech-content-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .fintech-create-title {
    font-size: 32px;
  }
  
  .fintech-content-card {
    padding: 24px;
  }
  
  .fintech-create-label {
    font-size: 13px;
  }
}

/* Examples Section */
.fintech-examples-section {
  padding: 100px 0;
  display: none;
}

.fintech-examples-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.fintech-examples-label {
  color: var(--color-primary);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0;
}

.fintech-examples-title {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
}

.fintech-examples-subtitle {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

.fintech-examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1300px;
  width: 100%;
}

/* Example Post - LinkedIn Style */
.fintech-example-post {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.fintech-example-post:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.example-post-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.example-post-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.example-post-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.example-post-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.example-post-name {
  color: #000000;
  font-family: var(--font-padauk);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
}

.example-linkedin-badge {
  flex-shrink: 0;
}

.example-post-time {
  color: #666666;
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 12px;
}

.example-post-title {
  color: #000000;
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  margin: 0;
}

.example-post-link {
  color: #0A66C2;
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 12px;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.example-post-link:hover {
  text-decoration: underline;
}

.example-post-meta {
  color: #666666;
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 12px;
  margin: 0;
}

.example-post-actions {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.example-follow-btn {
  background-color: transparent;
  color: #0A66C2;
  font-family: var(--font-padauk);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border: 1px solid #0A66C2;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.example-follow-btn:hover {
  background-color: rgba(10, 102, 194, 0.1);
}

.example-more-btn {
  background-color: transparent;
  color: #666666;
  font-family: var(--font-padauk);
  font-weight: 600;
  font-size: 20px;
  padding: 6px 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 4px;
  line-height: 1;
}

.example-more-btn:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.example-post-content {
  color: #000000;
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.example-post-content p {
  margin: 0;
}

.example-post-reactions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.example-reaction-icons {
  display: flex;
  gap: 2px;
}

.reaction-icon {
  font-size: 14px;
  line-height: 1;
}

.example-post-stats {
  color: #666666;
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 12px;
}

.example-post-footer {
  display: flex;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.example-action-btn {
  flex: 1;
  background-color: transparent;
  color: #666666;
  font-family: var(--font-padauk);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background-color 0.3s ease;
}

.example-action-btn:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.example-action-btn svg {
  width: 18px;
  height: 18px;
}

/* Responsive Styles for Examples */
@media (max-width: 1200px) {
  .fintech-examples-section {
    padding: 80px 30px;
  }
  
  .fintech-examples-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .fintech-examples-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fintech-examples-section {
    padding: 60px 30px;
    gap: 30px;
  }
  
  .fintech-examples-title {
    font-size: 36px;
  }
  
  .fintech-examples-subtitle {
    font-size: 16px;
  }
  
  .fintech-example-post {
    padding: 16px;
  }
  
  .example-action-btn {
    font-size: 12px;
    padding: 8px 6px;
    gap: 4px;
  }
  
  .example-action-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .fintech-examples-title {
    font-size: 32px;
  }
  
  .example-post-footer {
    flex-wrap: wrap;
  }
  
  .example-action-btn {
    flex: 1 1 calc(50% - 4px);
  }
  
  .fintech-examples-label {
    font-size: 13px;
  }
}

/* Why Blazel Works for Fintech Section */

.fintech-why-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.fintech-why-label {
  color: var(--color-primary);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0;
}

.fintech-why-title {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
}

.fintech-why-paragraph {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Styles for Why Blazel */
@media (max-width: 1200px) {
  .fintech-why-section {
    padding: 80px 30px;
  }
  
  .fintech-why-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .fintech-why-section {
    padding: 60px 30px;
  }
  
  .fintech-why-title {
    font-size: 36px;
  }
  
  .fintech-why-paragraph {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .fintech-why-title {
    font-size: 32px;
  }
  
  .fintech-why-paragraph {
    font-size: 15px;
  }
  
  .fintech-why-label {
    font-size: 13px;
  }
}

/* Results Section */
.fintech-results-section {
  padding: 100px 0;
  display: none;
}

.fintech-results-box {
  background-color: rgba(20, 20, 20, 1);
  border: 1px solid rgba(60, 60, 60, 1);
  border-radius: 20px;
  padding: 60px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.fintech-results-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.fintech-results-label {
  color: var(--color-primary);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0;
}

.fintech-results-title {
  color: var(--color-text-light);
  font-family: var(--font-padauk);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  margin: 0;
}

.fintech-results-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fintech-result-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  align-items: center;
}

.fintech-result-check {
  width: 26px;
  height: 26px;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.fintech-result-text {
  color: rgba(153, 153, 153, 1);
  font-family: var(--font-padauk);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles for Results */
@media (max-width: 1200px) {
  .fintech-results-section {
    padding: 80px 30px;
  }
  
  .fintech-results-box {
    padding: 50px;
  }
  
  .fintech-results-title {
    font-size: 42px;
  }
  
  .fintech-result-text {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .fintech-results-section {
    padding: 60px 30px;
  }

  #section-hero.home-page #section-authentic-content {
    padding-bottom: 0px;
  }

  .home-page .fintech-partners-title {
    font-size: 42px;
  }
  
  #section-hero.about-hero .hero-section {
    padding-bottom: 10px;
  }
  
  .fintech-results-box {
    padding: 40px 30px;
    border-radius: 16px;
  }
  
  .fintech-results-title {
    font-size: 36px;
  }
  
  .fintech-result-text {
    font-size: 16px;
  }
  
  .fintech-results-list {
    gap: 24px;
  }
  
  .fintech-result-check {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  #section-hero {
    background-image: none;
  }
  .fintech-results-box {
    padding: 30px 20px;
  }
  #section-hero.home-page .fintech-partners-list li {
    font-size: 18px;
  }
  
  .fintech-results-title {
    font-size: 32px;
  }
  
  .fintech-result-text {
    font-size: 15px;
  }
  
  .fintech-result-item {
    gap: 16px;
  }
  
  .fintech-result-check {
    width: 28px;
    height: 28px;
  }
  
  .fintech-results-label {
    font-size: 13px;
  }
}

.logo-strip img[alt="logo"] {
  filter: brightness(0) invert(1);
}

.logo-strip .bluefield-logo {
  max-height: 46px;
}

.logo-strip .vungle-logo {
  max-height: 36px;
}

.logo-strip .stake-logo {
  max-height: 46px;
}

.logo-strip .pantomath-logo {
  max-height: 36px;
}

.fade-x {
  opacity: .7;
  filter: grayscale(100%) brightness(.9);
}

.content-step-container .fintech-partners-section {
  padding: 0px;
}

.content-step-container .fintech-partners-section .fintech-partners-list {
  list-style: auto;
  padding-left: 30px;
  gap: 5px;
}

.content-step-container .fintech-partners-section .fintech-partners-list li {
  padding: 0px;
  position: static;
}

.content-step-container .fintech-partners-section .fintech-partners-list li::before {
  display: none;
}

@media (max-width: 1920px) and (min-width: 1800px) {
  .hero-section .ai-collab-visual {
    margin-top: 300px;
  } 
}

@media (max-width: 1799px) and (min-width: 1700px) {
  .hero-section .ai-collab-visual {
    margin-top: 260px;
  } 
}

@media (max-width: 1699px) and (min-width: 1600px) {
  .hero-section .ai-collab-visual {
    margin-top: 180px;
  } 
}

@media (max-width: 1599px) and (min-width: 1500px) {
  .hero-section .ai-collab-visual {
    margin-top: 130px;
  } 
}

@media (max-width: 1499px) and (min-width: 1400px) {
  .hero-section .ai-collab-visual {
    margin-top: 80px;
  } 
}

@media (max-width: 1399px) and (min-width: 1300px) {
  .hero-section .ai-collab-visual {
    margin-top: 50px;
  } 
}

@media (max-width: 1299px) {
  .hero-section .ai-collab-visual {
    margin-top: 0px;
  } 
}