:root {
  --primary: #2c5f41;
  --primary-light: #4a7c5d;
  --primary-dark: #1a3d2e;
  --secondary: #f7f9fc;
  --accent: #e8f2ed;
  --text-dark: #1a202c;
  --text-light: #4a5568;
  --text-muted: #718096;
  --white: #ffffff;
  --border-light: #e2e8f0;
  --success: #38a169;
  --shadow: 0 4px 20px rgba(44, 95, 65, 0.08);
  --shadow-hover: 0 8px 30px rgba(44, 95, 65, 0.15);
  --radius: 12px;
  --font-headings: 'Merriweather', serif;
  --font-body: 'Open Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 24px;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 24px;
  gap: 16px;
  flex-direction: column;
}

.mobile-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--primary);
}

.floating-contact {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-contact:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

main {
  margin-top: 80px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  padding: 120px 0 200px;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 32px;
}

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

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 18px 36px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

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

.cta-button.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.floating-stats {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

.stat-card {
  position: absolute;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 180px;
  transition: all 0.3s ease;
}

.stat-card:nth-child(1) {
  top: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.stat-card:nth-child(2) {
  top: 10%;
  right: 40%;
  animation: float 6s ease-in-out infinite 1s;
}

.stat-card:nth-child(3) {
  top: 50%;
  right: 5%;
  animation: float 6s ease-in-out infinite 2s;
}

.stat-card:nth-child(4) {
  top: 70%;
  right: 35%;
  animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-icon {
  color: var(--primary);
  margin-bottom: 12px;
}

.stat-value {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

.wave-divider.bottom {
  top: -1px;
  bottom: auto;
  transform: rotate(180deg);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
}

.services-overview {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.service-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-content {
  padding: 32px;
}

.service-content h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.quick-answers {
  padding: 120px 0;
  background: var(--secondary);
}

.quick-answers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.quick-answer {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.quick-answer h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.quick-answer p {
  color: var(--text-light);
  line-height: 1.6;
}

.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.faq-question {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 24px 0;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  color: var(--primary);
  margin-right: 16px;
  flex-shrink: 0;
}

.faq-question h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  flex: 1;
  font-weight: 400;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-left: 16px;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-left: 56px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  padding: 120px 0;
  background: var(--accent);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 48px;
  align-content: start;
}

.footer-section h3 {
  font-family: var(--font-headings);
  margin-bottom: 24px;
  color: var(--white);
}

.footer-section p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  padding: 120px 0 200px;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  max-width: 600px;
}

.page-hero h1 {
  font-family: var(--font-headings);
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.6;
}

.page-hero-image {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  max-width: 40%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.about-content,
.diagnostic-overview {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.content-main {
  font-size: 1.125rem;
  line-height: 1.7;
}

.content-section {
  margin-bottom: 48px;
}

.content-section h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
}

.content-section p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.content-sidebar {
  position: sticky;
  top: 120px;
}

.info-card {
  background: var(--accent);
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.info-card h3 {
  font-family: var(--font-headings);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  color: var(--text-light);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.info-card li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
}

.expertise-section {
  padding: 120px 0;
  background: var(--secondary);
}

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

.expertise-card {
  text-align: center;
  background: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.expertise-number {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.expertise-card h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.expertise-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.methodology-section {
  padding: 120px 0;
  background: var(--white);
}

.methodology-steps {
  display: grid;
  gap: 48px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.step-card:nth-child(even) {
  grid-template-columns: 1fr auto;
}

.step-card:nth-child(even) .step-content {
  order: -1;
}

.step-number {
  font-family: var(--font-headings);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  width: 100px;
  text-align: center;
}

.step-content h3 {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.step-content p {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.step-image {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services-detailed {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.service-detail.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-info {
  order: 2;
}

.service-detail.reverse .service-visual {
  order: 1;
}

.service-info h2 {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
}

.service-info > p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-benefits,
.service-process {
  margin-bottom: 32px;
}

.service-benefits h3,
.service-process h3 {
  font-family: var(--font-headings);
  color: var(--text-dark);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.service-benefits ul {
  list-style: none;
}

.service-benefits li {
  color: var(--text-light);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.service-benefits li::before {
  content: '✓';
  color: var(--success);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-process p {
  color: var(--text-light);
  line-height: 1.6;
}

.service-visual {
  position: relative;
}

.service-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.stat-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.additional-services {
  padding: 120px 0;
  background: var(--secondary);
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.additional-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.additional-icon {
  color: var(--primary);
  margin-bottom: 24px;
}

.additional-card h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.additional-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.pricing-approach {
  padding: 120px 0;
  background: var(--white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  padding: 48px 32px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card.highlighted {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.pricing-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 32px;
}

.pricing-features {
  text-align: left;
}

.feature {
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.contact-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  padding: 120px 0 80px;
  text-align: center;
}

.contact-hero-content h1 {
  font-family: var(--font-headings);
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
}

.contact-hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-methods {
  margin-bottom: 48px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--accent);
  border-radius: var(--radius);
}

.method-icon {
  color: var(--primary);
  margin-right: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.method-content h3 {
  font-family: var(--font-headings);
  color: var(--text-dark);
  margin-bottom: 8px;
}

.method-content p {
  color: var(--text-light);
  margin-bottom: 4px;
}

.method-content a {
  color: var(--primary);
  text-decoration: none;
}

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

.method-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.contact-additional h3 {
  font-family: var(--font-headings);
  color: var(--text-dark);
  margin-bottom: 24px;
}

.additional-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option-link {
  display: flex;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.option-link:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.option-icon {
  color: var(--primary);
  margin-right: 16px;
}

.option-text strong {
  display: block;
  color: var(--text-dark);
}

.option-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-container {
  background: var(--accent);
  padding: 48px;
  border-radius: var(--radius);
}

.form-header {
  margin-bottom: 32px;
}

.form-header h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.form-header p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form,
.diagnostic-form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 95, 65, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
}

.form-checkbox label {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: none;
}

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

.office-location {
  padding: 120px 0;
  background: var(--secondary);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-info h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.location-info p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 32px;
}

.location-details {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.detail-item {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.detail-item strong {
  color: var(--text-dark);
}

.location-note {
  font-style: italic;
  color: var(--text-muted);
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.engagement-section {
  padding: 120px 0;
  background: var(--white);
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.engagement-card {
  text-align: center;
  padding: 48px 32px;
}

.engagement-icon {
  color: var(--primary);
  margin-bottom: 24px;
}

.engagement-card h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.engagement-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.diagnostic-info h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.diagnostic-info > p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 48px;
}

.diagnostic-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-content h3 {
  font-family: var(--font-headings);
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.diagnostic-form {
  position: sticky;
  top: 120px;
}

.form-container {
  background: var(--accent);
  padding: 48px;
  border-radius: var(--radius);
}

.form-container h3 {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.form-container > p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

.diagnostic-areas {
  padding: 120px 0;
  background: var(--secondary);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.area-card {
  background: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.area-icon {
  color: var(--primary);
  margin-bottom: 24px;
}

.area-card h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.area-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.diagnostic-benefits {
  padding: 120px 0;
  background: var(--white);
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-text h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.benefits-text > p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 32px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.diagnostic-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.next-steps {
  padding: 120px 0;
  background: var(--secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.step-option {
  background: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.step-option h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.step-option p {
  color: var(--text-light);
  line-height: 1.6;
}

.thanks-section {
  padding: 120px 0;
  background: var(--secondary);
  text-align: center;
}

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

.thanks-icon {
  color: var(--success);
  margin-bottom: 32px;
}

.thanks-content h1 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
}

.thanks-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 48px;
}

.next-steps h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
  text-align: left;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-headings);
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-reminder {
  background: var(--accent);
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 48px;
}

.contact-reminder h3 {
  font-family: var(--font-headings);
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-reminder a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-reminder a:hover {
  text-decoration: underline;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 120px 0;
  background: var(--white);
}

.legal-header {
  text-align: center;
  margin-bottom: 80px;
}

.legal-header h1 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 400;
}

.legal-date {
  color: var(--text-muted);
  font-style: italic;
}

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

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
}

.legal-section h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 32px 0 16px;
}

.legal-section p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 32px;
}

.legal-section li {
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 24px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: var(--success);
  color: var(--white);
}

.cookie-btn.accept:hover {
  background: #2f855a;
}

.cookie-btn.decline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn.decline:hover {
  background: var(--white);
  color: var(--text-dark);
}

.cookie-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
}

.cookie-link:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .floating-stats {
    display: none;
  }
  
  .hero {
    text-align: center;
  }
  
  .page-hero {
    text-align: center;
  }
  
  .page-hero-image {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: 48px;
  }
  
  .content-grid,
  .contact-grid,
  .diagnostic-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .service-detail.reverse .service-info,
  .service-detail.reverse .service-visual {
    order: unset;
  }
  
  .step-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .step-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .step-card:nth-child(even) .step-content {
    order: unset;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-info {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .location-content,
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .diagnostic-form {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero,
  .page-hero {
    padding: 80px 0 120px;
  }
  
  .services-overview,
  .quick-answers,
  .faq,
  .cta-section,
  .about-content,
  .diagnostic-overview,
  .expertise-section,
  .methodology-section,
  .services-detailed,
  .additional-services,
  .pricing-approach,
  .contact-content,
  .office-location,
  .engagement-section,
  .diagnostic-areas,
  .diagnostic-benefits,
  .next-steps,
  .thanks-section,
  .legal-page {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .services-grid,
  .quick-answers-grid,
  .expertise-grid,
  .additional-grid,
  .pricing-cards,
  .engagements-grid,
  .areas-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .floating-contact {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }
  
  .contact-form-container,
  .form-container {
    padding: 32px 24px;
  }
  
  .footer-info {
    padding: 32px 24px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .thanks-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .steps-list {
    text-align: center;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .service-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .nav-container {
    padding: 12px 16px;
  }
  
  .hero,
  .page-hero {
    padding: 60px 0 100px;
  }
  
  .hero-subtitle,
  .page-hero p {
    font-size: 1.125rem;
  }
  
  .service-detail {
    margin-bottom: 80px;
  }
  
  .methodology-steps {
    gap: 32px;
  }
  
  .step-number {
    font-size: 3rem;
  }
  
  .expertise-number {
    font-size: 2.5rem;
  }
}

.iti {
  width: 100%;
}

.iti__tel-input {
  width: 100%;
  padding: 16px 60px 16px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--white);
  transition: all 0.3s ease;
}

.iti__tel-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 95, 65, 0.1);
}

.iti__country-list {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.iti__country-list .iti__country:hover {
  background-color: var(--accent);
}

.iti__country-list .iti__country.iti__highlight {
  background-color: var(--primary);
  color: var(--white);
}