:root {
  --primary-color: #2563eb;
  --secondary-color: #7c3aed;
  --accent-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition-base: all 0.3s ease;
}

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

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

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

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

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-base);
}

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

.main-navigation {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--bg-light);
  color: var(--primary-color);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.hero-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-story {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  border-left: 4px solid var(--accent-color);
}

.story-intro {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  margin-top: 40px;
  text-align: center;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  max-width: 100%;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

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

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: -30px auto 50px;
}

.problems-section,
.solution-section,
.features-section,
.cases-section,
.testimonials-section {
  padding: 80px 20px;
}

.problems-section {
  background: var(--bg-light);
}

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

.problem-card,
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.problem-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.problem-icon,
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 20px;
}

.problem-card h3,
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.problem-card p,
.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

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

.solution-benefits {
  list-style: none;
  margin-top: 20px;
}

.solution-benefits li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}

.solution-benefits i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.solution-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.cases-grid,
.testimonials-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.case-card,
.testimonial-card,
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.case-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.case-card img,
.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.case-content,
.blog-content {
  padding: 25px;
}

.case-result {
  color: var(--success-color);
  font-weight: 600;
  margin-bottom: 10px;
}

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

.testimonial-rating {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 5px;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links,
.footer-contacts {
  list-style: none;
}

.footer-links li,
.footer-contacts li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contacts a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

.footer-links a:hover,
.footer-contacts a:hover {
  color: white;
}

.footer-contacts i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 25px;
  z-index: 10000;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

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

.btn-accept-all:hover {
  background: #059669;
}

.btn-customize {
  background: var(--bg-light);
  color: var(--text-dark);
}

.btn-customize:hover {
  background: var(--border-color);
}

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

.btn-decline:hover {
  background: var(--bg-light);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-base);
}

.modal-close:hover {
  color: var(--text-dark);
}

.cookie-options {
  margin: 30px 0;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  margin-bottom: 10px;
  background: var(--bg-light);
  border-radius: 8px;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.btn-save {
  width: 100%;
  background: var(--primary-color);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-save:hover {
  background: #1d4ed8;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
}

.blog-section {
  padding: 80px 20px;
}

.blog-category {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-image {
  position: relative;
}

.blog-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--text-dark);
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-meta {
  display: flex;
  gap: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-link:hover {
  color: var(--secondary-color);
}

.blog-cta {
  background: var(--bg-light);
  padding: 60px 20px;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-box p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.about-story {
  padding: 80px 20px;
}

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

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.story-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.story-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.team-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

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

.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

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

.team-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.team-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--text-light);
  line-height: 1.7;
}

.values-section {
  padding: 80px 20px;
}

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

.value-card {
  text-align: center;
  padding: 30px;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

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

.stats-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

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

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-section {
  padding: 80px 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

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

.contact-note {
  font-size: 0.9rem;
  font-style: italic;
}

.contact-form-container {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition-base);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
}

.faq-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.faq-grid {
  display: grid;
  gap: 25px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item i {
  color: var(--primary-color);
}

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

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-content-success {
  background: white;
  padding: 50px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
}

.modal-close-success {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-base);
}

.modal-close-success:hover {
  color: var(--text-dark);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  margin: 0 auto 25px;
}

.success-note {
  color: var(--text-light);
  margin-top: 15px;
}

.post-container {
  background: white;
}

.post-header {
  background: var(--bg-light);
  padding: 40px 20px;
}

.post-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.back-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.post-meta {
  display: flex;
  gap: 25px;
  color: var(--text-light);
  flex-wrap: wrap;
}

.post-featured-image {
  max-width: 1200px;
  margin: 0 auto;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

.post-content {
  padding: 60px 20px;
}

.lead {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 400;
}

.post-content h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
  color: var(--text-dark);
}

.post-content h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
  font-size: 1.1rem;
}

.post-content ul,
.post-content ol {
  margin: 20px 0 20px 30px;
  line-height: 1.8;
}

.post-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.post-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.post-image {
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

blockquote {
  border-left: 4px solid var(--primary-color);
  background: var(--bg-light);
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 8px;
}

blockquote p {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0;
}

.post-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.tag {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.post-nav-link {
  flex: 1;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition-base);
}

.post-nav-link:hover {
  background: var(--primary-color);
  color: white;
}

.post-nav-link:hover .post-nav-title {
  color: white;
}

.post-nav-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-nav-title {
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-nav-link.prev .post-nav-title {
  flex-direction: row-reverse;
}

.related-posts {
  padding: 80px 20px;
  background: var(--bg-light);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.data-table thead {
  background: var(--primary-color);
  color: white;
}

.data-table th,
.data-table td {
  padding: 15px;
  text-align: left;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: var(--bg-light);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
  }

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

  .mobile-toggle {
    display: block;
  }

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

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

  .section-title {
    font-size: 2rem;
  }

  .solution-content,
  .story-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 2rem;
  }

  .post-title {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .post-navigation {
    flex-direction: column;
  }
}

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

  .section-title {
    font-size: 1.8rem;
  }

  .cta-content h2,
  .cta-box h2 {
    font-size: 1.6rem;
  }
}