/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
.pressping-hero {
  padding: 100px 20px;
  text-align: center;
  background: #f9f9f9;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin: 20px 0 30px;
}
.hero-cta .btn {
  margin: 0 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
}
.btn-primary {
  background: #0A66C2;
  color: #fff;
  text-decoration: none;
}
.btn-outline {
  border: 2px solid #0A66C2;
  color: #0A66C2;
  text-decoration: none;
}
.pressping-how-it-works, .pressping-value, .pressping-cta {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}
.how-grid, .value-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.how-column, .value-block {
  max-width: 400px;
  text-align: left;
}
.cta-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.cta-form input, .cta-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
/* Improved Header Container */
.pressping-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 20px 40px; /* ⬅ Add left/right padding */
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto; /* ⬅ Keeps it centered */
  width: 100%;
}

.logo a {
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  color: #111;
}

.main-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #0A66C2;
}

/* Footer */
.pressping-footer {
  background: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #eee;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  margin: 0 10px;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover {
  color: #0A66C2;
}
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
}
.how-it-works-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 768px) {
  .how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
.why-it-works-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media (min-width: 768px) {
  .why-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
/* Fluent Forms Global Reset */
.fluentform {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #111;
}

/* Input fields */
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="date"],
.fluentform textarea,
.fluentform select {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #111;
}

/* Label styling */
.fluentform .ff-el-label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
  color: #0A66C2;
}

/* Required asterisk color */
.fluentform .ff-el-required-mark {
  color: #E63946;
  margin-left: 4px;
}

/* Submit button */
.fluentform .ff-btn-submit {
  background-color: #0A66C2 !important;
  color: #fff !important;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Submit button hover */
.fluentform .ff-btn-submit:hover {
  background-color: #0A66C2 !important; /* same as base */
  opacity: 0.9;
}
/* ===============================
   Founder-Grade Section Styling
   =============================== */

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

section:first-of-type {
  padding-top: 100px;
}

section:last-of-type {
  padding-bottom: 100px;
}

/* Add margin to all but the first section */
section:not(:first-of-type) {
  margin-top: 40px;
}
.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}