:root {
  --primary: #0f766e;
  --primary-dark: #0d5c55;
  --primary-light: #14b8a6;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --text: #0f172a;
  --text-light: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: rgba(15, 23, 42, 0.08);
  --gradient-1: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  --gradient-2: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --gradient-3: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-4: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --gradient-5: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

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

.privacy-content p {
  flex: 1;
  font-size: 14px;
  color: var(--text-light);
}

.privacy-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.privacy-buttons a {
  color: var(--primary);
  font-size: 14px;
  text-decoration: underline;
}

.privacy-buttons button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy-buttons button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.header {
  background: var(--white);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  position: relative;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: var(--bg);
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

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

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

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

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

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: 73px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 110, 0.05) 0%,
    rgba(6, 182, 212, 0.05) 100%
  );
  border-radius: 0 0 50% 50% / 0 0 100px 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 2px solid var(--border);
}

.hero h1 {
  color: var(--text);
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.2);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

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

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.services-intro {
  padding: 80px 0;
  background: var(--white);
}

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

.section-header h2 {
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

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

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.1);
  border-color: var(--primary);
}

.service-card h3 {
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 14px;
}

.about-section {
  padding: 80px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 12px 40px var(--shadow);
}

.features {
  padding: 80px 0;
  background: var(--white);
}

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

.feature-item {
  text-align: center;
  padding: 35px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--white);
  border: 2px solid var(--border);
}

.feature-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.1);
}

.feature-item h3 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 14px;
}

.pricing {
  padding: 80px 0;
  background: var(--bg);
}

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

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

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 12px 40px var(--shadow);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow);
}

.pricing-card h3 {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  font-family: 'Space Grotesk', sans-serif;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-card li {
  padding: 10px 0;
  color: var(--text-light);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.cta-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  margin-bottom: 35px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.cta-buttons .btn-primary:hover {
  background: var(--bg);
  color: var(--primary-dark);
}

.cta-buttons .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

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

.page-hero {
  background: var(--gradient-1);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 73px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
}

.service-details {
  padding: 80px 0;
  background: var(--white);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.details-text h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.details-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.7;
}

.details-image img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 12px 40px var(--shadow);
}

.service-list {
  padding: 80px 0;
  background: var(--bg);
}

.service-list h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 50px;
}

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

.service-item {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.1);
  border-color: var(--primary);
}

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

.service-item p {
  color: var(--text-light);
  font-size: 14px;
}

.process-section {
  padding: 80px 0;
  background: var(--white);
}

.process-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 50px;
}

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

.step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'Space Grotesk', sans-serif;
}

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

.step p {
  color: var(--text-light);
  font-size: 14px;
}

.benefits-section {
  padding: 80px 0;
  background: var(--white);
}

.benefits-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 50px;
}

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

.benefit-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.1);
  border-color: var(--primary);
}

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

.benefit-card p {
  color: var(--text-light);
  font-size: 14px;
}

.contact-hero {
  background: var(--gradient-1);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 73px;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.contact-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
}

.contact-section {
  padding: 80px 0;
  background: var(--bg);
}

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

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

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

.contact-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-side {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-form-side h2 {
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-form-side > p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  padding: 80px 0;
  background: var(--white);
}

.map-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
}

.thankyou-section,
.error-section {
  padding: 100px 0;
  background: var(--bg);
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  margin-top: 69px;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-content h1,
.error-content h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 35px;
  line-height: 1.7;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-number {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.3;
}

.policy-section {
  padding: 80px 0;
  background: var(--white);
  margin-top: 69px;
  word-break: break-all;
}

.policy-section h1 {
  color: var(--primary);
  margin-bottom: 10px;
}

.policy-date {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 40px;
}

.policy-content {
  max-width: 900px;
}

.policy-content h2 {
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.policy-content h3 {
  color: var(--text);
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.policy-content ul {
  margin: 15px 0 15px 25px;
  color: var(--text-light);
}

.policy-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.policy-content a {
  color: var(--primary);
  text-decoration: underline;
}

.footer {
  background: var(--text);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(15, 118, 110, 0.4);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0;
    gap: 0;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav-menu.active {
    max-height: 400px;
    padding: 20px;
  }

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

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

  .nav-menu a {
    display: block;
    padding: 16px;
    border-radius: 8px;
    margin: 4px 0;
    width: 100%;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    padding: 140px 0 80px;
    margin-top: 73px;
  }

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

  .hero p {
    font-size: 1.05rem;
  }

  .hero-stats {
    gap: 40px;
  }

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .about-grid,
  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid > *:nth-child(2),
  .details-grid > *:nth-child(2) {
    order: -1;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .privacy-buttons {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .privacy-buttons button {
    flex: 1;
    max-width: 200px;
  }

  .services-grid,
  .features-grid,
  .benefits-grid,
  .service-items {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-hero,
  .contact-hero {
    padding: 140px 0 80px;
    margin-top: 73px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.05rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-content {
    padding: 20px 0;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero {
    padding: 120px 0 70px;
  }

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

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

  .hero-label {
    font-size: 13px;
    padding: 6px 16px;
  }

  .hero-stats {
    gap: 30px;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .hero-stat-label {
    font-size: 13px;
  }

  .services-grid,
  .service-items,
  .features-grid,
  .pricing-grid,
  .process-steps,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card,
  .service-item,
  .benefit-card,
  .feature-item {
    padding: 30px 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
    gap: 12px;
  }

  .thankyou-actions a,
  .error-actions a {
    width: 100%;
    text-align: center;
  }

  .page-hero,
  .contact-hero {
    padding: 120px 0 60px;
  }

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

  .cta-section {
    padding: 70px 0;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .contact-form-side {
    padding: 30px 20px;
  }

  .pricing-card {
    padding: 35px 25px;
  }

  .price {
    font-size: 2.2rem;
  }

  .footer {
    padding: 25px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .privacy-popup {
    padding: 16px;
  }

  .privacy-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .privacy-buttons button,
  .privacy-buttons a {
    width: 100%;
    text-align: center;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .services-intro,
  .about-section,
  .features,
  .pricing,
  .service-details,
  .service-list,
  .process-section,
  .benefits-section,
  .contact-section,
  .map-section,
  .policy-section {
    padding: 60px 0;
  }
}
