/* Apply box-sizing to all elements */
*, *:before, *:after {
    box-sizing: border-box;
  }

body, h1, p {
    margin: 0;
    padding: 0;
  }

/* Navbar base styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    padding: 10px;
    border-bottom: solid;
    z-index: 1000; /* Adjust the z-index as needed */
    position: sticky;
    background: white;
}
  
/* .navbar-brand img {
    height: 60px;
} */
  
  /* Hamburger button styles */
.hamburger {
    display: none; /* Hidden by default, shown in mobile view */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
}
  
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333; /* Color of hamburger lines */
}

.navbar-menu.is-active {
    display: block; /* or 'flex' depending on your layout */
}
  
  
  /* Navbar menu styles */
.navbar-menu {
    display: flex;
}
  
.navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
  
.nav-item {
    padding: 0 10px; /* Spacing between nav items */
}
  
.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background-color: #f5f5f5;
    color: #e3824a;
}

/* Active state for current page */
.nav-link.active {
    color: #e3824a;
    font-weight: 600;
}

/* Optional: Add an underline effect on hover */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #e3824a;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}

/* Sign In dropdown */

.nav-item .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff; /* Or any color that fits your design */
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: #000000; /* Or any color that fits your design */
}

.dropdown-item:hover {
    background-color: #f2f2f2; /* Or any other highlight color */
}

.nav-item.has-dropdown .dropdown-menu {
    right: 0; /* Align the dropdown to the right edge of the .nav-item */
    left: auto; /* Override any previous left alignment */
  }
  
  /* Add scroll margin to sections to prevent overlap with fixed navbar */
.scroll-margin {
  scroll-margin-top: 80px; /* Adjust this value based on the height of your navbar */
}
  
  /* Use a font similar to the image, sans-serif as a fallback */
body {
    font-family: 'Arial', sans-serif;
}

/* Homepage experiment color tokens */
:root {
  --pp-ink: #2a2e33;
  --pp-support: #459fa0;
  --pp-warm: #fff5e1;
  --pp-alert: #bf5245;
  --pp-accent: #e3824a;
}
  
  /* Container for centering the layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px; */
    width: 100%; /* ensure it takes up the full width up to the max-width */
}
  
  /* Header styles */
  .header {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
  }

  .header-subtitle {
    font-size: 1em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  /* Add this new class for the GPT section */
.gpt-section {
  background-color: #f8f9fa; /* Light gray background */
  padding: 40px 0; /* Add some vertical padding */
  margin-top: 40px; /* Space between the two sections */
  border-radius: 8px; /* Optional: rounded corners */
}
  
  .header h1 {
    font-size: 3.5em;
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: bold;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .header p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border: 2px black solid;
    border-radius: 4px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .cta-button:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }

  .cta-button-orange {
    background-color: #E3824A;
    color: #fff;
    border: none;
  }
  
  .cta-button-orange:hover {
    background-color: #D06C2C;
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    /* ... rest of the hover styles ... */
  }

  .cta-button-orange:active {
    transform: translateY(0); /* Reset position when clicked */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Smaller shadow when pressed */
  }

/* SEO content section */
.seo-content {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.seo-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.seo-content p {
  margin-bottom: 20px;
}

.seo-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.seo-content li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.seo-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e67e22;
  font-weight: bold;
}

/* DP 2 Section */
.dp2-section {
  background-color: #1B3A48; /* Dark blue background */
  color: white; /* White text color */
  padding: 40px 20px;
  border-radius: 8px;
  text-align: center; /* Center align the content */
}

.dp2-section .dp-logo {
  max-width: 100px; /* Adjust the size as needed */
  height: auto;
  margin-bottom: 20px; /* Space between the logo and the first paragraph */
}

.dp2-section h1 {
  color: #EBA658; /* Light orange for heading */
}

.dp2-section p {
  color: white; /* Ensure paragraph text is white */
}

.dp2-section .cta-button {
  background-color: #EBA658; /* Light orange button */
  color: #1B3A48; /* Dark blue text */
  border: none;
}

.dp2-section .cta-button:hover {
  background-color: #D06C2C; /* Darker orange on hover */
  color: white; /* White text on hover */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

#dp-p {
  color: white; /* Ensure paragraph text is white */
}
#dp-p2 {
  color: white; /* Ensure paragraph text is white */
}


/* Consulting Section */
.consulting-section {
  background-color: #f0f8ff; /* Light blue background */
  color: #333;
  padding: 40px 20px;
  border-radius: 8px;
}

.consulting-section h1 {
  color: #0056b3; /* Darker blue for heading */
}

.consulting-cta {
  background-color: #0056b3;
  color: white;
  border: none;
}

.consulting-cta:hover {
  background-color: #003d82;
}

/* Custom GPT Section */
.custom-gpt-section {
  background-color: #fff5e6; /* Light orange background */
  color: #333;
  padding: 40px 20px;
  border-radius: 8px;
}

.custom-gpt-section h1 {
  color: #e67300; /* Darker orange for heading */
}

.custom-gpt-cta {
  background-color: #e67300;
  color: white;
  border: none;
}

.custom-gpt-cta:hover {
  background-color: #b35900;
}

/* Adjust the existing .header styles if needed */
.header {
  text-align: center;
  padding: 60px 20px;
}

/* You might want to adjust these for better contrast */
.header-subtitle {
  color: #666;
}

.header p {
  color: #444;
}

.gpt-section {
  background-color: #f8f9fa;
  padding: 40px 0;
  margin-top: 40px;
  border-radius: 8px;
}

.gpt-section .header-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 2rem;
}

.gpt-section .header-button {
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.gpt-section .header-button-primary {
  background-color: #E3824A;
  color: white;
}

.gpt-section .header-button-primary:hover {
  background-color: #D06C2C;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gpt-section .header-button-secondary {
  border: 2px solid #333;
  color: #333;
}

.gpt-section .header-button-secondary:hover {
  background-color: #333;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


  /* CTA and FAQ section */
.cta-faq-section {
    text-align: center;
  }

  .faq-answer p {
    margin: 20px;
    }
  
  .cta-faq-section .faq-text {
    font-size: 1em;
    padding: 2em;
  }
  
  .cta-faq-section .faq-link {
    color: #000;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Add hover effects for interactivity */
  .cta-faq-section .cta-button:hover,
  .cta-faq-section .faq-link:hover {
    background-color: #333; /* Darken button on hover */
    color: #fff;
  }

  /* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 1150px;
    margin: 0 auto;
    align-items: stretch;
}
  
  .product-item {
    text-align: center;
    padding: 24px 20px 22px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .product-item h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
  }

  .product-item > p {
    margin: 0;
    flex: 1 1 auto;
    line-height: 1.5;
    color: #444;
    font-size: 0.98rem;
  }
  
  .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    margin: 0 0 16px;
    overflow: hidden;
    border-radius: 6px;
    background: #f7f7f7;
    flex-shrink: 0;
  }
  
  .product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  /* Square Imagery mark: keep it visually balanced with landscape card art */
  .product-item--imagery .product-image {
    background: #fafafa;
  }

  .product-item--imagery .product-image img {
    max-height: 120px;
    max-width: 120px;
  }

/* Pricing + Plans section */

.plans-header h2 {
    font-size: 2.5rem; /* Adjust the size as needed */
    margin-bottom: 50px;
}

.plans-divider {
    margin-top: 40px;
}
.pricing-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px; /* Adjust as needed for your layout */
}

.plan {
    background: #000;
    color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    flex: 1; /* This will ensure each plan box takes up equal space */
    margin: 10px;
    display: flex;
    flex-direction: column; /* stack the content vertically */
}

.plan h2 {
    margin-top: 0;
}

.price {
    font-size: 24px;
}

.plan .cta-button {
    width: fit-content;
    padding: 10px 20px;
    border: inset;
}

.features {
    list-style: none;
    padding: 0;
    margin-top: inherit;
  }

.features li {
    border-top: 1px solid #ffff;
    padding: 10px 0;
}
  
  .learn-more, .try-it-out {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px; /* space above the button */
    color: #ffffff; /* button text color */
    background-color: #000000; /* button background color */
    text-decoration: none;
    border-radius: 20px;
    border: 2px solid #000000; /* border to match your screenshot */
  }
  
  .try-it-out {
    background-color: #ffffff; /* button background color for 'Try it out' */
    color: #000000; /* button text color for 'Try it out' */
    border: 2px solid #000000; /* border color for 'Try it out' */
  }

  .site-footer {
    background-color: #333; /* Example background color, match this to your design */
    color: #fff;
    padding: 20px 0; /* Add padding for better spacing */
    text-align: center;
    width: 100%; /* Ensure the footer spans the full width */
    position: relative; /* Ensure it stays at the bottom */
}

.content-article {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.content-article h1 {
  font-size: 2.5em;
  margin-bottom: 1em;
}

.content-article h2 {
  font-size: 1.8em;
  margin: 1.5em 0 0.5em;
}

.content-article p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 1em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px; /* Optional: limit the content width */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Add padding to the sides */
}

.social-icons {
    display: flex;
    justify-content: center;
    flex: 1;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px; /* Add more space between icons */
}

.social-icons img {
    width: 24px; /* Example size, adjust as needed */
    height: auto;
}

.footer-text {
    flex: 2;
    text-align: right; /* Align text to the right */
    font-size: 0.8em;
}

.footer-text a {
    color: #fff;
    text-decoration: none;
    padding: 0 5px;
}

.prompt-perfect-callout {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin: 40px 0;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prompt-perfect-callout p {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #333;
}

.prompt-perfect-callout .cta-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.prompt-perfect-callout .normal-weight {
  font-weight: normal;
}

.prompt-perfect-callout .bold-weight {
  font-weight: bold;
}

.prompt-perfect-callout .highlight-text {
  color: #e3824a; /* This is the orange color used for buttons */
  font-weight: bold;
}

.prompt-perfect-callout .button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.prompt-perfect-callout .cta-button {
    min-width: 150px;
}

@media (max-width: 768px) {
  .prompt-perfect-callout {
      margin: 20px 0;
      padding: 15px;
  }

  .prompt-perfect-callout p {
      font-size: 1em;
  }

  .prompt-perfect-callout .cta-button {
      font-size: 1em;
      padding: 8px 16px;
  }

  .prompt-perfect-callout .button-container {
      flex-direction: column;
      align-items: center;
  }
  
  .prompt-perfect-callout .cta-button {
      width: 100%;
      max-width: 250px;
  }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-text {
        text-align: center;
        margin-top: 10px; /* Add space between social icons and text */
    }
}

  /* WHY Page Specific Styles */
.hero-section {
  text-align: center;
  padding: 20px;
  background-image: url('path_to_your_wide_hero_image.jpg');
  background-size: cover;
  background-position: center;
  color: black;
}

#whyhero {
  max-width: 60%;
}

.hero-section h3 {
  font-size: 2rem; /* Adjust as needed */
  margin-bottom: 1rem;
}

/* Top Bar Styles */
.top-bar {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background-color: #f4f4f4; /* Light gray background */
  font-weight: bold;
  font-size: 1.1em;
}

.google-chrome-extension-bar {
  background-color: #4285F4; /* Google Blue */
  color: white;
}

.gpt-bar {
  background-color: #34A853; /* Google Green */
  color: white;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section CSS */
.features-section {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px; /* Adjust as needed */
  justify-content: center;
}

.feature-row {
  display: flex;
  align-items: center;
  width: 75%;
  margin-bottom: 20px; /* Spacing between rows */
  justify-content: center;
}

.feature-img {
  width: 35%;
  max-width: 600px; /* Max width for larger displays */
  height: auto;
}

.feature-text {
  width: 50%; /* Adjust width as necessary */
  padding: 0 20px; /* Padding for text */
}

/* Simplicity Through Innovation Section CSS */
.simplicity-section {
  text-align: center;
  padding: 40px 20px;
  width: 60%;
}

.simplicity-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* FAQs */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 20px;
}

.faq {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.faq-question {
  width: 100%;
  padding: 10px;
  text-align: left;
  background: #f7f7f7;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  font-size: 1rem;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 10px;
  background: #fff;
}

/* terms page styling */

.terms-page {
    line-height: 2em;
}

.terms-page h1 {
    margin: 0.5em 0;
}

.terms-page p {
    margin: 0.5em 0;
}

/* custom gpt page */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-container iframe {
    width: 100%;
    height: 900px;
    border: none;
}

/* Cookbook Styles */
.prompt-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prompt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prompt-header h3 {
  margin: 0;
  font-size: 1.1em;
}

.reveal-btn {
  background-color: #E3824A;
  color: white;
  border: none;
  padding: 10px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.reveal-btn:hover {
  background-color: #D06C2C;
}

.prompt-content {
  margin-top: 10px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.prompt-content p {
    margin-bottom: 15px; /* Adds space below each paragraph */
}

.prompt-content p:last-child {
    margin-bottom: 0; /* Removes margin from the last paragraph to avoid extra space */
}

.copy-btn {
  background-color: #E3824A;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.copy-btn:hover {
  background-color: #D06C2C;
}

.category-nav {
  position: sticky;
  top: 85px;
  background-color: #f8f9fa;
  z-index: 1000;
  overflow-x: auto;
  white-space: nowrap;
  padding: 16px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-nav-container {
  position: sticky;
  top: 85px;
}

/* Add this new rule for the fade effect */
.category-nav-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200px; /* Adjust as needed */
  background: linear-gradient(to right, rgba(248,249,250,0), rgba(248,249,250,1));
  pointer-events: none; /* Allows clicking through the gradient */
}

/* Existing styles remain the same */
.category-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.category-nav li {
  margin: 0 10px;
  position: relative; /* For positioning the pseudo-element */
  padding: 0 10px; /* Add some padding for spacing */
}

/* Add this new rule for the vertical line */
.category-nav li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%; /* Adjust the height of the line as needed */
  width: 1px; /* Width of the line */
  background-color: #ccc; /* Color of the line */
}

.category-nav a {
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  border-radius: 20px;
  transition: background-color 0.3s;
  white-space: nowrap; /* Prevent text wrapping */

}

.category-nav a:hover,
.category-nav a.active {
  background-color: #007bff;
  color: white;
}



/* Style for category headings */
.category h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333; /* Adjust color as needed */
}

@media (max-width: 768px) {
    .form-container {
        padding: 10px;
    }

    .form-container iframe {
        height: 1000px;
    }

    .header {
      padding: 40px 0;
    }
  
    h1 {
      font-size: 2.5rem;
    }
  
    .seo-content {
      padding: 30px;
      margin-top: 40px;
    }
  
    .seo-content h2 {
      font-size: 1.75rem;
    }

    .prompt-item {
      padding: 15px;
  }

    .category-nav {
        padding: 5px 0;
    }
    
    .category-nav li {
        margin: 0 5px;
    }
    
    .category-nav a {
        padding: 3px 8px;
        font-size: 14px;
    }
}
   
  /* Responsive layout for mobile */
  @media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-menu {
        display: none; /* Hide menu in mobile view */
        width: 100%; /* Full-width */
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #f8f8f8;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .nav-item {
        padding: 10px 0; /* More space in mobile view */
        text-align: center;
    }

    .nav-item .dropdown-menu {
        display: none; /* Keep this the same */
        position: absolute;
        background-color: #f8f8f8; /* Lighter background for contrast */
        box-shadow: 0px 8px 16px rgba(0,0,0,0.1); /* subtle shadow for depth */
        top: 100%; /* Adjust so it doesn't overlap the "Sign In" text */
        left: 0;
        right: 0; /* ensure full width */
        border-top: 3px solid #333; /* Add a top border for definition */
        z-index: 1;
    }

    .nav-item:hover .dropdown-menu, .nav-item:focus .dropdown-menu {
        display: block; /* Show on hover or focus for accessibility */
    }
    
    .dropdown-item {
        padding: 15px 20px; /* Increase padding for touch targets */
        font-size: 1.2rem; /* Larger font size for readability */
    }
    
      /* Optional: Add a transition for the dropdown */
    .navbar-menu.is-active .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s;
    }
    
    .navbar-menu.is-active .dropdown-menu.is-active {
        opacity: 1;
        visibility: visible;
    }

    .header h1 {
      font-size: 2.5em;
    }

    #dp-header {
      font-size: 1.25em;
    }

    .header {
      text-align: center;
      padding: 25px 20px;
  }

    .header-subtitle {
      font-size: 0.9em;
    }
  
    .header p {
      font-size: 1em;
    }

    h1 {
      font-size: 2rem;
    }
  
    .seo-content {
      padding: 20px;
    }
  
    .seo-content h2 {
      font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 8px 16px;
    }
    .features-grid {
      grid-template-columns: 1fr; /* single column */
    }

    .pricing-container {
        flex-direction: column; /* Stack plans vertically on mobile */
    }

    .pricing-container .button {
        width: 30%;
    }

    .plan {
        flex: none; /* Reset flex settings for mobile */
        width: 100%;
        margin: 10px 0;
        border: inset;
    }
    /* Adjust padding or font sizes for smaller screens if needed */
    .cta-faq-section .cta-button {
        padding: 8px 16px;
    }
    
    .cta-faq-section .faq-text {
        font-size: 0.9em;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-item .product-image img {
        max-height: 250px; /* Smaller logos for mobile devices */
    }

    .product-item--imagery .product-image img {
        max-height: 140px;
        max-width: 140px;
    }

    .footer-content {
        flex-direction: column;
    }
      
    .social-icons {
        margin-bottom: 10px;
    }

    /* WHY Page */
    .features-section {
      grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row.feature-row-reverse { /* Reset the order for mobile views */
      flex-direction: column;
  }
  .feature-img {
      width: 75%; /* Full width for the image */
      order: -1; /* This will ensure the image comes before the text in the source order */
      /* ... other styles ... */
  }
  .feature-text {
      width: 100%; /* Full width for the text */
      /* ... other styles ... */
  }

  .simplicity-section {
    width: 95%;
}
  .simplicity-section p {
      font-size: 1rem;
  }

  .category-nav {
    padding: 15px 0;
}

.category-nav li {
    margin: 0 5px;
}

.category-nav a {
    padding: 3px 8px;
    font-size: 14px;
}

  }

.content-article li {
    line-height: 1.5em;
    padding-bottom: .5em;
}

.product-buttons {
    display: flex;
    flex-direction: column; /* stack buttons vertically */
    gap: 10px;
    margin-top: 20px;
}

.manage-account {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    width: 100%; /* make buttons full width */
}

.manage-account {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.manage-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Placeholder for Senja Embed */
.senja-embed {
    min-height: 200px; /* Adjust based on expected content size */
    background-color: #f0f0f0; /* Optional: Add a background color */
    display: block;
    width: 100%;
}

/* Placeholder for Trackdesk Tracker if needed */
.trackdesk-placeholder {
    min-height: 50px; /* Adjust as necessary */
}

@font-face {
    font-family: 'CustomFont';
    src: url('/fonts/customfont.woff2') format('woff2');
    font-display: swap; /* Ensures text is visible during font loading */
}

/* Ensure all images have max-width and height set */
img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent inline images from causing gaps */
}

/* Responsive Image Handling */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Existing mobile styles */
}

/* Main Header Styles */
.main-header {
    padding: 60px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.main-title {
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.perfect-text {
    color: #e3824a;
}

.main-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-compare-link {
    display: inline-block;
    margin-top: 1rem;
    color: #555;
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-compare-link:hover {
    color: #222;
}

.b-hero-eyebrow,
.b-hero-proof-grid,
.reviews-title,
.reviews-subtitle,
.reviews-fallback-cards,
.b-mini-faq,
.b-decision-band {
  display: none;
}

.tool-badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #f2f4f7;
  color: #52606d;
}

.trust-bar {
  display: none;
}

.product-detail-section {
  display: none;
}

.products-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 15px;
}

/* Add decorative lines on either side of the label */
.products-label:before,
.products-label:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #666;
}

.products-label:before {
    right: 100%;
}

.products-label:after {
    left: 100%;
}

.products-section .product-buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 340px;
    margin: 0 auto;
    margin-top: 0;
}

/* Wide: one row — Imagery | or | Chrome | or | GPT */
@media (min-width: 900px) {
    .products-section .product-buttons {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: stretch;
        gap: 0.65rem 0.5rem;
        max-width: 1040px;
        width: 100%;
    }

    .products-section .product-button {
        min-width: 0;
    }

    .products-section .or-divider {
        align-self: center;
        padding: 0;
    }
}

.product-grid .product-item .product-buttons {
    flex-direction: column;
    margin-top: auto;
    padding-top: 16px;
    gap: 12px;
    width: 100%;
    align-items: stretch;
}

/* Match pill widths — .manage-account was 100% but .try-it-out was content-sized */
.product-grid .product-item .try-it-out,
.product-grid .product-item .manage-account {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    padding: 10px 14px;
    font-size: 0.9rem;
    line-height: 1.35;
    min-height: 2.75rem;
    text-align: center;
    border-radius: 20px;
}

.product-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px; /* Limit the width to keep buttons closer */
    margin: 0 auto;
}

.product-button {
    min-width: 200px; /* Set a minimum width for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 6px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-button .button-icon {
    flex-shrink: 0;
    object-fit: contain;
}

/* Hero CTAs: one visual system — same outline, aligned icons, left-aligned text on wide screens */
.products-section .product-button {
    min-width: 0;
    min-height: 3.25rem;
    padding: 0.65rem 0.85rem;
    justify-content: flex-start;
    text-align: left;
    font-size: 0.9375rem;
    line-height: 1.35;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    gap: 0.65rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.products-section .product-button span {
    flex: 1;
    min-width: 0;
}

.products-section .product-button .button-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Imagery: same black frame as siblings; emphasis = left accent + light tint (not a different border color all around) */
.products-section .product-button--imagery {
    border: 2px solid #1a1a1a;
    border-left: 4px solid #e3824a;
    background-color: #fffbf8;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(227, 130, 74, 0.08);
}

.products-section .product-button--imagery:hover {
    background-color: #fff5ee;
    border-color: #1a1a1a;
    border-left-color: #c96d3d;
}

.products-section .product-button:not(.product-button--imagery):hover {
    background-color: #fafafa;
    border-color: #1a1a1a;
}

.or-divider {
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding: 0 10px;
}

.products-section .or-divider {
    color: #b0b0b0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 0.2rem;
    user-select: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .main-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .product-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .products-section .product-buttons {
        flex-direction: column;
        display: flex;
        max-width: 300px;
    }

    .products-section .product-button {
        justify-content: center;
        text-align: center;
    }

    .products-section .product-button span {
        text-align: center;
        flex: none;
    }

    .or-divider {
        margin: 0.35rem 0;
    }

    .product-button {
        min-width: unset;
        width: 100%;
        max-width: 300px;
    }

    .products-label:before,
    .products-label:after {
        width: 20px; /* Shorter lines on mobile */
    }
}

/* What is Prompt Perfect Section */
.what-is-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

/* Variation B visual treatment and modules */
html[data-home-variant="b"] body {
  background-color: #2a2e33;
  color: var(--pp-ink);
}

html[data-home-variant="b"] .navbar {
  border-bottom: 1px solid rgba(42, 46, 51, 0.2);
  background: rgba(255, 245, 225, 0.95);
}

html[data-home-variant="b"] .main-title,
html[data-home-variant="b"] .section-title,
html[data-home-variant="b"] .comparison-title {
  color: var(--pp-ink);
}

html[data-home-variant="b"] .main-header {
  padding-top: 78px;
  padding-bottom: 70px;
  background: #ffffff;
  border: 1px solid rgba(42, 46, 51, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(42, 46, 51, 0.08);
  margin-top: 10px;
}

html[data-home-variant="b"] .b-hero-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0f6f6;
  color: #2f6768;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html[data-home-variant="b"] .main-title {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

html[data-home-variant="b"] .perfect-text {
  color: var(--pp-accent);
}

html[data-home-variant="b"] .main-subtitle,
html[data-home-variant="b"] .section-subtitle,
html[data-home-variant="b"] .comparison-subtitle {
  color: #47515c;
}

html[data-home-variant="b"] .main-subtitle {
  font-size: 1.15rem;
  max-width: 640px;
  margin-bottom: 2.35rem;
  line-height: 1.45;
}

html[data-home-variant="b"] .products-section .product-button {
  border: 2px solid var(--pp-ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(42, 46, 51, 0.08);
  font-weight: 600;
}

html[data-home-variant="b"] .products-section .product-button--imagery {
  border: 2px solid var(--pp-accent);
  background: linear-gradient(135deg, #ea8f58 0%, #e3824a 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(227, 130, 74, 0.35);
  transform: translateY(-1px);
}

html[data-home-variant="b"] .products-section .product-button--imagery .button-icon {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 2px;
}

html[data-home-variant="b"] .products-section .product-button:not(.product-button--imagery) {
  opacity: 0.92;
  border-color: rgba(42, 46, 51, 0.7);
}

html[data-home-variant="b"] .products-section .product-button:not(.product-button--imagery):hover {
  opacity: 1;
  border-color: var(--pp-ink);
  box-shadow: 0 6px 14px rgba(42, 46, 51, 0.16);
}

html[data-home-variant="b"] .hero-compare-link {
  color: var(--pp-support);
  font-weight: 600;
  margin-top: 1.2rem;
  font-size: 0.9rem;
}

html[data-home-variant="b"] .hero-compare-link:hover {
  color: #2f7778;
}

html[data-home-variant="b"] .trust-bar {
  display: block;
  background: #2a2e33;
  border-top: 1px solid rgba(69, 159, 160, 0.35);
  border-bottom: 1px solid rgba(69, 159, 160, 0.35);
}

html[data-home-variant="b"] .trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 20px;
}

html[data-home-variant="b"] .trust-item {
  text-align: center;
  font-size: 0.92rem;
  color: #e8f0f0;
  font-weight: 500;
}

html[data-home-variant="b"] .what-is-section,
html[data-home-variant="b"] .comparison-section,
html[data-home-variant="b"] .reviews-section {
  background: #fff;
}

html[data-home-variant="b"] .b-hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

html[data-home-variant="b"] .b-proof-chip {
  background: #ffffff;
  border: 1px solid rgba(42, 46, 51, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  color: #46505b;
  box-shadow: 0 2px 6px rgba(42, 46, 51, 0.06);
  line-height: 1.25;
}

html[data-home-variant="b"] .tool-card {
  border-color: rgba(69, 159, 160, 0.24);
  border-top: 4px solid rgba(69, 159, 160, 0.75);
  border-radius: 14px;
  padding: 28px;
}

html[data-home-variant="b"] .tool-badge {
  display: inline-block;
  margin-bottom: 14px;
  background: #f0f7f7;
  color: #2f6667;
}

html[data-home-variant="b"] .tool-button,
html[data-home-variant="b"] .gpt-button,
html[data-home-variant="b"] .imagery-button {
  background-color: var(--pp-accent);
  border-color: var(--pp-accent);
  color: #fff;
}

html[data-home-variant="b"] .tool-button:hover,
html[data-home-variant="b"] .gpt-button:hover,
html[data-home-variant="b"] .imagery-button:hover {
  background-color: #cc6f3a;
  border-color: #cc6f3a;
}

html[data-home-variant="b"] .extension-button {
  border-color: var(--pp-ink);
  color: var(--pp-ink);
}

html[data-home-variant="b"] .comparison-table th {
  background-color: var(--pp-ink);
}

html[data-home-variant="b"] .comparison-section {
  padding: 72px 0;
}

html[data-home-variant="b"] .comparison-table-wrapper {
  border-radius: 14px;
  border: 1px solid rgba(42, 46, 51, 0.12);
  box-shadow: 0 14px 36px rgba(42, 46, 51, 0.08);
}

html[data-home-variant="b"] .comparison-table tr:nth-child(even) {
  background-color: #fff8ef;
}

html[data-home-variant="b"] .product-detail-section {
  display: block;
  background: linear-gradient(180deg, #fff7ea 0%, #ffffff 100%);
  border-top: 1px solid #f0e6cf;
  border-bottom: 1px solid #f0e6cf;
  padding: 78px 0;
}

html[data-home-variant="b"] .detail-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-bottom: 18px;
  background: #ffffff;
  border: 1px solid rgba(42, 46, 51, 0.12);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 6px 16px rgba(42, 46, 51, 0.06);
}

html[data-home-variant="b"] .detail-row:last-child {
  margin-bottom: 0;
}

html[data-home-variant="b"] .detail-row-reverse {
  flex-direction: row-reverse;
}

html[data-home-variant="b"] .detail-media {
  width: 128px;
  min-width: 128px;
  height: 128px;
  border-radius: 14px;
  border: 1px solid rgba(69, 159, 160, 0.28);
  background: #f5fbfb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

html[data-home-variant="b"] .detail-icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

html[data-home-variant="b"] .detail-copy h3 {
  margin: 0 0 10px;
  color: var(--pp-ink);
  font-size: 1.45rem;
}

html[data-home-variant="b"] .detail-copy p {
  margin: 0 0 14px;
  color: #46505b;
  line-height: 1.55;
}

html[data-home-variant="b"] .detail-copy {
  flex: 1 1 auto;
  max-width: 760px;
}

html[data-home-variant="b"] .reviews-section {
  padding: 74px 0 58px;
  background: #ffffff;
}

html[data-home-variant="b"] .reviews-title {
  display: block;
  text-align: center;
  font-size: 2rem;
  margin: 0 0 10px;
  color: var(--pp-ink);
}

html[data-home-variant="b"] .reviews-subtitle {
  display: block;
  text-align: center;
  font-size: 1rem;
  margin: 0 0 22px;
  color: #55606c;
}

html[data-home-variant="b"] .senja-embed-container {
  border: 1px solid rgba(69, 159, 160, 0.26);
  border-radius: 14px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

html[data-home-variant="b"] .reviews-fallback-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

html[data-home-variant="b"] .reviews-fallback-card {
  background: #fff7ea;
  border: 1px solid rgba(42, 46, 51, 0.12);
  border-radius: 12px;
  padding: 14px;
  color: #4e5964;
  font-size: 0.9rem;
  line-height: 1.45;
}

html[data-home-variant="b"] .cta-faq-section {
  padding-top: 14px;
}

html[data-home-variant="b"] .faq-text {
  margin-bottom: 6px;
}

html[data-home-variant="b"] .b-mini-faq {
  display: grid;
  gap: 10px;
  max-width: 850px;
  margin: 0 auto 20px;
  text-align: left;
}

html[data-home-variant="b"] .b-mini-faq p {
  margin: 0;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(69, 159, 160, 0.25);
  background: #ffffff;
  color: #47535f;
}

html[data-home-variant="b"] .final-products-header,
html[data-home-variant="b"] .product-grid {
  display: none;
}

html[data-home-variant="b"] .b-decision-band {
  display: block;
  background: #2a2e33;
  color: #fff;
  padding: 72px 0;
  margin-top: 24px;
}

html[data-home-variant="b"] .b-decision-band .container {
  max-width: 980px;
  text-align: center;
}

html[data-home-variant="b"] .b-decision-kicker {
  margin: 0 0 10px;
  color: #9cd0d0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

html[data-home-variant="b"] .b-decision-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

html[data-home-variant="b"] .b-decision-band p {
  margin: 0 auto;
  max-width: 640px;
  color: #d8e0e0;
  font-size: 1.02rem;
}

html[data-home-variant="b"] .b-decision-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

html[data-home-variant="b"] .b-decision-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  min-width: 220px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

html[data-home-variant="b"] .b-decision-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

html[data-home-variant="b"] .b-decision-btn-primary {
  background: var(--pp-accent);
  color: #fff;
  border: 1px solid var(--pp-accent);
}

html[data-home-variant="b"] .b-decision-btn-secondary {
  background: #fff;
  color: var(--pp-ink);
  border: 1px solid #fff;
}

html[data-home-variant="b"] .b-decision-btn-tertiary {
  background: transparent;
  color: #d8e0e0;
  border: 1px solid #6f8485;
}

html[data-home-variant="b"] .site-footer {
  background-color: #202327;
}

@media (max-width: 900px) {
  html[data-home-variant="b"] .b-hero-proof-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
    margin-bottom: 8px;
  }

  html[data-home-variant="b"] .trust-bar-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 18px;
  }

  html[data-home-variant="b"] .main-header {
    padding-top: 56px;
    padding-bottom: 42px;
    border-radius: 0 0 18px 18px;
    margin-top: 0;
  }

  html[data-home-variant="b"] .products-section .product-buttons {
    gap: 0.65rem;
    max-width: 320px;
  }

  html[data-home-variant="b"] .products-section .product-button {
    min-height: 3rem;
    padding: 0.58rem 0.75rem;
  }

  html[data-home-variant="b"] .products-section .or-divider {
    display: none;
  }

  html[data-home-variant="b"] .detail-row,
  html[data-home-variant="b"] .detail-row-reverse {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 18px 16px;
  }

  html[data-home-variant="b"] .detail-media {
    width: 104px;
    min-width: 104px;
    height: 104px;
  }

  html[data-home-variant="b"] .detail-icon {
    width: 72px;
    height: 72px;
  }

  html[data-home-variant="b"] .reviews-fallback-cards {
    grid-template-columns: 1fr;
  }

  html[data-home-variant="b"] .b-decision-band {
    padding: 58px 0;
  }

  html[data-home-variant="b"] .b-decision-btn {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  html[data-home-variant="b"] .trust-bar {
    display: none;
  }
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #000;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.tools-heading {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.tool-card-logo {
  margin-bottom: 1rem;
}

.tool-card-logo img {
  width: 56px;
  height: auto;
  max-height: 56px;
  border-radius: 8px;
}

@media (max-width: 1100px) and (min-width: 769px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tool-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tool-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tool-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #000;
}

.tool-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 1.5rem;
}

.tool-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.tool-features li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #444;
}

.tool-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

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

/* Responsive styles for What is Prompt Perfect section */
@media (max-width: 768px) {
  .what-is-section {
    padding: 40px 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-description {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .tool-card {
    padding: 20px;
  }
}

/* Product Comparison Table */
.comparison-section {
  padding: 60px 0;
  background-color: #fff;
}

.comparison-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #000;
}

.comparison-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-radius: 8px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table th {
  background-color: #000;
  color: #fff;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
}

.comparison-table th:first-child {
  width: 18%;
}

.comparison-table th:not(:first-child) {
  width: 27.33%;
}

.comparison-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.feature-name {
  font-weight: 600;
  color: #333;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.comparison-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2rem;
}

.comparison-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.gpt-button {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

.gpt-button:hover {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.extension-button {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.extension-button:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.imagery-button {
  background-color: #e3824a;
  color: #fff;
  border: 2px solid #e3824a;
}

.imagery-button:hover {
  background-color: #D06C2C;
  border-color: #D06C2C;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive styles for comparison table */
@media (max-width: 768px) {
  .comparison-section {
    padding: 40px 15px;
  }
  
  .comparison-title {
    font-size: 1.8rem;
  }
  
  .comparison-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  /* Force table to not be like a table on mobile */
  .comparison-table, 
  .comparison-table thead, 
  .comparison-table tbody, 
  .comparison-table th, 
  .comparison-table td, 
  .comparison-table tr { 
    display: block; 
  }
  
  /* Hide table headers */
  .comparison-table thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  .comparison-table tr {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .comparison-table td { 
    /* Make like a row */
    border: none;
    border-bottom: 1px solid #eee; 
    position: relative;
    padding-left: 50%; 
    text-align: left;
  }
  
  .comparison-table td:before { 
    /* Add a label */
    position: absolute;
    top: 12px;
    left: 15px;
    width: 45%; 
    padding-right: 10px; 
    white-space: nowrap;
    font-weight: 600;
  }
  
  /* Add labels — one per column (matches desktop thead order) */
  .comparison-table td:nth-of-type(1):before { content: "Feature"; }
  .comparison-table td:nth-of-type(2):before { content: "Imagery"; }
  .comparison-table td:nth-of-type(3):before { content: "Chrome Extension"; }
  .comparison-table td:nth-of-type(4):before { content: "Prompt Perfect GPT"; }
  
  .comparison-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .comparison-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Special mobile view for the comparison table */
@media (max-width: 768px) {
  .comparison-table-wrapper {
    border-radius: 0;
    box-shadow: none;
  }
  
  /* Create cards for each product */
  .mobile-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .mobile-card-header {
    background-color: #000;
    color: #fff;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .mobile-card-body {
    padding: 15px;
  }
  
  .mobile-feature {
    margin-bottom: 15px;
  }
  
  .mobile-feature-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
  }
  
  .mobile-feature-value {
    color: #555;
  }
}

/* Add this to your styles.css file */
.faq-section-header {
    background-color: #f2f2f2;
    padding: 10px 15px;
    margin: 25px 0 15px 0;
    border-radius: 5px;
    font-size: 1.3rem;
    color: #333;
    border-left: 4px solid #E3824A;
}

/* Adjust spacing for mobile */
@media (max-width: 768px) {
    .faq-section-header {
        font-size: 1.1rem;
        padding: 8px 12px;
        margin: 20px 0 10px 0;
    }
}

/* Reserve space for Senja reviews widget */
.senja-embed-container {
  min-height: 400px; /* Adjust based on typical widget height */
  position: relative;
  width: 100%;
  background-color: #f8f9fa; /* Optional: light background while loading */
}

/* Optional loading indicator */
.senja-embed-container::before {
  content: "Loading reviews...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #888;
  font-style: italic;
}