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

:root {
  --primary-color: #047857;
  --primary-dark: #065f46;
  --secondary-color: #0d9488;
  --accent-color: #14b8a6;
  --success-color: #10b981;
  --text-color: #111827;
  --text-light: #4b5563;
  --bg-white: #ffffff;
  --bg-light: #f3f4f6;
  --bg-dark: #1f2937;
  --border-color: #d1d5db;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-white);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.logo svg {
  filter: drop-shadow(0 2px 4px rgba(4, 120, 87, 0.2));
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-color);
  letter-spacing: -0.025em;
}

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

.nav-menu a:not(.btn-primary) {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a:not(.btn-primary)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:not(.btn-primary):hover::after {
  width: 100%;
}

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

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

.nav-menu a.nav-link.active::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--bg-white);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 120, 87, 0.35);
}

.nav-menu .btn-primary {
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem;
}

.nav-menu .btn-primary::after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(165deg, #f0fdf4 0%, #ffffff 50%, #f3f4f6 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(4, 120, 87, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  color: var(--text-color);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.hero-text h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin-top: 1.5rem;
  border-radius: 10px;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.btn-large {
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(4, 120, 87, 0.3);
  border-color: transparent;
}

.hero-features {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 600;
  padding: 0.5rem 0;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 20px;
  opacity: 0.15;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  position: relative;
  z-index: 1;
}

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

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-color);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 1.5rem auto 0;
  border-radius: 10px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  word-break: break-word;
  overflow-wrap: break-word;
}

.solutions-grid {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.card {
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(4, 120, 87, 0.12);
  border-color: var(--accent-color);
}

.card-icon {
  margin-bottom: 1.75rem;
  display: inline-flex;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(4, 120, 87, 0.1),
    rgba(20, 184, 166, 0.1)
  );
  border-radius: 16px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card p {
  color: var(--text-light);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  word-break: break-word;
  overflow-wrap: break-word;
}

.card-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.feature-section {
  padding: 6rem 0;
}

.bg-light {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-content.reverse .feature-image {
  order: 2;
}

.feature-content.reverse .feature-text {
  order: 1;
}

.feature-image {
  position: relative;
}

.feature-image::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(4, 120, 87, 0.15),
    rgba(20, 184, 166, 0.15)
  );
  border-radius: 20px;
  z-index: -1;
}

.feature-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.feature-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.feature-text p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  word-break: break-word;
  overflow-wrap: break-word;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  padding: 1rem;
  background: rgba(4, 120, 87, 0.03);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
  word-break: break-word;
  overflow-wrap: break-word;
}

.feature-list svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.highlight-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #374151 100%);
  color: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.highlight-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.highlight-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.highlight-content h2 {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  color: var(--bg-white);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.highlight-subtitle {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-weight: 700;
  color: var(--accent-color);
  word-break: break-word;
  overflow-wrap: break-word;
}

.highlight-description {
  font-size: 1.125rem;
  line-height: 1.9;
  opacity: 0.85;
  word-break: break-word;
  overflow-wrap: break-word;
}

.stats-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 20px;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(4, 120, 87, 0.15);
  border-color: var(--accent-color);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 600;
}

.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(4, 120, 87, 0.12);
  border-color: var(--accent-color);
}

.testimonial-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.testimonial-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.05);
}

.testimonial-content {
  padding: 2.25rem;
}

.testimonial-content h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.testimonial-content p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.75rem;
  line-height: 1.8;
  font-size: 0.9375rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--bg-light);
}

.testimonial-author strong {
  color: var(--text-color);
  font-weight: 700;
  font-size: 0.9375rem;
}

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

.contact-page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  text-align: center;
}

.contact-page-hero h1 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.contact-section {
  padding: 6rem 0;
  background: linear-gradient(165deg, #f0fdf4 0%, #ffffff 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-color);
  text-align: left;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.8;
  font-size: 1.0625rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(4, 120, 87, 0.03);
  border-radius: 16px;
  border-left: 3px solid var(--primary-color);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(4, 120, 87, 0.08);
  transform: translateX(5px);
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9375rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(4, 120, 87, 0.08);
  border: 1px solid var(--border-color);
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
  color: var(--text-color);
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1.125rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1);
}

.contact-form button {
  grid-column: 1 / -1;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--bg-white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(4, 120, 87, 0.35);
}

.footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #374151 100%);
  color: var(--bg-white);
  padding: 5rem 0 2.5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer-column a:hover {
  color: var(--accent-color);
  transform: translateX(3px);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-size: 0.9375rem;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero-content,
  .feature-content,
  .contact-content {
    grid-template-columns: 1fr !important;
    gap: 3.5rem;
  }

  .feature-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .feature-content.reverse .feature-image,
  .feature-content.reverse .feature-text {
    order: initial;
  }

  .feature-content .feature-image {
    order: 1;
  }

  .feature-content .feature-text {
    order: 2;
  }

  .feature-image {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .feature-image img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    display: block;
  }

  .feature-image::after {
    display: none;
  }

  .feature-text {
    text-align: center;
  }

  .feature-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .feature-text p {
    text-align: center;
  }

  .feature-list li {
    padding: 1rem;
    text-align: left;
  }

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

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

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

@media (max-width: 768px) {
.hero-buttons a {
    text-align: center;
  }
  .nav-container {
    padding: 1rem 1.5rem;
  }

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 80px 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu li:last-child {
    border-bottom: none;
    margin-top: 1rem;
  }

  .nav-menu a:not(.btn-primary) {
    display: block;
    padding: 1.25rem 0;
    font-size: 1.125rem;
  }

  .nav-menu .btn-primary {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    width: 100%;
  }

  .logo-text {
    font-size: 0.875rem;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero::before {
    top: -30%;
    right: -40%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle,
      rgba(4, 120, 87, 0.05) 0%,
      transparent 60%
    );
  }

  .hero-image::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    opacity: 0.8;
  }

  .feature-image::after {
    top: 10px;
    right: -10px;
    opacity: 0.8;
  }

  .feature-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }

  .feature-content .feature-image {
    order: 1 !important;
  }

  .feature-content .feature-text {
    order: 2 !important;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-large {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 0.875rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 1rem;
  }

  .feature-text h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
  }

  .feature-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .feature-text {
    text-align: center;
  }

  .feature-list {
    gap: 1rem;
  }

  .feature-list li {
    padding: 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .feature-list svg {
    width: 20px;
    height: 20px;
  }

  .feature-content {
    gap: 2.5rem;
  }

  .feature-image {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .feature-image img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    display: block;
  }

  .feature-image::after {
    display: none;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.75rem;
  }

  .card h3 {
    font-size: 1.25rem;
  }

  .card p {
    font-size: 0.9375rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .testimonial-image {
    height: 180px;
  }

  .testimonial-content {
    padding: 1.75rem;
  }

  .testimonial-content h3 {
    font-size: 1.125rem;
  }

  .testimonial-content p {
    font-size: 0.9375rem;
  }

  .contact-page-hero {
    padding: 5rem 0 3rem;
  }

  .contact-page-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .contact-page-hero p {
    font-size: 1rem;
  }

  .contact-info h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    text-align: center;
  }

  .contact-info > p {
    font-size: 1rem;
    text-align: center;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .highlight-content h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

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

  .highlight-description {
    font-size: 1rem;
  }

  .solutions-grid,
  .feature-section,
  .stats-section,
  .testimonials-section,
  .contact-section {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo svg {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 0.8125rem;
  }

  .hero::before {
    top: -20%;
    right: -50%;
    width: 120%;
    height: 80%;
    background: radial-gradient(
      circle,
      rgba(4, 120, 87, 0.04) 0%,
      transparent 50%
    );
  }

  .hero-image::before {
    top: -5px;
    left: -5px;
    right: 5px;
    bottom: 5px;
    opacity: 0.6;
  }

  .feature-image::after {
    top: 5px;
    right: -5px;
    opacity: 0.6;
  }

  .feature-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .feature-content .feature-image {
    order: 1 !important;
  }

  .feature-content .feature-text {
    order: 2 !important;
  }

  .hero-text h1 {
    font-size: 1.625rem;
  }

  .hero-description {
    font-size: 0.875rem;
  }

  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .feature-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
    text-align: center;
  }

  .feature-text p {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .feature-text {
    text-align: center;
  }

  .feature-list {
    gap: 0.75rem;
  }

  .feature-list li {
    padding: 0.75rem;
    font-size: 0.875rem;
    gap: 0.75rem;
    line-height: 1.5;
    text-align: left;
  }

  .feature-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .feature-content {
    gap: 2rem;
  }

  .feature-image {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .feature-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    display: block;
  }

  .feature-image::after {
    display: none;
  }

  .card {
    padding: 1.5rem;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }

  .stat-card {
    padding: 1.75rem 1.25rem;
  }

  .testimonial-image {
    height: 160px;
  }

  .testimonial-content {
    padding: 1.5rem;
  }

  .testimonial-content h3 {
    font-size: 1.0625rem;
  }

  .testimonial-content p {
    font-size: 0.875rem;
  }

  .highlight-content h2 {
    font-size: 1.75rem;
  }

  .highlight-subtitle {
    font-size: 1rem;
  }

  .highlight-description {
    font-size: 0.9375rem;
  }

  .contact-page-hero {
    padding: 4rem 0 2.5rem;
  }

  .contact-page-hero h1 {
    font-size: 1.625rem;
  }

  .contact-page-hero p {
    font-size: 0.9375rem;
  }

  .contact-info h2 {
    font-size: 1.5rem;
  }

  .contact-info > p {
    font-size: 0.9375rem;
  }

  .contact-form {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .contact-form button {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
  }

  .legal-page {
    padding: 3.5rem 0 2.5rem;
  }

  .legal-content h1 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .legal-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
  }

  .legal-section {
    margin-bottom: 2rem;
  }

  .legal-section h2 {
    font-size: 1.375rem;
    line-height: 1.4;
    margin-bottom: 0.875rem;
  }

  .legal-section h3 {
    font-size: 1.125rem;
    line-height: 1.45;
    margin: 1rem 0 0.75rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.9375rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}

.legal-page {
  padding: 6rem 0 4rem;
  background: var(--bg-white);
}

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

.legal-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-section h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 1.5rem 0 1rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-section p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.25rem;
}

.legal-section ul {
  margin: 1.25rem 0 1.25rem 2rem;
  list-style: disc;
}

.legal-section li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

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

.legal-section a:hover {
  color: var(--primary-dark);
}

.legal-section strong {
  font-weight: 600;
  color: var(--text-color);
}

.legal-back {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  text-align: center;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 4rem 0 3rem;
  }

  .legal-content h1 {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
  }

  .legal-intro {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .legal-section {
    margin-bottom: 2.5rem;
  }

  .legal-section h2 {
    font-size: 1.5rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .legal-section h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 1.25rem 0 0.875rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 1rem;
  }

  .legal-section ul {
    margin-left: 1.5rem;
  }
}

.success-notification {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  background: #ffffff;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(4, 120, 87, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--accent-color);
  max-width: 90%;
  width: auto;
}

.success-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  z-index: 10000;
}

.success-notification svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.success-notification span {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
