/* Cilson Bookkeeping Landing Page Styles */

/* CSS Variables */
:root {
  --primary-color: #1e3a8a;
  --secondary-color: #1e40af;
  --accent-color: #2563eb;
  --text-dark: #1f2937;
  --text-light: #4b5563;
  --text-lighter: #6b7280;
  --background-light: #f8fafc;
  --background-white: #ffffff;
  --border-color: #e5e7eb;
  --success-green: #059669;
  --warning-orange: #d97706;
}

/* Header */
.header {
  background-color: white;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo {
  height: 60px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

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

.nav-cta {
  background-color: var(--accent-color);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background-color: var(--secondary-color);
  color: white !important;
}

/* Adjust hero section for fixed header */
.hero {
  margin-top: 72px;
}
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Sections */
.section {
  padding: 4rem 0;
}

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

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

.hero h1 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.cta-button.primary {
  background-color: var(--accent-color);
  color: white;
}

.cta-button.primary:hover {
  background-color: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-cta {
  margin-top: 2rem;
}

/* Target Audience Section */
.target-audience {
  background-color: var(--background-light);
}

.target-audience h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.fit-criteria {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.fit-criteria h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.fit-criteria ul {
  list-style: none;
  padding: 0;
}

.fit-criteria li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 2rem;
}

.fit-criteria li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

.fit-criteria li:last-child {
  border-bottom: none;
}

.fit-note {
  font-style: italic;
  color: var(--text-lighter);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* Health Check Section */
.health-check h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.health-check-content ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.health-check-content li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 2rem;
}

.health-check-content li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.health-check-content li:last-child {
  border-bottom: none;
}

.health-check-note {
  font-style: italic;
  color: var(--text-lighter);
  background-color: var(--background-light);
  padding: 1rem;
  border-radius: 4px;
  border-left: 3px solid var(--accent-color);
}

/* Why Cilson Section */
.why-cilson {
  background-color: var(--background-light);
}

.why-cilson h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.why-cilson-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.why-cilson-text {
  max-width: none;
}

.differentiators {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.differentiators h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.differentiators li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 2rem;
}

.differentiators li:before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--warning-orange);
}

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

.goal-statement {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--background-light);
  border-radius: 4px;
  border-left: 4px solid var(--primary-color);
  font-weight: 500;
  color: var(--text-dark);
}

.why-cilson-image {
  text-align: center;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

.profile-caption {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
}

.profile-caption strong {
  color: var(--text-dark);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* Fit Assessment Section */
.fit-assessment h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.good-fit, .not-ideal-fit {
  padding: 2rem;
  border-radius: 8px;
}

.good-fit {
  background-color: white;
  border: 2px solid var(--success-green);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.not-ideal-fit {
  background-color: white;
  border: 2px solid var(--warning-orange);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.good-fit h3 {
  color: var(--success-green);
  margin-bottom: 1rem;
}

.not-ideal-fit h3 {
  color: var(--warning-orange);
  margin-bottom: 1rem;
}

.good-fit ul, .not-ideal-fit ul {
  list-style: none;
  padding: 0;
}

.good-fit li, .not-ideal-fit li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 1.5rem;
}

.good-fit li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

.not-ideal-fit li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--warning-orange);
  font-weight: bold;
}

.good-fit li:last-child, .not-ideal-fit li:last-child {
  border-bottom: none;
}

.cleanup-note {
  font-style: italic;
  color: var(--text-lighter);
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Process Section */
.process {
  background-color: var(--background-light);
}

.process h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.process-steps ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.process-steps li {
  counter-increment: step-counter;
  padding: 1.5rem 0 1.5rem 4rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.process-steps li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process-steps li:last-child {
  border-bottom: none;
}

.process-note {
  font-style: italic;
  color: var(--text-lighter);
  margin-top: 2rem;
  padding: 1rem;
  background-color: white;
  border-radius: 4px;
  border-left: 3px solid var(--accent-color);
}

/* Final CTA Section */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.final-cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

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

.cta-container {
  margin-top: 2rem;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 120px;
  height: 120px;
}

.footer-links {
  text-align: right;
  max-width: 600px;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-content a {
  color: var(--accent-color);
  text-decoration: none;
}

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

.disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 2rem auto 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 3rem 0;
    margin-top: 72px;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-cilson-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .why-cilson h2 {
    text-align: center;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 15px;
  }
  
  .nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .nav-cta {
    order: 1;
    width: 100%;
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-links {
    text-align: center;
    max-width: none;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.875rem;
  }
  
  .hero-sub, .hero-description {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
