/* Marketing Page Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sec-title::after {
    content: none !important; 
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.calculator-header h2::after {
    content: none !important;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.section-description {
  font-size: 1.25rem;
  color: #505050;
  font-weight: 500;
}

/* Hero Section */
.marketing-hero-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FAFAFA 0%, #F0F4F8 100%);
}

.marketing-hero-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 120%;
  background: var(--primary-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  opacity: 0.3;
  display: none;
}

.marketing-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.marketing-hero-text {
  flex: 1;
  max-width: 600px;
}

.marketing-hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.marketing-hero-heading span {
  background: linear-gradient(135deg, var(--secondary-color), #E6B800);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.marketing-hero-description {
  font-size: 1.25rem;
  color: #505050;
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.marketing-hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.marketing-cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--secondary-color);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.marketing-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(41, 50, 65, 0.1);
}

.marketing-hero-image {
  flex: 1;
  position: relative;
}

.marketing-hero-image img {
  width: 100%;
  height: 400px;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


/* Benefits Section */
.benefits-section {
    background: white;
}

.benefit-section {
    padding: 80px 0;
}

.benefit-section.gray-bg {
    background: #f8fafc;
}

.benefit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-image {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-content {
    padding: 20px 0;
}

.benefit-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.benefit-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.benefit-cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
}

.benefit-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Reverse layout for alternating sections */
.benefit-section.reverse .benefit-container {
    grid-template-columns: 1fr 1fr;
}

.benefit-section.reverse .benefit-image {
    order: 2;
}

.benefit-section.reverse .benefit-content {
    order: 1;
}

@media (max-width: 768px) {
    .benefit-container,
    .benefit-section.reverse .benefit-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-section.reverse .benefit-image,
    .benefit-section.reverse .benefit-content {
        order: unset;
    }

    .benefit-image {
        height: 250px;
    }

    .benefit-title {
        font-size: 1.5rem;
    }

    .benefit-section {
        padding: 60px 0;
    }
}


/* New Benefits Section  */
.it-container {
    max-width: 1200px;
    margin: 0 auto;
}

.it-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.it-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #0f1c2e;
}

.it-section-description {
    font-size: 1.125rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.6;
}

.it-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.it-tool-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.it-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.it-tool-visual {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.it-tool-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.it-tool-content {
    padding: 2rem;
}

.it-tool-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f1c2e;
}

.it-tool-description {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.it-cta-container {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 100px;
}

.it-cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.it-cta-button:hover {
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .it-tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .marketing-hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 4rem;
      position: relative;
      flex-direction: column;
      z-index: 1;
    }

    .marketing-hero-heading {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: var(--primary-color);
    }

    .marketing-hero-section::before {
      display: none;
    }

    .it-cta-section {
      padding: 6rem 0;
      background: var(--primary-color);
      position: relative;
      overflow: hidden;
      width: calc(100vw - 100px) !important;
      margin: 0 auto;
      border-radius: 20px;
      margin-top: 50px;
      margin-bottom: 50px;
}
}

@media (max-width: 768px) {
    .it-tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .it-tool-card {
        margin: 30px;
    }

    .it-section-title {
        font-size: 2rem;
    }

    .it-tool-content {
        padding: 1.5rem;
    }

    .it-tool-visual {
        height: 160px;
    }
}

/* Final CTA Section */
.it-cta-section {
  padding: 6rem 0;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
  width: calc(100vw - 300px);
  margin: 0 auto;
  border-radius: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.it-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  clip-path: ellipse(60% 100% at 100% 50%);
  z-index: 0;
}

.it-cta-section .cta-content {
  position: relative;
  z-index: 1; 
  text-align: center;
  color: white;
}

.it-cta-section .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white !important;
}

.it-cta-section .cta-content p {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  color: white !important;
}

.it-cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.primary-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  background: var(--secondary-color);
  color: white;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.primary-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile  */
@media (max-width: 768px) {
  .it-cta-section::before {
    width: 80%; 
    clip-path: ellipse(80% 100% at 100% 50%);
  }

  .it-cta-section {
    padding: 6rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    width: calc(100vw - 125px);
    margin: 0 auto;
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}
  
  .it-cta-section .cta-content h2 {
    font-size: 2rem; 
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .it-cta-section .cta-content p {
    font-size: 1.1rem; 
    margin: 0 auto 2rem;
    padding: 0 1rem; 
  }
  
  .it-cta-section .cta-buttons {
    flex-direction: column; 
    align-items: center;
    gap: 1rem; 
  }
  
  .primary-cta-button {
    width: 100%;
    max-width: 280px; 
    padding: 1rem 2rem;
  }
}

@media (max-width: 576px) {
  .it-cta-section::before {
    width: 50%; 
    clip-path: ellipse(80% 100% at 100% 50%);
  }

  .it-cta-section {
    width: 100%;
  }

  .marketing-hero-section::before {
    display: none;
  }

.marketing-hero-section::before {
  display: none;
  }
  
  .it-cta-section .cta-content h2 {
    font-size: 1.75rem; 
    margin-bottom: 0.75rem;
  }
  
  .it-cta-section .cta-content p {
    font-size: 1rem; 
    margin: 0 auto 1.5rem;
    padding: 0 1.5rem;
    line-height: 1.5;
  }
  
  .it-cta-section .cta-buttons {
    gap: 0.75rem;
  }
  
  .primary-cta-button {
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    max-width: 260px;
  }
}

@media (max-width: 400px) {
  .it-cta-section .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .it-cta-section .cta-content p {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
  
  .primary-cta-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    max-width: 240px;
  }
}
