/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e3a5f;
  --primary-light: #2d4a6f;
  --accent: #0066cc;
  --accent-hover: #0052a3;
  --text: #374151;
  --text-light: #6b7280;
  --heading: #111827;
  --bg: #ffffff;
  --bg-subtle: #f9fafb;
  --bg-card: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1140px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header and Navigation */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition);
  position: relative;
}

nav ul a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

nav ul a:hover::after {
  width: 100%;
}

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

/* Current page indicator */
nav ul a[aria-current="page"] {
  color: var(--accent);
}

nav ul a[aria-current="page"]::after {
  width: 100%;
}

/* Mobile hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero section */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: #ffffff;
  padding: 7rem 1.5rem 6rem;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.15;
}

.hero .subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-credentials {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.hero-credentials .divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-image {
  flex-shrink: 0;
}

.hero-image img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Headshot placeholder */
.headshot-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 4px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Main content */
main {
  overflow-x: hidden;
}

/* Section styles */
section {
  padding: 5rem 1.5rem;
}

section.alt-bg {
  background: var(--bg-subtle);
}

.section-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
  color: var(--heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Lists */
ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

li {
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* CTA Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero .cta-button {
  background: #ffffff;
  color: var(--primary);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.hero .cta-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Card layout - 2x2 grid for 4 cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* 3-column variant for pricing cards */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

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

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Feature list with icons */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-text p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}

/* Intro section */
.intro {
  max-width: 800px;
}

.intro h2 {
  font-size: 2.25rem;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-col > div h2 {
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background: var(--bg-subtle);
  text-align: center;
}

.cta-section .section-content {
  max-width: 640px;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Testimonial */
.testimonial {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: #ffffff;
}

.testimonial .section-content {
  max-width: 720px;
  text-align: center;
}

blockquote {
  margin: 0;
}

blockquote p {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

blockquote cite {
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.9;
  color: #ffffff;
}

/* Empowerment callout */
.empowerment {
  background: var(--bg-subtle);
  border-left: 4px solid var(--accent);
  padding: 2rem 2.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 800px;
  margin: 0 auto;
}

.empowerment h3 {
  margin-bottom: 0.75rem;
}

.empowerment p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Page header */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: #ffffff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.page-header h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 0;
}

.page-header p {
  opacity: 0.9;
  margin-top: 0.75rem;
  font-size: 1.125rem;
}

/* Review cards */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition);
}

.review:hover {
  box-shadow: var(--shadow);
}

.review-content {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-author .avatar {
  width: 48px;
  height: 48px;
  background: var(--bg-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.125rem;
}

.review-author cite {
  font-style: normal;
  font-weight: 600;
  color: var(--heading);
}

.review-author .title {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--heading);
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Services/Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
}

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

.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card .description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card ul {
  margin: 0 0 1.5rem 0;
}

.pricing-card li {
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}

.pricing-card li::before {
  background: #10b981;
  top: 0.55em;
}

.pricing-card .cta-button {
  width: 100%;
  text-align: center;
}

/* Logo bar / Trust section */
.logos-section {
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.logos-label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.logo-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.logo-bar span {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light);
  opacity: 0.6;
}

/* Collapsible FAQ */
.faq-item details {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child details {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  font-size: 1.125rem;
}

.faq-item summary h3::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item details[open] summary h3::after {
  content: "-";
}

.faq-item details p {
  padding-bottom: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Footer */
footer {
  background: var(--heading);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 1.5rem 2rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

footer .copyright {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  /* Mobile navigation */
  .menu-toggle {
    display: block;
  }

  nav {
    position: relative;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  nav ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

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

  .nav-open nav ul {
    display: flex;
  }

  /* Hero responsive */
  .hero {
    padding: 4rem 1.5rem;
  }

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

  .hero-text {
    text-align: center;
    order: 2;
  }

  .hero-image {
    order: 1;
  }

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

  .hero .subtitle {
    font-size: 1.125rem;
  }

  .hero-credentials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .hero-image img,
  .headshot-placeholder {
    width: 180px;
    height: 180px;
  }

  h2 {
    font-size: 1.625rem;
  }

  section {
    padding: 3.5rem 1.5rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  blockquote p {
    font-size: 1.25rem;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-credentials {
    font-size: 0.8125rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}
