/* Professional Traditional Design - Clean & Minimal */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #2d3748;
  line-height: 1.6;
  font-size: 16px;
}

/* Header - Clean and Simple */
header {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.logo {
  position: absolute;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 32px;
  height: 32px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2d3748;
}

/* Hero Section - Clean and Professional */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background-color: #f7fafc;
  border-bottom: 1px solid #e2e8f0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.25rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  background-color: #2d3748;
  color: #ffffff;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: background-color 0.2s ease;
  border: 2px solid #2d3748;
}

.hero-btn:hover {
  background-color: #1a202c;
  border-color: #1a202c;
}

.hero-btn:first-child {
  background-color: #ffffff;
  color: #2d3748;
  border: 2px solid #2d3748;
}

.hero-btn:first-child:hover {
  background-color: #f7fafc;
}

.hero-tools-text {
  font-size: 14px;
  color: #718096;
  margin-bottom: 2rem;
  font-weight: 500;
}

.down-arrow {
  font-size: 24px;
  color: #a0aec0;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Integration Logos - Fixed Aspect Ratios */
.integration-logos {
  overflow: hidden;
  margin-top: 2rem;
}

.logo-track {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
  align-items: center;
}

.logo-track img {
  height: 36px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


/* Content Sections - Clean Layout */
.content-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.content-section:nth-child(even) {
  background-color: #f7fafc;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #1a202c;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.section-subheader, .benefit-subheader {
  font-size: 1.2rem;
  color: #4a5568;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Process Section - Clean Grid */
.process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.process-row:last-child {
  margin-bottom: 0;
}

.process-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
}

.process-text p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
}

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

.process-image img {
  max-width: 200px;
  height: auto;
  opacity: 0.8;
}

/* Benefits Section - Simple Grid */
.benefits-container {
  max-width: 1000px;
  margin: 0 auto;
}

.benefits-row {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

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

.benefit-circle {
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.benefit-circle:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e0;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.benefit-circle h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.benefit-circle p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
}

/* Plans Section - Professional Cards */
.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.plan-box {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
}

.plan-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e0;
}

.plan-box.popular {
  border-color: #2d3748;
  border-width: 2px;
}

.plan-box h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.maintenance {
  font-size: 1rem;
  color: #718096;
  margin-bottom: 1.5rem;
}

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

.maintenance-features li {
  margin-bottom: 0.75rem;
}

.maintenance-features p {
  margin: 0;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
}

.checkmark {
  color: #48bb78;
  font-weight: 600;
  margin-right: 0.5rem;
}

.plan-box > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
}

.plan-box > ul li {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: #2d3748;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Contact Section - Clean Form Area */
.contact-section {
  padding: 5rem 2rem;
  background-color: #f7fafc;
  text-align: center;
}

.contact-section .section-title {
  margin-bottom: 1rem;
}

.contact-section .section-subtitle {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer - Simple */
footer {
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

footer p {
  color: #718096;
  font-size: 1rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .process-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .benefits-row {
    grid-template-columns: 1fr;
  }
  
  .row-3, .row-4 {
    grid-template-columns: 1fr;
  }
  
  .plans-row {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Fixed mobile navigation */
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }
  
  .logo {
    position: relative;
    left: auto;
    justify-content: center;
  }
  
  .nav-links {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
  
  .nav-links li {
    margin: 0;
  }
  
  .nav-links a {
    font-size: 13px;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    display: block;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 1rem;
  }
  
  .content-section {
    padding: 4rem 1rem;
    margin-bottom: 2rem;
  }
  
  .process-row {
    padding: 0;
    margin-bottom: 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .benefit-circle {
    padding: 2rem 1.5rem;
  }
  
  /* Extra small screen navigation */
  .nav-links {
    gap: 0.5rem;
  }
  
  .nav-links a {
    font-size: 12px;
    padding: 0.4rem 0.6rem;
  }
  
  header {
    padding: 0.75rem;
  }
}

/* Additional button styles */
a[href="#contact"][style*="background-color: #1a202c"]:hover {
  background-color: #2d3748 !important;
}

a[href="mailto:sperry@entelech.net"]:hover {
  background-color: #f7fafc !important;
}

/* Mobile responsive for client experience section */
@media (max-width: 768px) {
  div[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
  }
  
  div[style*="grid-template-columns: 1fr 1fr"] > div {
    margin-bottom: 2rem !important;
  }
  
  /* Mobile responsive for work with us buttons */
  div[style*="display: flex; gap: 1rem; justify-content: center"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
  }
  
  div[style*="display: flex; gap: 1rem; justify-content: center"] a {
    width: 100% !important;
    max-width: 280px !important;
  }
  
  /* Mobile form styling */
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* Form styling */
button[type="submit"]:hover {
  background-color: #1a202c !important;
}

input:focus, textarea:focus, select:focus {
  border-color: #2d3748 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(45, 55, 72, 0.1) !important;
}

/* Super attractive Free Audit button */
a[href="#contact"][style*="linear-gradient"] {
  animation: pulse-shadow 2s infinite;
}

a[href="#contact"][style*="linear-gradient"]:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 15px 40px rgba(26, 32, 44, 0.4) !important;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%) !important;
}

a[href="#contact"][style*="linear-gradient"]:active {
  transform: translateY(-1px) scale(1.02) !important;
}

@keyframes pulse-shadow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(26, 32, 44, 0.3), 0 0 0 0 rgba(26, 32, 44, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(26, 32, 44, 0.3), 0 0 0 10px rgba(26, 32, 44, 0.1);
  }
}

/* Contact page responsive design */
@media (max-width: 768px) {
  div[style*="display: grid; grid-template-columns: 1fr 1fr; gap: 4rem"] {
    display: block !important;
    gap: 0 !important;
  }
  
  div[style*="display: grid; grid-template-columns: 1fr 1fr; gap: 4rem"] > div:first-child {
    margin-bottom: 3rem;
  }
  
  /* Mobile responsive for super attractive button */
  a[href*="typeform.com"][style*="linear-gradient"] {
    font-size: 1.2rem !important;
    padding: 1rem 2rem !important;
  }
  
  /* Mobile responsive for process steps */
  div[style*="grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  div[style*="margin-left: 3rem"] {
    margin-left: 0 !important;
  }
}