/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3e1f;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, #4a7c59 0%, #2d5f3e 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #4a7c59;
  border: 2px solid #4a7c59;
}

.btn-secondary:hover {
  background: #4a7c59;
  color: white;
}

.btn-outline {
  background: transparent;
  color: #333;
  border: 2px solid #e0e0e0;
}

.btn-outline:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
  min-height: 56px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
}

.nav {
  padding: 1rem 0;
}

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

.logo h1 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #4a7c59 0%, #2d5f3e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.logo span {
  font-size: 0.9rem;
  color: #666;
  display: block;
  margin-top: -5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #4a7c59;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f0f7f4 0%, #d4e8dc 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.highlight {
  background: linear-gradient(135deg, #4a7c59 0%, #2d5f3e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.dashboard-preview {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  max-width: 100%;
  margin: 0 auto;
}

.preview-header {
  background: #f8f9fa;
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.preview-dots {
  display: flex;
  gap: 8px;
}

.preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
}

.preview-dots span:nth-child(1) {
  background: #ff5f56;
}

.preview-dots span:nth-child(2) {
  background: #ffbd2e;
}

.preview-dots span:nth-child(3) {
  background: #27ca3f;
}

.preview-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-card {
  background: #f8faf9;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #4a7c59;
}

.metric-card h3 {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: #333;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Medium screens: 2 columns for features */
@media (min-width: 769px) and (max-width: 1150px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 124, 89, 0.15);
  border-color: #4a7c59;
}

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

.feature-card h3 {
  color: #333;
  margin-bottom: 1rem;
}

.feature-card p {
  margin-bottom: 1.5rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #666;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5a9b6b;
  font-weight: bold;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Medium screens: 2 columns for services */
@media (min-width: 769px) and (max-width: 1150px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4a7c59 0%, #2d5f3e 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: white;
}

.benefits-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-icon {
  font-size: 2rem;
  margin-top: 0.5rem;
}

.benefit-item h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.benefits-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #4a7c59;
  display: block;
}

.stat-unit {
  font-size: 1.8rem;
  font-weight: 500;
  color: #999;
  margin-left: 2px;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: #f8f9fa;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Medium screens: 2 columns for pricing (3rd card goes to next row) */
@media (min-width: 769px) and (max-width: 1150px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-option:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 124, 89, 0.15);
  border-color: #4a7c59;
}

.pricing-card.featured {
  border-color: #4a7c59;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(74, 124, 89, 0.25);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4a7c59 0%, #2d5f3e 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.2rem;
  font-weight: 500;
  color: #4a7c59;
  margin-right: 4px;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #4a7c59;
}

.period {
  font-size: 1rem;
  color: #666;
  margin-left: 4px;
}

.pricing-description {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5a9b6b;
  font-weight: bold;
  font-size: 1.1rem;
}

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

.pricing-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.free-trial-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #4a7c59 0%, #2d5f3e 100%);
  padding: 2.5rem 3rem;
  border-radius: 16px;
  color: white;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(74, 124, 89, 0.3);
}

.trial-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.trial-content h3 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
}

.trial-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.6;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pricing-option {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.option-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.option-icon {
  font-size: 1.8rem;
}

.pricing-option h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}

.pricing-option p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.pricing-note {
  font-size: 0.9rem !important;
  color: #999 !important;
  margin-top: 2rem !important;
  font-style: italic;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #4a7c59 0%, #2d5f3e 100%);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: white;
  color: #4a7c59;
}

.cta .btn-primary:hover {
  background: #f5f5f5;
}

.cta .btn-outline {
  border-color: white;
  color: white;
}

.cta .btn-outline:hover {
  background: white;
  color: #4a7c59;
}

/* Footer */
.footer {
  padding: 60px 0 20px;
  background: #1a1a1a;
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: #ccc;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #5a9b6b;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  margin: 0;
}

/* Responsive Design */

/* Tablet landscape and smaller desktops (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-content {
    gap: 3rem;
  }

  .benefits-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefits-stats {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-item {
    flex: 1;
    max-width: 250px;
  }

  .results-features {
    gap: 2rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile and tablets (768px and below) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    padding: 0.75rem 0;
  }

  .nav-content {
    position: relative;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo span {
    font-size: 0.8rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    display: block;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    min-height: 52px;
    font-size: 1rem;
  }

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

  .dashboard-preview {
    transform: none;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
  }

  .preview-content {
    padding: 1.5rem;
  }

  .metric-card {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }

  .metric-card h3 {
    font-size: 0.85rem;
  }

  .metric-value {
    font-size: 1.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .benefits-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .benefit-item {
    margin-bottom: 1.5rem;
  }

  .benefit-icon {
    font-size: 1.8rem;
  }

  .benefits-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    margin: 0;
    padding: 1.5rem;
  }

  .cta {
    padding: 60px 0;
  }

  .cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 10px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .amount {
    font-size: 2.5rem;
  }

  .currency {
    font-size: 1rem;
  }

  .period {
    font-size: 0.9rem;
  }

  .pricing-options {
    grid-template-columns: 1fr;
  }

  .free-trial-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1rem;
  }

  .trial-icon {
    font-size: 3rem;
  }

  .trial-content h3 {
    font-size: 1.5rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number-large {
    font-size: 2.5rem;
  }

  .stat-icon {
    font-size: 2.5rem;
  }

  .results-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .result-item {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }
}

/* Small mobile phones (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 5px;
  }

  .hero-buttons .btn {
    max-width: 100%;
    font-size: 0.95rem;
    padding: 14px 20px;
  }

  .hero-image {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    justify-content: center;
  }

  .dashboard-preview {
    margin: 0 auto;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
  }

  .preview-content {
    padding: 1rem;
  }

  .metric-card {
    padding: 0.75rem;
  }

  .metric-card h3 {
    font-size: 0.8rem;
  }

  .metric-value {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .feature-card,
  .service-card {
    padding: 1.25rem;
  }

  .feature-icon {
    font-size: 2.2rem;
  }

  .service-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .benefit-icon {
    font-size: 1.6rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 1.25rem;
  }

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

  .stat-number-large {
    font-size: 2.2rem;
  }

  .stat-icon {
    font-size: 2.2rem;
  }

  .cta h2 {
    font-size: 1.75rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .amount {
    font-size: 2.2rem;
  }

  .pricing-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-option {
    padding: 1.25rem;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .logo span {
    font-size: 0.75rem;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 10px 14px;
  }
}

/* Very small screens (360px and below) */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .pricing-card,
  .feature-card,
  .service-card {
    padding: 1rem;
  }

  .modal-content {
    margin: 10px;
    max-width: calc(100vw - 20px);
  }

  .modal-header,
  .modal-body {
    padding: 1rem;
  }

  .form-row {
    gap: 0.75rem;
  }

  .radio-group,
  .checkbox-group {
    gap: 0.5rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .modal-content {
    max-height: 85vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.service-card,
.benefit-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Touch and Focus styles */
.btn:focus,
.nav-menu a:focus {
  outline: 2px solid #4a7c59;
  outline-offset: 2px;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 48px;
    padding: 14px 24px;
  }

  .nav-menu a {
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
  }

  .feature-card:hover,
  .service-card:hover,
  .pricing-card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* Prevent zoom on input focus on iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
}

.modal-close {
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  box-sizing: border-box;
}

.modal-close:hover {
  color: #4a7c59;
  background: #f5f5f5;
}

.modal-body {
  padding: 2rem;
}

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

/* Form Styles */
.signup-form {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a7c59;
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff4757;
}

/* Radio Group Styles */
.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.radio-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.radio-option:hover {
  border-color: #4a7c59;
  background: #f2f8f4;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  margin-right: 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.radio-option input[type="radio"]:checked {
  border-color: #4a7c59;
  background: #4a7c59;
}

.radio-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  background: white;
  box-sizing: border-box;
}

.radio-option input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
}

.radio-option label {
  margin: 0;
  cursor: pointer;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
  flex: 1;
}

.radio-option input[type="radio"]:checked+label {
  color: #4a7c59;
}

.radio-option.selected {
  border-color: #4a7c59;
  background: #f2f8f4;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}

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

.form-checkbox {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 2px;
  transform: scale(1.2);
}

.form-checkbox label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
}

.form-checkbox label a {
  color: #4a7c59;
  text-decoration: none;
}

.form-checkbox label a:hover {
  text-decoration: underline;
}

.error-message {
  display: block;
  color: #ff4757;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.btn-full {
  width: 100% !important;
  max-width: none !important;
  margin-top: 1rem;
}

.btn-loading {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: inline;
}

/* Signup Benefits */
.signup-benefits {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.signup-benefits h4 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.1rem;
}

.signup-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signup-benefits li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.95rem;
}

/* Success Modal */
.success-modal .modal-body {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.success-modal h2 {
  color: #5a9b6b;
  margin-bottom: 1rem;
}

.success-modal p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

.next-steps {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: left;
}

.next-steps h4 {
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #4a7c59;
  color: white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
}

.step-text {
  color: #555;
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }

  .modal-content {
    max-height: 95vh;
  }

  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .radio-group {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .radio-option {
    padding: 10px 14px;
  }

  .success-modal .modal-body {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {

  .modal-header,
  .modal-body {
    padding: 1rem;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .success-icon {
    font-size: 3rem;
  }
}

/* Demo Form Styles */
.demo-info {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f2f8f4;
  border-radius: 12px;
  border: 1px solid #d4e8dc;
}

.demo-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-info-icon {
  font-size: 1.3rem;
}

.demo-info-text {
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.form-checkbox-inline:hover {
  border-color: #4a7c59;
  background: #f2f8f4;
}

.form-checkbox-inline input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: #4a7c59;
}

.form-checkbox-inline label {
  margin: 0;
  cursor: pointer;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
  flex: 1;
}

.form-checkbox-inline input[type="checkbox"]:checked+label {
  color: #4a7c59;
}

.form-checkbox-inline:has(input[type="checkbox"]:checked) {
  border-color: #4a7c59;
  background: #f2f8f4;
}

.demo-features {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  margin-top: 2rem;
}

.demo-features h4 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.1rem;
}

.demo-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.demo-features li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.95rem;
}

/* Contact Form Styles */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: #f2f8f4;
  border-color: #4a7c59;
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-text {
  color: #555;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-note {
  background: #fff8e6;
  border: 1px solid #ffe5a0;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.contact-note p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-note strong {
  color: #333;
}

/* Pricing Form Styles */
.selected-plan-info {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #4a7c59 0%, #2d5f3e 100%);
  border-radius: 12px;
  margin-bottom: 2rem;
  color: white;
}

.selected-plan-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.selected-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.selected-plan-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.selected-plan-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.selected-plan-price .period {
  font-size: 1.2rem;
  color: white;
}

.pricing-note-modal {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.pricing-note-modal p {
  margin: 0;
  color: #2e7d32;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-note-modal strong {
  color: #1b5e20;
}

/* Mobile Responsive for Demo Form */
@media (max-width: 768px) {
  .demo-info {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .demo-info-item {
    justify-content: center;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .form-checkbox-inline {
    padding: 10px 14px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .selected-plan-info {
    padding: 1.5rem;
  }

  .selected-plan-info h3 {
    font-size: 1.5rem;
  }

  .selected-plan-price .amount {
    font-size: 2.5rem;
  }
}

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  background: white;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Medium screens: 2 columns for stats */
@media (min-width: 769px) and (max-width: 1150px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.15);
  border-color: #4a7c59;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-number-large {
  font-size: 3.5rem;
  font-weight: 700;
  color: #4a7c59;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-plus {
  font-size: 2rem;
  color: #999;
  margin-left: 4px;
}

.stat-label-large {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

/* Results Features */
.results-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 124, 89, 0.15);
  border-color: #4a7c59;
}

.result-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.result-content h3 {
  margin-bottom: 0.75rem;
  color: #333;
  font-size: 1.2rem;
}

.result-content p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #4a7c59;
  box-shadow: 0 5px 20px rgba(74, 124, 89, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}

.faq-icon {
  font-size: 1.5rem;
  color: #4a7c59;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.7;
}

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.faq-answer li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #666;
}

.faq-answer li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5a9b6b;
  font-weight: bold;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.faq-cta p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Print styles */
@media print {

  .header,
  .nav-toggle,
  .cta,
  .footer {
    display: none;
  }

  .hero {
    padding: 20px 0;
    background: white;
  }

  .features,
  .services,
  .benefits {
    padding: 20px 0;
    background: white;
  }
}
