/* === Hero Section === */
section.hero {
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.hero-form-header {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #858585;
}

.hero-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  padding: 80px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffff;
}

.hero-content p {
  color: #dddfe0;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-form-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  background-color: #16110f;
  padding: 80px;
}

.hero-form-section input {
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #ff4b2b;
  border-radius: 5px;
  outline: none;
  width: 100%;
}

.hero-form-section input::placeholder {
  color: #aaa;
}

.error-text {
  color: #fff;
  background: #ff4b2b;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 3px;
  width: fit-content;
  margin-top: 10px;
}

.btn {
  background-color: #ff4b2b;
  color: #fff;
  border: none;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #ff6a4b;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 3rem;
  position: relative;
  bottom: -10px;
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #0b1220;
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    margin-top: 40px;
    border-radius: 10px;
  }

  .hero-form-section input {
    width: 100%;
  }

  .hero-form-section {
    padding: 20px;
  }
}

.btn,
.hero-form-btn {
  background-color: #ff4b2b;
  color: #fff;
  border: none;
  padding: 18px 0;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.cta-section h2 {
  color: #0b1220;
  margin-bottom: 16px;
}

.hero-form-note {
  color: #bdbdbd;
  font-size: 0.98rem;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}
.cta-section .lead {
  color: #6b7785;
  margin-bottom: 40px;
}

.cta-section .cta-btn {
  margin-bottom: 20px;
}

.cta-disclaimer {
  color: #6b7785;
  font-size: 0.9rem;
}

.gym-app-features {
  background: #f9fafb;
  padding: 80px 0;
  text-align: center;
}

.gym-app-grid {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.gym-app-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gym-app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-section {
  padding: 80px 0;
  background: #fff;
}

.feature-section:nth-child(even) {
  background: #f9fafb;
}

.feature-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.feature-layout.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  text-align: left;
}

.feature-content h2 {
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1rem;
}

.feature-list li::before {
  content: "✓";
  background: #10b981;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.feature-list h4 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #0b1220;
}

.feature-list p {
  color: #6b7280;
  font-size: 0.9rem;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
}

@media (max-width: 900px) {
  .feature-layout,
  .feature-layout.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .feature-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.gym-app-card img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.gym-app-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0b1220;
}

.gym-app-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

.fitness-journey-heading {
  text-align: left;
  max-width: 500px;
}

.favorite-apps-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  text-align: left;
}

.favorite-apps-grid img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .favorite-apps-grid {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}

.favorite-apps {
  padding: 80px 0;
  text-align: center;
}

.pricing-plans-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  text-align: center;
}

.pricing-table {
  max-width: 1200px;
  margin: 60px auto 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pricing-header {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  font-weight: 600;
}

.pricing-header div {
  padding: 25px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-header div:last-child {
  border-right: none;
}

.pricing-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.3s ease;
}

.pricing-row:hover {
  background: #f8fafc;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-cell {
  padding: 20px;
  border-right: 1px solid #e5e7eb;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-cell:last-child {
  border-right: none;
}

.plan-name {
  background: #1e293b;
  color: white;
  font-weight: 600;
}

.best-for {
  color: #64748b;
  font-style: italic;
}

.monthly-cost {
  color: #059669;
  font-weight: 600;
}

.business-plan {
  color: #374151;
}

.highlight-row {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

@media (max-width: 900px) {
  .pricing-header,
  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-cell {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
  }

  .pricing-cell:last-child {
    border-bottom: none;
  }
  section.hero {
    min-height: 0vh;
  }
}

/* Trust Section */
.trust-section {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.trust-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b1220;
  margin-bottom: 20px;
}

.trust-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ratings-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
}

.rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.rating-item img {
  width: 100%;
  max-width: 200px;
}

.rating-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.stars {
  font-size: 1.5rem;
  color: #fbbf24;
}

.rating-item p {
  color: #374151;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .ratings-grid {
    flex-direction: column;
    gap: 40px;
  }

  .trust-section h2 {
    font-size: 2rem;
  }
}
/* Comparison Section */
.comparison-section {
  padding: 80px 0;
  background: #ffff;
  text-align: center;
}

.comparison-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.comparison-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto 40px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: #333;
  color: white;
  font-weight: 600;
  padding: 20px;
}

.fitbudd-column {
  text-align: center;
  font-size: 1.1rem;
}

.others-column {
  text-align: center;
  font-size: 1.1rem;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 20px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.comparison-row:last-child {
  border-bottom: none;
}

.feature-name {
  text-align: left;
  font-weight: 500;
  color: #333;
}

.fitbudd-check,
.others-check {
  text-align: center;
  font-size: 1.5rem;
  color: #28a745;
  font-weight: bold;
}

.others-cross {
  text-align: center;
  font-size: 1.5rem;
  color: #dc3545;
  font-weight: bold;
}

.rating-text {
  margin-top: 20px;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .comparison-section h2 {
    font-size: 2rem;
  }

  .comparison-table {
    margin: 0 20px 40px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 15px;
  }

  .feature-name {
    font-size: 0.9rem;
  }
}

.quote-section {
  background: #1e1e1e;
  padding: 80px 0;
  text-align: center;
}

.quote-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  /* max-width: 1000px; */
  margin: 0 auto;
}

.quote-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.quote-content {
  flex: 1;
  text-align: left;
}

.quote-text {
  font-size: 1.2rem;
  color: #ffffffe6;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}

.quote-author {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffff;
  margin-bottom: 5px;
}

.quote-title {
  color: #6b7280;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .quote-container {
    flex-direction: column;
    gap: 40px;
  }

  .quote-content {
    text-align: center;
  }

  .quote-image {
    width: 250px;
    height: 250px;
  }
}
/* Features Section */
.features-section {
  padding: 80px 0;
  background: #fff;
}

.features-section h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.features-subtitle {
  font-size: 1.3rem;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
}

.features-description {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.feature-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-section h2 {
    font-size: 2.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
}
/* App Section */
.app-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.app-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.app-mockup img {
  width: 100%;
  height: auto;
}

/* Website Section */
.website-section {
  padding: 80px 0;
  background: #fff;
}

.website-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.website-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.website-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.website-mockup img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .app-layout,
  .website-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .app-content h2,
  .website-content h2 {
    font-size: 2.2rem;
  }

  .website-layout {
    grid-template-areas:
      "content"
      "mockup";
  }

  .website-content {
    grid-area: content;
  }

  .website-mockup {
    grid-area: mockup;
  }
}

.helping-hand {
  background: #f3f6f7;
  padding: 80px 0;
}

.helping-hand-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.helping-hand-content {
  text-align: left;
}

.helping-hand-content h2 {
  margin-bottom: 20px;
}

.helping-hand-content p {
  margin-bottom: 30px;
}

.helping-hand-list {
  list-style: none;
  margin-bottom: 40px;
}

.helping-hand-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
}

.helping-hand-list li::before {
  content: "•";
  color: #ff4b2b;
  font-size: 1.5rem;
  margin-right: 15px;
}

.helping-hand img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .helping-hand-grid {
    flex-direction: column;
    gap: 40px;
  }

  .helping-hand-content {
    text-align: center;
  }
}

.final-cta-section {
  background-size: cover;
  background-position: top;
  padding: 100px 0;
  text-align: center;
  color: white;
}

.final-cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.final-cta-section .brand-highlight {
  color: #ff4b2b;
  text-decoration: underline;
}

.final-cta-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.final-cta-form input {
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
}

.final-cta-form input::placeholder {
  color: #9ca3af;
}

.phone-input {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 15px 20px;
}

.phone-input img {
  width: 24px;
  height: 16px;
  margin-right: 10px;
}

.phone-input input {
  border: none;
  background: transparent;
  padding: 0;
  flex: 1;
  font-size: 1rem;
}

.final-cta-btn {
  background: #ff4b2b;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.final-cta-btn:hover {
  background: #e63946;
}

.final-cta-disclaimer {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .final-cta-section h2 {
    font-size: 2rem;
  }
}
.wpcf7-response-output {
    color: white;
}
.hero-form {
  margin: 0 auto;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-form input {
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #ff4b2b;
  border-radius: 5px;
  outline: none;
  width: 100%;
}

.hero-form input::placeholder {
  color: #aaa;
}