
:root {
    --primary-color: #0d2d4d;
    --secondary-color: #0D223C;
    --accent-color: #f97316;
    --light-bg: #f8fafc;
    --text-color: #1e293b;
    --light-text: #0D223C;
    --white: #ffffff;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    color: var(--text-color);
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .main-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo {
    height: 40px;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
  }

  .primary-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .primary-button:hover {
    background-color: #2563eb;
  }
  .primary-button2 {
    background-color: #0D223C !important;
    color: var(--white) !important;
    padding: 10px 16px !important;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .primary-button:hover {
    background-color: #2563eb;
  }
  .arrow {
    font-size: 20px;
    margin-left: 8px;
  }
  
  .hero-section {
    background-color: var(--white);
    padding: 60px 0;
  }
  
  .hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .hero-content {
    flex: 1;
  }
  
  .hero-image-container {
    flex: 1;
  }
  
  .hero-image {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-text {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
  }
  
  .highlight {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .cta-group {
    margin: auto;
  }
  
  /* Barometer section */
  .barometer-section {
    padding: 60px 0;
  }
  .barometer-section .section-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 75%;
    line-height: 1.2;
  }
  
  .barometer-section .section-text {
    font-size: 1.4rem;
    color: var(--light-text);
    width: 75%;
    margin-bottom: 30px;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .section-text {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
  }
  .text-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .text-link:hover {
    color: #2563eb;
    text-decoration: underline;
  }
  
  .calculator-preview-section {
    padding: 60px 0;
    background-color: var(--white);
  }
  
  .calculator-preview-content {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  .calculator-image-container {
    flex: 1;
  }
  
  .calculator-image {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .calculator-benefits {
    flex: 1;
  }
  
  .benefits-list {
    list-style-type: none;
    margin-top: 20px;
  }
  
  
  .scenario-section {
    background-color: #f4f1f7;
    padding: 60px 0;
  }
  
  .scenario-grid {
    margin-top: 40px;
  }
  
  .scenario-card {
    box-shadow: 10px 10px 22px 2px rgba(0,0,0,0.23) !important;
    -webkit-box-shadow: 10px 10px 22px 2px rgba(0,0,0,0.23) !important;
    -moz-box-shadow: 10px 10px 22px 2px rgba(0,0,0,0.23) !important;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
  }
  
  .scenario-card:hover {
    transform: translateY(-5px);
  }
  
  .scenario-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
  }
  
  .scenario-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
  }

.how-it-works-section {
  padding: 60px 0;
  background-color: var(--white);
}

.how-it-works-container {

  width: 100%; 
  padding: 0; 
}

.how-it-works-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: var(--container-size); 
  margin: 0 auto; 
  position: relative;
}

.how-it-works-left {
  flex: 1;
  text-align: left;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 30px;
  line-height: 4.2;
}

.step-navigation {
  display: flex;
  gap: 20px;
}

.step-button {
  background-color: #D3BBF7;
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.step-button:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.steps-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%); 
  margin-left: calc(-50vw + var(--container-size) / 2); 
  margin-right: calc(-50vw + var(--container-size) / 2);
}

.step {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  width: 100%;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.step.active {
  transform: translateX(0);
  opacity: 1;
}

.step.next {
  margin-left: 25px;
  transform: translateX(70%);
  opacity: 0.3;
}

.step-number {
  font-size: 15rem;
  font-weight: 700;
  background: linear-gradient(180deg, #0D223C 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--light-text);
  max-width: 400px;
  text-align: justify;
}


@media (max-width: 992px) {
  .how-it-works-flex {
      flex-direction: column;
      align-items: flex-start;
  }

  .how-it-works-left {
      text-align: center;
  }

  .step-navigation {
      justify-content: center;
  }

  .steps-container {
      width: 100%;
      left: 0;
      transform: none;
      margin-left: 0;
      margin-right: 0;
      height: 240px;
  }

  .step-number {
      font-size: 8rem;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
      padding: 80px 0;
  }

  .step-number {
      font-size: 6rem;
  }

  .step-title {
      font-size: 1.1rem;
  }

  .steps-container {
      height: 180px;
  }

  .step-button {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
  }
}
  
  .why-choose-section {
    background-color: var(--light-bg);
    padding: 60px 0;
  }
  
  .why-choose-flex {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  .why-choose-content {
    flex: 1;
  }

  .cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    --container-size-xs: calc(33.75rem * var(--mantine-scale));
    --container-size-sm: calc(45rem * var(--mantine-scale));
    --container-size-md: calc(60rem * var(--mantine-scale));
    --container-size-lg: calc(71.25rem * var(--mantine-scale));
    --container-size-xl: calc(82.5rem * var(--mantine-scale));
    --container-size: var(--container-size-md);
    padding-inline: var(--mantine-spacing-md);
    margin-inline: auto;
}
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--white);
  }
  
  .main-footer {
    background-color: #0D223C;
    color: var(--white);
    padding: 60px 0 30px;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-logo-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-logo {
    height: 40px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-link img {
    width: 54px;
    height: 54px;
    transition: opacity 0.3s;
  }
  
  .social-link:hover img {
    opacity: 0.8;
  }
  
  .footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
  }
  
  .footer-menu {
    list-style-type: none;
  }
  
  .footer-menu li {
    margin-bottom: 10px;
  }
  
  .footer-link {
    color: #a3b8cc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-link:hover {
    color: var(--white);
    text-decoration: underline;
  }
  
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .copyright {
    color: #a3b8cc;
    font-size: 0.9rem;
  }
  
  @media (max-width: 992px) {
    .hero-container, 
    .calculator-preview-content,
    .why-choose-flex {
      flex-direction: column;
    }
    
    
    .hero-image-container {
      order: -1;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .calculator-image-container {
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      gap: 15px;
    }
    
    .nav-links {
      margin: 15px 0;
    }
    
    .scenario-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }

#app-container.landing-page-active .mantine-AppShell-header {
  display: none !important;
  position: fixed !important;
}


body #app-container.landing-page-active .mantine-AppShell-header {
  display: none !important;
}
  .m_7485cace.barometer-container.mantine-Container-root{
    width: 60%;
  }
  .landing-page .mantine-Button-root:not([data-variant]){
    background-color: #D3BBF7;
    color: #0D223C;
    width: 200px;
    height: 60px;
    border-radius: 100px;
  }
  .landing-page .mantine-Button-label.m_811560b9{
  margin: auto;
  gap: 71px;
}
.landing-page .mantine-Button-inner.m_80f1301b{
  margin: auto;
}
.landing-page .nav-links .nav-link:hover {
  background-color: #D3BBF7 !important;
}

body[data-pathname="/"] .feramat-toolbar,
body[data-pathname="/"] #toolbar-container {
    display: none !important;
}

.bullet-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px; 
  vertical-align: middle; 
}

.benefit-item {
  display: flex;
  align-items: center; 
  margin-bottom: 10px; 
}

.bullet {
  display: none; 
}
#prev-step{
  width: 60px;
}
#next-step{
  width: 60px;
}
@media (max-width: 1500px) {
  .how-it-works-container {
    width: 50%;
  }
  .step-number{
    font-size: 10rem;
  }
  .step-title{
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .how-it-works-container {
    width: 70%;
  }
  .steps-container{
    left:30%;
  }
  .step-number{
    font-size: 10rem;
  }
  .step-title{
    font-size: 1rem;
  }
}
.how-it-works-section{
  overflow: hidden;
}

.desktop-only { display: block; }
.mobile-only  { display: none; }

@media (max-width: 1200px) {
  .desktop-only { display: none !important; }
  .mobile-only  { display: block !important; }
}

.how-it-works-mobile .simple-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 60px;
}

.how-it-works-mobile .step-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.how-it-works-mobile .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #e5e7eb;
}

.how-it-works-mobile .step-text {
  font-size: 15px;
  line-height: 1.45;
}
