/* 1. RESET & BASE */

/* (1) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
/* (2) */
  html {
    scroll-behavior: smooth;
  }

/* (3) */
  body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #fff;
    color: #000;
    padding-top: 100px; /* for fixed nav */
  }
  
/* (4) */
/* 2. GLOBAL ELEMENTS */
  .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }
  
/* (5) */
  a {
    color: inherit;
    text-decoration: none;
  }
  
/* (6) */
  ul {
    list-style: none;
  }
  
/* 3. TYPOGRAPHY */
  
/* (7) */
  h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.5;
  }
  
/* (8) */
  h1 {
    font-size: 4.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* (9) */
  h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }


  @media (max-width: 640px) {
  h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

  
  /* (10) */
  h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  /* (11) */
  h4 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  /* (12) */
  p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* (13) */
  p em {
    font-style: italic;
  }
  
  /* (14) */
.highlight {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #000;
  z-index: 1;
  line-height: 1.2;
}

.highlight::before {
  content: '';
  position: absolute;
  inset: 0 0 0 0; /* shorthand for top, right, bottom, left */
  background-color: #00b6f8;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlight-swipe 1.1s ease-out 0.4s forwards;
  border-radius: 4px;
}

@keyframes highlight-swipe {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}


  
  /* 4. BUTTONS */
  /* (15) */
  .button-primary,
  .button-secondary,
  .button-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  /* (16) */
  .button-primary {
    background: #000;
    color: #fff;
    border: none;
    margin-top: 1rem;
    margin: 0 auto;
  }
  
  /* (17) */
  .button-primary:hover {
    background: #222;
  }
  
  /* (18) */
  .button-secondary {
    background: #f2f2f2;
    border: 1px solid #000;
    color: #000;
  }

  /* (19) */ 
  .button-secondary:hover {
    background: #e6e6e6;
  }
  
  /* (20) */
  .button-outline {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.2;
    border: 2px solid #00b6f8;
    background: transparent;
    color: #000;
    border-radius: 999px;
  }
  
  /* (21) */
  .button-outline:hover {
    background-color: #00b6f8;
  }
  
  /* 5. HEADER */
  /* (22) */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
  }
  
  /* (23) */
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  
    /* (24) 
  .logo {
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  
.logo a {
  text-decoration: none;
  color: inherit;
  border-bottom: 4px solid #000;
  padding-bottom: 4px;
  display: inline-block;
}
  */

  .logo a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}

.logo-text {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.5px;
}

.logo-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  background-color: #000;
  width: 0%;
  transition: width 0.4s ease;
}

/* Hover effect */
.logo a:hover .logo-text::after {
  width: 100%;
}

.arrow{
    font-weight: 800;
  font-size: 2rem;color: #00b6f8}


/* (25) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  width: 30px;
  height: 24px;
  position: relative;
}

/* NEW: (25.1) Hamburger bar style */
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  margin: 5px auto;
  transition: all 0.3s ease;
}

/* NEW: (25.2) Hamburger transforms to X */
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

  
    /* (26) */
  .main-nav {
    display: flex;
    align-items: center;
  }
  
    /* (27) */
  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }
  
    /* (28) */
  .main-nav li {
    display: flex;
    align-items: center;
  }
  
    /* (29) */
  .main-nav a {
    font-weight: 500;
    font-size: 1.26rem;
    letter-spacing: 0.015em;
    line-height: 1.6;
  }

    /* (30) */  
  .main-nav a:not(.button-outline):hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: #000;
  }
  
      /* (31) */  
  @media (prefers-reduced-motion: no-preference) {
    .main-nav ul {
      transition: all 0.3s ease;
    }
  }
  
      /* (32) */  
  @media (max-width: 768px) {
    .site-header .container {
      position: relative;
      justify-content: center;
    }
  
      /* (33) */  
    .logo {
      flex-grow: 1;
      text-align: center;
    }
  
        /* (34) */  
    .nav-toggle {
      display: block;
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
    }
  
/* (35) */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

  
/* (36) */
.main-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

  
/* (37) */
.main-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* (38) */
.main-nav ul li a {
  font-size: 1.5rem;
  padding: 0.75rem 1rem;
  display: inline-block;
  transition: color 0.3s ease, background-color 0.3s ease;
}

  

        /* (39) */  
    body.nav-open {
      overflow: hidden;
    }
  }
  
  
  /* 6. HERO SECTION */
      /* (40) */  

  .hero{
    background-color: #f1f1f1;
    background-image: url("https://www.transparenttextures.com/patterns/axiom-pattern.png");
    /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
  }
  .hero {
    text-align: center;
    padding: 2.5rem 1rem 2.5rem;
  }
  
      /* (41) */  
  .hero p {
    font-size: 1.6rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
  }
  
 /* 7. PPC Trio Section */
 /* (42) */ 
 .value-trio {
    background-color: #f9f9f9;
    padding: 5rem 1rem;
  }

   /* (43) */ 
 .section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 3rem;
  }

   /* (44) */ 

.brand-accent {
  position: relative;
  display: inline-block;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
  z-index: 1;
}

.brand-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.4em;
  background-color: #00b6f8;
  z-index: -1;
  border-radius: 2px;
}

.brand-accent.scroll-animate {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease-out;
}

.brand-accent.scroll-animate.animate {
  opacity: 1;
  transform: translateX(0);
}

  
    /* (45) */ 
  .trio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    text-align: left;
  }
  
    /* (46) */ 
  .trio-grid h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  
    /* (47) */ 
  .trio-grid p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #333;
    text-align: left;
  }
  
  
  /* 8. WHY SECTION */
    /* (48) */ 
 
  .why-love-us{
  background-color: #f1f1f1;
background-image: url("https://www.transparenttextures.com/patterns/axiom-pattern.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
  }
    .why-love-us h2 {
    text-align: center;
    margin-bottom: 2rem;
  }

  @media (max-width: 640px) {
  .why-love-us h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

  
  /* (49) */
  .why-love-us p {
    text-align: left;
  }
   
.features-grid div{
  border: 1px solid #f1f1f1;
  padding: 25px;
}

  
    /* (50) */ 
  .features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  /* 9. MONEY BACK SECTION */
    /* (51) */ 
  .money-back {
    background: #f9f9f9;
    padding: 3rem 1rem;
    text-align: center;
  }
  
    /* (52) */ 
  .money-back ul {
    padding-left: 1.25rem;
    text-align: left;
    max-width: 500px;
    margin: 1.5rem auto;
  }
  
    /* (53) */ 
  .money-back li {
    margin-bottom: 0.5rem;
  }
  
  /* 10. PAIN POINTS */
    /* (54) */ 
  .pain-points {
    background: #fff;
    text-align: center;
    padding: 3rem 1rem;
  }
  
    /* (55) */ 
  .pain-points ul {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
    font-weight: 600;
  }
  
  /* 11. CTA */
  /* (56) */ 
  .cta {
    background: #f4f4f4;
    text-align: center;
    padding: 3rem 1rem;
  }
  
    /* (57) */ 
  .cta h2 {
    margin-bottom: 1rem;
  }
  
/* ============================== */
/* Contact Form Section (2-Column) */
/* ============================== */

.contact {
  background-color: #f1f1f1;
  padding: 4rem 1rem;
}

.contact .container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

/* Left Column */
.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  text-align: left;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.contact-info p {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.contact-info strong {
  display: block;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.25rem;
}

/* Right Column (Form) */
.contact-form {
  flex: 1 1 520px;
  display: grid;
  gap: 1.25rem;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.25rem;
}

/* Labels */
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

/* Inputs & Fields */
.contact input,
.contact select,
.contact textarea {
  font-size: 1rem;
  padding: 0.25rem 0;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  outline: none;
  font-family: inherit;
  color: #000;
}

/* Focus State */
.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-bottom: 2px solid #00b6f8;
}

/* Select Field Spacing */
.contact select {
  padding-right: 1rem;
}

/* Textarea */
.contact textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.contact .button-primary {
  max-width: 240px;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  text-align: center;
}


.button-primary {
  background-color: #000;
  color: #fff;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.button-primary:hover {
  background-color: #333;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .name-fields {
    flex-direction: column;
  }

  .button-primary {
    width: 100%;
    text-align: center;
  }
}

  
  /* 13. FOOTER */

  /* ============================== */
/* Footer Layout */
/* ============================== */
.site-footer {
  background-color: #111111;
background-image: url("https://www.transparenttextures.com/patterns/axiom-pattern.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
  
  padding: 3rem 1rem;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto 2rem;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  color: #fff;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-column a {
  color: inherit;
  text-decoration: none;
  color: #fff;
}

.footer-column a:hover {
  text-decoration: underline;
}

.site-footer p{
  color: #fff;
  text-align: left;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form input[type="email"] {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}

.newsletter-form button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #333;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

    /* (63) */   
  /* 14. RESPONSIVE */
  @media (max-width: 640px) {
    h1 {
      font-size: 2.3rem;
    }
  
    /* (64) */   
    .main-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
  
        /* (65) */   
    .hero {
      padding: 3rem 1rem;
    }


        /* (66) */   
  
    .button-primary,
    .button-secondary,
    .button-outline {
      width: 100%;
    }
  }
  
.material-symbols-outlined {
  color: #dadada; 
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


.feature-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  transition: all 0.2s ease;
  border-radius: 6px; /* Optional */
}

.feature-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
  border-color: #d0d0d0; /* Slight darken for lift */
}


/* ============================== */
/* 30-Day Guarantee + FAQ Section */
/* ============================== */

/* (1) */
.guarantee-faq {
  background: #f9f9f9;
  padding: 5rem 1rem;
}

/* (2) */
.guarantee-faq__container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto;
  justify-content: space-between;
}

/* (3) */
.guarantee {
  flex: 1 1 460px;
}

/* (4) */
.guarantee h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-align: center;
}

/* (5) */
.guarantee h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: left;
}

/* (6) */
.guarantee ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* (8) */
.guarantee p {
  margin-bottom: 2rem;
  font-size: 1rem;
  text-align: left;
}

/* (9) */
.guarantee .button-primary {
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

/* (10) */
.faq {
  flex: 1 1 480px;
}

/* (11) */
.faq-item {
  border-top: 1px solid #ccc;
  padding: 1rem 0;
}

/* (12) */
.faq-item:last-child {
  border-bottom: 1px solid #ccc;
}

/* (13) */
.faq-question {
  all: unset;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  position: relative;
}

/* (14) */
.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  position: absolute;
  right: 0;
  transition: transform 0.2s ease;
}

/* (15) */
.faq-item.open .faq-question::after {
  content: "–";
}

/* (16) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.6;
  padding-right: 1.5rem;
}

.faq-answer p{
text-align: left;  
}

/* (17) */
.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.75rem;
}

/* ============================== */
/* Call to Action Section (CTA)  */
/* ============================== */

/* (1) */
.cta {
  background-color: #fff;
  padding: 8rem 2rem;
  text-align: center;
}

/* (2) */
.cta-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* (3) */
.cta-text-left h2 {
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

/* (4) */
.cta-text-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* (5) */
.cta-text-right p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

/* (6) */
.cta-subtext {
  font-size: 0.95rem;
  color: #000;
  opacity: 0.75;
  margin: 0;
}

/* (7) */
.cta .button-primary {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
}

/* ============================== */
/* Pricing Page  */
/* ============================== */

/*0*/
.pricing_headline{
font-size: 5rem;  
margin-bottom: 50px;
}

/* [1] Overall Section Styles */
.pricing-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f1f1f1;
  background-image: url("https://www.transparenttextures.com/patterns/axiom-pattern.png");
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

/* [2] Section Headline */
.pricing-section .headline {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 60px;
}

/* [3] Grid Container for Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* [4] Individual Card Styles */
.card {
  background: #f7f7f7;
  border: 1px solid #dadada;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* [4.1] Gray top bar inside card */
.card-top {
  background-color: rgba(0, 0, 0, 0.05);
  height: 40px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* [4.2] Position relative to contain absolute card-top */

/* Pricing container uses flex to align everything vertically */
.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 25px;
}


/* [5] Card Title */
/* Ensure equal spacing for title + price */
.card h2 {
  min-height: 2.5rem;
  margin-bottom: 10px;
  font-size: 2rem;
}

/* Lock price height */
.card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #00b6f8;
  margin: 10px 0 4px;
  min-height: 2.5rem; /* Locks the block height */
}

/* Always include a caption block with the same height */
.price_caption {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 16px;
  min-height: 1.5rem;
}

/* [7] Small "/m" or similar span inside price */
.card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: #444;
}

/* Lock description height */
.card .description {
  font-size: 0.95rem;
  margin-bottom: 20px;
  min-height: 3.5rem;
}


/* [9] Feature List */
/* Keep UL from shifting things */
.card ul {
  flex-grow: 1;
  margin-bottom: 20px;
  text-align: left;
}

/* [10] Individual List Items */
.card li {
  margin-bottom: 10px;
  text-align: left;
}

/* [11] Call-to-Action Button */
.card button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
  margin: auto;
}

/* [12] Button Hover State */
.card button:hover {
  background-color: #333;
}

/* [13] Responsive Stack: Tablet */
@media (max-width: 960px) {
  .pricing-card {
    flex: 1 1 45%;
  }
}

/* [14] Responsive Stack: Mobile */
@media (max-width: 640px) {
  .pricing-card {
    flex: 1 1 100%;
  }
}

.card li::before {
  content: "✔";
  color: #00b6f8;
  margin-right: 8px;
}

.divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 12px 0;
  width: 100%;
}

.name-fields {
  display: flex;
  gap: 1rem;
}

.name-fields .half-width {
  flex: 1;
}

/*WHY PPC SECTION*/
.why-ppc {
  background-color: #ffffff;
  padding: 5rem 1rem;
}

.why-ppc .container {
  max-width: 1080px;
  margin: 0 auto;
}

.why-ppc h2 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.why-ppc p{
  text-align: left;
}

.grid-two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.grid-two-columns > div {
  flex: 1 1 480px;
}
/*
.why-ppc ul {
  padding-left: 1.5rem;
}
*/
.why-ppc li {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.why-ppc li::marker {
  font-size: 1.4rem;
}

.why-ppc strong {
  font-weight: 700;
}

.why-ppc img {
  width: 500px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ============================== */
/* How We Roll Section */
/* ============================== 

.how-we-roll {
  background-color: #f1f1f1;
  padding: 5rem 1rem;
}

.how-we-roll .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.how-we-roll h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.how-we-roll p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.how-we-roll .bold {
  font-weight: 700;
}

.how-we-roll .small {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.how-we-roll ol {
  list-style: decimal inside;
  text-align: left;
  margin: 2rem auto 0;
  max-width: 540px;
  padding-left: 0;
}

.how-we-roll ol li {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.how-we-roll ol li strong {
  font-weight: 700;
}

*/

/* HOW WE ROLL SECTION */
.how-we-roll {
  padding: 5rem 1rem;
  text-align: center;
    background-color: #f1f1f1;
  background-image: url("https://www.transparenttextures.com/patterns/axiom-pattern.png");
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

.how-we-roll h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.how-we-roll .bold.small {
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.how-we-roll p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.step-card p{
  text-align: left;
}

/* GRID LAYOUT FOR STEPS */
.process-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2,1fr);
  margin-top: 3rem;
}

/* Stack into 1 column on smaller screens */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* INDIVIDUAL STEP CARDS */
.step-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.25s ease;
  text-align: left;
}

.step-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

/* HOVER EFFECT */
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: #d0d0d0;
}

.arrow-down{
font-weight: 800;
font-size: 2rem;
color: #00b6f8;
transform: rotate(90deg);
}

.center h2{
text-align: center;
margin-top: 50px;
margin-bottom: 0px;
}

.audit-process {
  background-color: #fff;
  padding: 1rem 1rem;
}

.audit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.audit-steps {
  flex: 1 1 500px;
  font-size: 1rem;
  text-align: left;
}

.audit-steps p{
  text-align: left;
}

.audit-steps h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}

.audit-steps a {
  color: #000;
  text-decoration: underline;
  font-weight: 700;
}

.audit-steps ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.audit-steps ul li {
  margin-bottom: 0.5rem;
}

.audit-form-placeholder {
  flex: 1 1 480px;
  background-color: #f9f9f9;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-align: center;
  align-self: start;
}

.audit-form-placeholder h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.audit-form-placeholder .form-note {
  font-size: 1.125rem;
  opacity: 0.75;
}

/* Responsive: Stack layout on small screens */
@media (max-width: 768px) {
  .audit-grid {
    flex-direction: column;
  }

  .audit-form-placeholder {
    margin-top: 2rem;
  }
}

.form-row.two-col {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; /* Allows responsiveness */
}

.form-row.two-col .form-group {
  flex: 1;
  min-width: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
}

/* Optional Mobile Stack */
@media (max-width: 768px) {
  .form-row.two-col {
    flex-direction: column;
  }
}

.justcontact{text-decoration: underline;}

