@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary-color: #C0681B;
  --secondary-color: #1D9591;
  --accent-color: #3A3FDF;
  --bg-color: #FFFFFF;
  --bg-alt: #F8F9FA;
  --text-color: #212529;
  --text-muted: #6C757D;
  --border-light: #DEE2E6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  background: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.625rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
}

h6 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.navbar {
  position: relative;
  background: var(--bg-color);
  border-bottom: 2px solid var(--border-light);
  padding: 24px 0;
  z-index: 100;
}

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

.logo {
  font-family: 'Roboto', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo:hover {
  color: var(--text-color);
}

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.625rem;
  color: var(--text-color);
  cursor: pointer;
  padding: 12px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(192,104,27,0.05) 0%, rgba(29,149,145,0.05) 100%);
  border-bottom: 8px solid var(--primary-color);
}

.hero-content {
  padding: 72px 0;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--text-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.btn-primary:hover {
  background: var(--text-color);
  border-color: var(--text-color);
  color: var(--bg-color);
}

.btn-secondary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-title {
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 24px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

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

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

.feature {
  padding: 36px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-bottom: 24px;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card {
  background: var(--bg-color);
  border: 1px solid var(--border-light);
  padding: 8px;
  transition: transform 0.2s ease;
}

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

.card img {
  width: 100%;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.card-link {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 48px 0;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.testimonial {
  padding: 36px;
  background: var(--bg-color);
  border-left: 4px solid var(--primary-color);
  margin-bottom: 36px;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-color);
  line-height: 1.7;
}

.testimonial-author {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-color);
  text-align: center;
  padding: 96px 0;
  border-bottom: none;
}

.cta-section h2 {
  color: var(--bg-color);
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 36px;
  opacity: 0.95;
}

.cta-section .btn {
  color: var(--primary-color);
  background: var(--bg-color);
  border-color: var(--bg-color);
}

.cta-section .btn:hover {
  background: transparent;
  color: var(--bg-color);
}

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

.form-label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  background: var(--bg-color);
  border: 2px solid var(--border-light);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.footer-contact {
  background: var(--bg-color);
  padding: 72px 0 48px;
  border-top: 2px solid var(--primary-color);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  margin-bottom: 48px;
}

.contact-info h4,
.footer-links h4,
.hours-info h4 {
  font-size: 1.125rem;
  margin-bottom: 24px;
  color: var(--text-color);
  font-weight: 600;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.hours-info p {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.faq-question {
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}

.faq-question::before {
  content: 'Q';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.faq-answer {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 24px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 24px;
  border: 8px solid var(--bg-alt);
}

.team-name {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.price-table {
  background: var(--bg-alt);
  border: 2px solid var(--border-light);
  padding: 36px;
}

.price-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 24px;
}

.price-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-features {
  list-style: none;
  margin-bottom: 36px;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 3px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%, 100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.625rem;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.625rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .navbar .container {
    position: relative;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.visible {
    display: flex;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 48px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .section {
    padding: 48px 0;
  }

  .grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }

  .feature {
    padding: 24px;
  }

  .footer-grid {
    gap: 36px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .section {
    padding: 36px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }
}