/* Boostra Apps - Modern Design */

:root {
  --primary-color: #0291f7;
  --secondary-color: #04c1fc;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header/Navigation */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.5rem;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 600;
}

.hero .description {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Features Grid */
.features {
  padding: 80px 20px;
  background: var(--bg-light);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

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

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card ul {
  list-style: none;
  padding: 0;
}

.feature-card li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.feature-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* App Card */
.app-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 50px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: var(--shadow-lg);
}

.app-header {
  text-align: center;
  margin-bottom: 40px;
}

.app-header img {
  max-width: 200px;
  margin-bottom: 20px;
}

.free-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 15px;
}

.app-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.app-header .subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
}

.app-section {
  margin: 40px 0;
}

.app-section h3 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--secondary-color);
}

.feature-group {
  margin-bottom: 30px;
}

.feature-group h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-group ul {
  list-style: none;
  padding-left: 0;
}

.feature-group li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--text-light);
}

.feature-group li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.feature-group li strong {
  color: var(--text-dark);
}

/* Why Section */
.why-section {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--border-radius);
  margin: 40px 0;
}

.why-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.why-section li {
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.why-section li strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  margin: 60px 0;
  border-radius: var(--border-radius);
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Content Section */
.content-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 40px 0 20px;
}

.content-section h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 30px 0 15px;
}

.content-section p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-section ul {
  margin-bottom: 20px;
}

.content-section li {
  color: var(--text-light);
  margin-bottom: 8px;
}

/* Footer */
.site-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
  margin-top: 80px;
}

.site-footer a {
  color: var(--secondary-color);
  text-decoration: none;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1.25rem;
  }

  .features h2 {
    font-size: 2rem;
  }

  .app-card {
    padding: 30px 20px;
  }

  .site-nav {
    gap: 15px;
    font-size: 0.9rem;
  }
}

/* Apps Grid */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.app-preview-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.app-preview-card:hover {
  transform: translateY(-5px);
}

.app-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

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

.app-preview-card h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.app-preview-description {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
}

.app-preview-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.app-preview-features li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
}

.app-preview-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.app-preview-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.coming-soon-card {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  text-align: center;
  border: 2px dashed #d1d5db;
}

.coming-soon-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.coming-soon-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.coming-soon-card p {
  color: var(--text-light);
}

/* App Hero */
.app-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.app-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.app-hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
}

.app-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.app-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.95;
}

.app-hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Feature Blocks */
.features-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.feature-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-block {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-block h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-block ul {
  list-style: none;
  padding: 0;
}

.feature-block li {
  padding: 8px 0;
  color: var(--text-light);
  line-height: 1.6;
}

.feature-block li strong {
  color: var(--text-dark);
}

/* Technical Section */
.technical-section {
  padding: 80px 20px;
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.technical-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.technical-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.technical-card ul {
  list-style: none;
  padding: 0;
}

.technical-card li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
}

.technical-card li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Why Section Alt */
.why-section-alt {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 20px;
  color: var(--white);
}

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

.why-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.why-number {
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.why-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.why-item p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .apps-grid {
    grid-template-columns: 1fr;
  }

  .app-hero-logo {
    width: 120px;
    height: 120px;
  }

  .app-hero h1 {
    font-size: 2rem;
  }

  .feature-blocks {
    grid-template-columns: 1fr;
  }

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

  .app-preview-actions {
    flex-direction: column;
  }

  .app-preview-actions .btn {
    width: 100%;
    text-align: center;
  }
}

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

.feature-icon-large {
  font-size: 4rem;
  margin-bottom: 25px;
  text-align: center;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* Value Prop Section */
.value-prop {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.value-prop h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.value-prop-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 60px;
}

.value-prop-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--text-light);
  font-weight: 500;
}

/* CTA Section Home */
.cta-section-home {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}

.cta-section-home h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section-home p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.btn-large {
  font-size: 1.125rem;
  padding: 18px 40px;
}

/* Responsive for Homepage */
@media (max-width: 992px) {
  .features-grid-home {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-prop-text {
    font-size: 1.125rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .cta-section-home h2 {
    font-size: 2rem;
  }
}

/* Center homepage feature cards */
.features-grid-home .feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.features-grid-home .feature-card h3 {
  margin-bottom: 15px;
}

.features-grid-home .feature-card p {
  max-width: 100%;
}

/* Improved Header */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--primary-color);
  padding: 25px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(2, 145, 247, 0.1);
}

.site-logo {
  transition: transform 0.3s;
}

.site-logo:hover {
  transform: scale(1.05);
}

.site-nav a {
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.site-nav a:hover::after {
  width: 100%;
}

/* Fix apps listing buttons */
.app-preview-actions .btn-secondary {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.app-preview-actions .btn-secondary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Center app hero logo */
.app-hero-logo {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Reduce homepage padding */
.features {
  padding: 60px 20px 40px;
}

.value-prop {
  padding: 40px 20px 60px;
}

/* Sticky footer */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
  margin-top: 0;
}

/* Center coming soon card vertically */
.coming-soon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* App Showcase Section */
.app-showcase {
  padding: 60px 20px;
  background: var(--bg-light);
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.showcase-image {
  text-align: center;
  position: relative;
}

.showcase-image img {
  width: 100%;
  max-width: 200px;
  border-radius: var(--border-radius);
}

.showcase-image .free-badge {
  display: block;
  margin-top: 20px;
}

.showcase-content h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.showcase-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.125rem;
}

.showcase-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.showcase-features li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
}

.showcase-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Trust Section */
.trust-section {
  padding: 60px 20px;
}

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

.trust-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  transition: transform 0.3s;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.trust-item h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.trust-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Form */
.contact-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.contact-container h1 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-container .subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.125rem;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 768px) {
  .showcase-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }

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

  .contact-container {
    padding: 30px 20px;
  }
}

/* Black FREE badge */
.free-badge-black {
  display: inline-block;
  background: var(--text-dark);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 15px;
}

/* Fix Learn More button */
.app-preview-actions .btn-primary {
  border: 2px solid transparent;
}

.app-preview-actions .btn-primary:hover {
  border-color: transparent;
  transform: translateY(-2px);
}

/* Center app preview cards */
.app-preview-card {
  text-align: center;
}

.app-preview-header {
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.app-preview-card h3 {
  text-align: center;
}

/* Why item large for 2-column grid */
.why-item-large {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
  text-align: left;
}

.why-item-large:hover {
  background: rgba(255, 255, 255, 0.15);
}

.why-item-large h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--white);
}

.why-item-large p {
  opacity: 0.9;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
  .why-item-large {
    text-align: center;
  }
}

/* Blue border for Learn More buttons */
.btn-with-border {
  border: 2px solid var(--primary-color) !important;
}

.btn-with-border:hover {
  border-color: var(--secondary-color) !important;
}

/* Fix checkboxes alignment */
.app-preview-features li {
  display: flex;
  align-items: center;
  padding-left: 0;
  gap: 10px;
}

.app-preview-features li:before {
  position: relative;
  flex-shrink: 0;
}

.showcase-features li {
  display: flex;
  align-items: center;
  padding-left: 0;
  gap: 10px;
}

.showcase-features li:before {
  position: relative;
  flex-shrink: 0;
}

/* Center feature blocks content */
.feature-block {
  text-align: center;
}

.feature-block ul {
  text-align: left;
  max-width: 300px;
  margin: 0 auto;
}

/* Reduce why section padding */
.why-section-alt {
  padding: 50px 20px;
}

/* Fix Privacy Policy button centering */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Position FREE badge above logo */
.showcase-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.app-preview-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
