/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  background-color:#121212;
  color: #f0f0f0;
  overflow-x: clip;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

section {
  width: 100%;
  box-sizing: border-box;
}

.section-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: center;
}

/* NAVBAR CONTAINER */
.navbar {
  width: 100%;
  height: auto;
  padding: 30px 60px 0 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  background: transparent;
}

/* LOGO */
.logo img,
.logo {
  height: 220px;
  width: auto;
  display: block;
  transition: height 0.3s, width 0.3s;
}

/* NAV MENU */
.nav-menu {
  display: flex;
  margin-right: 30px;
  gap: 40px;
  list-style: none;
  align-items: center;
  position: relative;
}

.nav-menu-item a {
  text-decoration: none;
  color: #f0f0f0;
  font-weight: 600;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
  padding: 8px 0;
  position: relative;
  text-shadow: #000000 0px 0px 10px, #000000 0px 0px 20px, #000000 0px 0px 30px;
}

.nav-menu-item a:hover,
.nav-menu-item a:focus {
  color: #91f9ba;
}

/* Hamburger Menu */
.hamburger {
  display: none;
}

.hamburger-bar {
  display: none;
}

.close-menu {
  display: none;
}

/* Open state for hamburger */
.hamburger.open .hamburger-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburger-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* HERO SECTION */
.hero-section {
  height: calc(100vh - 250px);
  position: relative;
  overflow: hidden;
  background: transparent;
  padding-top: 100px;
  box-sizing: border-box;
  z-index: 2;
}

.hero-content {
  text-align: center;
  height: calc(50vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.hero-content h1 {
  font-size: 70px !important;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: #000000 0px 0px 10px, #000000 0px 0px 20px, #000000 0px 0px 30px;
}

.hero-light {
  color: #fff;
  font-weight: 400;
}

.hero-accent {
  color: #91f9ba;
  font-weight: 800;
}

.hero-content p {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 500;
  text-shadow: #000000 0px 0px 10px, #000000 0px 0px 20px, #000000 0px 0px 30px;
}

.hero-content p .hero-accent {
  color: #91f9ba;
  font-weight: 700;
  font-size: 40px !important;
}


/* VALUE PROP SECTION */
.value-cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: #91f9ba;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 700px;
  margin: 20px auto;
  font-size: 1.4rem;
  --edge-size: 12px;
  clip-path: 
    polygon(
      var(--edge-size) 0,
      100% 0,
      100% calc(100% - var(--edge-size)),
      calc(100% - var(--edge-size)) 100%,
      0 100%,
      0% var(--edge-size)
  );
}

.value-cta:hover {
  background-color: #00dab3;
}

/* BACKGROUND VIDEO */
.background-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CALCULATOR SECTION === */
  .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  width: 80%;
  max-width: 850px;
  height: 70%;
  margin: 0 auto;
  z-index: 5;
  padding-bottom: 20px;
}

.calculator-section {
  position: relative;
  padding: 80px 20px 0px 20px;
  z-index: 5;
  background: #121212;
}

.calculator-accent {
  color: #91f9ba;
  font-weight: 600;
}

.calculator-note {
  font-size: 1.75rem;
  color: #d0d0d0;
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 600px) {
  .container {
    grid-template-rows: auto;
    grid-template-rows: auto;
    gap: 10px;
    z-index: 5;
  }

    .box {
      padding: 10px;
    }
            
    .box label {
      font-size: 1em;               
      margin-bottom: 10px;           
    }
            
    .box span {               
      font-size: 1.5em;               
      margin-top: 5px;              
      color: #fff;          
    }
            
    .result {                
      font-size: 1em;            
    }
            
    .result span {               
      font-size: 2em;           
    }
            
    input[type=range] {               
      height: 5px;          
    }
            
    input[type=range]::-webkit-slider-thumb {              
      height: 20px;               
      width: 20px;           
    }
            
    input[type=range]::-moz-range-thumb {              
      height: 20px;              
      width: 20px;          
    }
            
    input[type=range]::-ms-thumb {                
      height: 20px;               
      width: 20px;           
    }       
  }

  .box {
      border-radius: 20px;
      padding: 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
  }
        
  .newLeadsBox {
    background: linear-gradient(to top left, #2c2c2e 0%, #000 100%);
  }

  .upsellLeadsBox {
    background: linear-gradient(to top right, #2c2c2e 0%, #000 100%);
  }

  .agedLeadsBox {
    background: linear-gradient(to bottom left, #2c2c2e 0%, #000 100%);
  }

  .revenueBox {
    background: linear-gradient(to bottom right, #2c2c2e 0%, #000 100%);
  }
        
  .box label {      
    font: inherit;
    font-size: 24px;        
    margin-bottom: 20px;
    font-weight: 100;
    max-width: 400px;
  }
        
  .box span {    
    font-size: 2em; 
    font-family: Arial, sans-serif;    
    font-weight: bold;    
    color: #fff;  
    margin-top: 10px; 
  }
       
  .result { 
    font-size: 1.5em; 
    font-weight: bold; 
    font-family: 'Raleway', sans-serif; 
    color: #fff; 
    text-align: center;
  }
       
  .result span {   
    display: block;   
    font-size: 2.5em;    
    color: #fff; 
    font-family: Arial, sans-serif;  
    font-weight: bold;    
    margin-top: 10px; 
  } 
  .revenueBox .result span {  
    font-size: 2.5em;
    color: #91f9ba
  }

  @media (max-width: 600px) {    
    .revenueBox .result span {    
      font-size: 2em;  
    }    
  }
       
  input[type=range] {    
    width: 100%;   
    -webkit-appearance: none;   
    background: white;   
    height: 8px; 
    border-radius: 8px;
  }
        
  input[type=range]::-webkit-slider-runnable-track {        
    width: 100%;         
    height: 8.4px;        
    cursor: pointer;      
    background: radial-gradient(#94fdbe, #121212);       
    border-radius: 0px;   
  }
       
  input[type=range]::-webkit-slider-thumb {     
    -webkit-appearance: none;    
    appearance: none;      
    margin-top: -10px;   
    height: 30px;       
    width: 30px;      
    background: black;      
    border: 3px solid white;     
    border-radius: 50%;      
    cursor: pointer;    
  }
        
  input[type=range]::-moz-range-track {       
    width: 100%;     
    height: 8.4px;      
    cursor: pointer;       
    background: white;      
    border-radius: 8px;     
  }
       
  input[type=range]::-moz-range-thumb {   
    height: 30px;   
    width: 30px;     
    background: black;    
    border: 3px solid white;    
    border-radius: 50%;    
    cursor: pointer;   
  }
       
  input[type=range]::-ms-track {    
    width: 100%;    
    height: 8.4px;    
    cursor: pointer;    
    background: transparent;      
    border-color: transparent;    
    color: transparent;  
  }
       
  input[type=range]::-ms-fill-lower {     
    background: white;
    border-radius: 8px;
  }
       
  input[type=range]::-ms-fill-upper {
    background: white;
    border-radius: 8px;   
  }
        
  input[type=range]::-ms-thumb {       
    height: 30px;       
    width: 30px;       
    background: black;        
    border: 3px solid white;         
    border-radius: 50%; 
    cursor: pointer;
  }

/* === SOLUTION SECTION === */
.solution-section {
  background-color: #121212;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.solution-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.solution-accent {
  color: #91f9ba;
  font-weight: 600;
}

.solutions-image-wrapper {
  margin: 10px auto 0 auto;
  padding: 10px 0px 0px 0px;
  background-color: var(--transparent);
  border-color: var(--black);
  border-width: 2px;
  border-style: solid transparent;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solutions-image-wrapper img {
  max-width: 850px;
  width: 100%;
  height: auto;
  display: block;
}

.solution-content p {
  font-size: 1.75rem;
  color: #d0d0d0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}

.solution-list {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

/* === INDUSTRIES WE HELP SECTION === */
.industries-section {
  background-color: #121212;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.industries-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.industries-accent {
  color: #91f9ba;
  font-weight: 600;
}

.industries-image-wrapper {
  margin: 10px auto 0 auto;
  padding: 10px 0px 0px 0px;
  background-color: var(--transparent);
  border-color: var(--black);
  border-width: 2px;
  border-style: solid transparent;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.industries-image-wrapper img {
  max-width: 1200px;
  width: 100%;
  height: auto;
  display: block;
}


.industries-content p {
  font-size: 1.75rem;
  color: #d0d0d0;
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 500;
}

.industries-list {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

/* === LEAD CAPTURE SECTION === */
.lead-capture-section {
  background-color: #121212;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 4;
}

.lead-capture-content {
  max-width: 800px;
  margin: 0 auto;
}

.subheadline {
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 20px;
  text-shadow: #000000 0px 0px 10px, #000000 0px 0px 20px, #000000 0px 0px 30px;
}

.lead-accent {
  color: #91f9ba;
  font-weight: 600;
}

.lead-text {
  font-size: 1.72rem;
  color: #d0d0d0;
  margin-bottom: 30px;
  font-weight: 500;
}

.form-cta:hover {
  background-color: #00dab3;
  transform: scale(1.1);
}

/* === PROBLEMS SECTION === */
.problems-section {
  background-color: #121212;
  padding-top: 40px;
  padding-bottom: 60px;
  text-align: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.problems-image-wrapper {
  margin: 10px auto 0 auto;
  padding: 20px 0px 0px 0px;
  background-color: var(--transparent);
  border-color: var(--black);
  border-width: 2px;
  border-style: solid transparent;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.problems-image-wrapper img {
  max-width: 850px;
  width: 100%;
  height: auto;
  display: block;
}

.problem-accent {
  color: #91f9ba;
  font-weight: 600;
}

.problem-content p {
  font-size: 1.75rem;
  color: #d0d0d0;
  margin-top: 15px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(#60a6aa, #5F81FF);
  color: #000000;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  border-radius: 15px;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.cta-buttons {
  margin-top: 30px;
}

.cta-button-one {
  background-color: #94fdbe;
  color: #000;
  padding: 12px 24px;
  border: none;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: #000000 0px 0px 10px, #000000 0px 0px 20px, #000000 0px 0px 30px;
  --edge-size: 12px;
  clip-path: 
    polygon(
      var(--edge-size) 0,
      100% 0,
      100% calc(100% - var(--edge-size)),
      calc(100% - var(--edge-size)) 100%,
      0 100%,
      0% var(--edge-size)
  );
}

.cta-button-one:hover {
  background-color: #00dab3;
  transform: scale(1.05);
}

.cta-button-two {
  background-color: #94fdbe;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  margin: 10px auto 0 auto;
  font-weight: bold;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: inline-block;
  --edge-size: 12px;
  clip-path: 
    polygon(
      var(--edge-size) 0,
      100% 0,
      100% calc(100% - var(--edge-size)),
      calc(100% - var(--edge-size)) 100%,
      0 100%,
      0% var(--edge-size)
  );
}

.cta-button-two:hover {
  background-color: #00dab3;
  transform: scale(1.05);
}

/* === FAQ SECTION === */
.faq-section {
  background-color: #121212;
  padding: 80px 20px;
  text-align: center;
  z-index: 2;
}

.faq-accent {
  color: #94fdbe;
  font-weight: 600;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item summary {
  font-size: 1.5rem;
  color: #d0d0d0;
  font-weight: 600;
  padding: 10px;
  cursor: pointer;
  list-style: none;
  text-shadow: #000000 0px 0px 10px, #000000 0px 0px 20px, #000000 0px 0px 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '▶';
  font-size: 1.2rem;
  color: #94fdbe;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(90deg);
}

.faq-item p {
  font-size: 1.2rem;
  color: #d0d0d0;
  padding: 10px 20px;
  background-color: #181818;
  border-radius: 5px;
  margin-top: 5px;
}

/* === FINAL CTA SECTION === */
.final-cta-section {
  background: linear-gradient(#60a6aa, #5F81FF);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  margin: 0 auto 0 auto;
  bottom: 0;
  width: 100%;
  z-index: 2;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 700;
}

.final-cta-content .value-cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: #00ffc3;
  color: #000;
  border-radius: 24px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 300px;
  font-size: 1.2rem;
  box-shadow: #000000 0px 0px 10px, #000000 0px 0px 20px, #000000 0px 0px 30px;
}

.final-cta-content .value-cta:hover {
  background-color: #00dab3;
  transform: scale(1.1);
}

/* === CONTACT INFO SECTION === */
.contact-info {
  background-color: #121212;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 2;
  position: relative;
}

.contact-logo img {
  height: 100px;
  width: auto;
  display: block;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details p {
  font-size: 1.2rem;
  color: #d0d0d0;
  font-weight: 500;
  margin: 0;
}

.contact-icon {
  margin-right: 10px;
  color: #94fdbe;
  -webkit-text-fill-color: #94fdbe;
  font-size: 1.2rem;
}

/* FOOTER */
footer {
  margin-top: auto;
  margin-bottom: 0 auto;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: #121212;
  z-index: 2;
  position: relative;
  color: #94fdbe;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #94fdbe;
}

/* == Slanted Borders == */
.bgCover-slanted-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('../assets/slantedbordertop.png');
  background-attachment: fixed;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 83%;
  opacity: 0.4;
  z-index: -1;
}

.bgCover-slanted-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background-image: url('../assets/slantedborderbottom.png');
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.4;
  z-index: -1;
}

/* === BUTTON CLICKBAIT === */
@keyframes pulse-grow {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.pulse-button {
  animation: pulse-grow 4s infinite ease-in-out;
  }