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

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

html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
:root {
  --bg: #faf9f7;
  --white: #ffffff;
  --text: #1f2937;
  --text-light: #6b7280;
  --accent: #0f766e;
  --border: #e5e7eb;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}
.header {
  padding: 24px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 46px;
  filter: invert(1);
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone {
  color: var(--text);
  text-decoration: none;
}

.header-btn {
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
}
.hero {
  padding: 90px 0 120px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.hero-left {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.primary-btn {
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
}

.secondary-btn {
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.feature span {
  color: var(--accent);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 520px;
  height: 620px;
  object-fit: cover;
  border-radius: 32px;
  object-position: 0% center;
  transform: scaleX(-1);
}

.floating-card {
  position: absolute;
  right: 20px;
  bottom: 20px;

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);

  padding: 24px;
  width: 240px;

  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.floating-card strong {
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
}
.about {
  padding: 120px 0;
  background: #ffffff;
}

.about-header {
  max-width: 800px;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: #0f766e;
  font-size: 14px;
  margin-bottom: 20px;
}

.about-header h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1f2937;
}

.about-header p {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  transition: 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-card strong {
  font-size: 34px;
  color: #1f2937;
  display: block;
}

.stat-card span {
  font-size: 14px;
  color: #6b7280;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.benefit h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f2937;
}

.benefit p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}
@media (max-width: 992px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 576px) {
  .stats,
  .benefits {
    grid-template-columns: 1fr;
  }

  .about-header h2 {
    font-size: 32px;
  }
}
.directions {
  padding: 120px 0;
  background: #faf9f7;
}

.directions-top {
  max-width: 720px;
  margin-bottom: 60px;
}

.directions-top h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin: 20px 0;
  color: #1f2937;
}

.directions-top p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
}
.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.direction-card {
  display: block;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
  position: relative;
}

.direction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border-color: rgba(15, 118, 110, 0.2);
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-number {
  font-size: 14px;
  color: #0f766e;
  font-weight: 600;
}

.card-arrow {
  font-size: 18px;
  color: #9ca3af;
  transition: 0.25s ease;
}

.direction-card:hover .card-arrow {
  transform: translate(3px, -3px);
  color: #0f766e;
}
.direction-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f2937;
}

.direction-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}
.is-soon {
  opacity: 0.6;
  cursor: not-allowed;
}

.is-soon:hover {
  transform: none;
  box-shadow: none;
}
@media (max-width: 900px) {
  .directions-grid {
    grid-template-columns: 1fr;
  }
}
.contact {
  padding: 120px 0;
  background: #fff;
}

.contact-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  margin: 20px 0;
  color: #1f2937;
}

.contact-header p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
}
.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}
.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 24px;
  border-radius: 24px;
  background: #faf9f7;
  border: 1px solid #e5e7eb;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #1f2937;
}

.contact-card p {
  color: #6b7280;
  line-height: 1.6;
}
.contact-form {
  background: #faf9f7;
  border: 1px solid #e5e7eb;
  border-radius: 32px;
  padding: 40px;

  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 16px;
  background: #fff;
  font-family: inherit;
  transition: 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0f766e;
}
.submit-btn {
  margin-top: 10px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: #0f766e;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.footer {
  padding: 80px 0 30px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}
.footer-company h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1f2937;
}

.footer-company p {
  max-width: 420px;
  line-height: 1.7;
  color: #6b7280;
}
.footer-nav h4,
.footer-contact h4 {
  margin-bottom: 18px;
  font-size: 16px;
  color: #1f2937;
}
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  text-decoration: none;
  color: #6b7280;
  transition: 0.2s;
}

.footer a:hover {
  color: #0f766e;
}
.footer-contact p {
  margin-top: 10px;
  line-height: 1.6;
  color: #6b7280;
}
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #9ca3af;
  font-size: 14px;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
/* ===================================
   PAGE HERO
=================================== */

.page-hero {
  padding: 140px 0 100px;
}

.page-hero h1 {
  margin: 24px 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1f2937;
}

.page-hero p {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
}

/* ===================================
   COMMON SECTIONS
=================================== */

.stats-section,
.principles,
.history,
.team {
  padding: 100px 0;
}

.section-top {
  margin-bottom: 60px;
}

.section-top h2 {
  margin-top: 20px;
  max-width: 700px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: #1f2937;
}

/* ===================================
   STATS
=================================== */

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

.stat-card {
  padding: 36px 24px;
  text-align: center;

  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;

  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.stat-card strong {
  display: block;
  margin-bottom: 12px;

  font-size: 42px;
  font-weight: 700;
  color: #0f766e;
}

.stat-card span {
  color: #6b7280;
  font-size: 15px;
}

/* ===================================
   PRINCIPLES
=================================== */

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

.principle-card {
  padding: 32px;

  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;

  font-size: 18px;
  line-height: 1.6;
  color: #1f2937;

  transition: all 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

/* ===================================
   HISTORY
=================================== */

.history-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.history-card {
  padding: 28px;

  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;

  transition: all 0.3s ease;
}

.history-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.history-card strong {
  display: block;

  margin-bottom: 14px;

  font-size: 30px;
  font-weight: 700;
  color: #0f766e;
}

.history-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 15px;
}

/* ===================================
   TEAM
=================================== */

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

.team-card {
  padding: 24px;

  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 32px;

  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.team-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;

  border-radius: 24px;
  margin-bottom: 24px;

  display: block;
  object-position: center 10%;
}

.team-card h3 {
  margin-bottom: 10px;

  font-size: 26px;
  color: #1f2937;
}

.position {
  margin-bottom: 24px;

  color: #6b7280;
  line-height: 1.6;
}

.team-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 50px;
  padding: 0 22px;

  border-radius: 999px;

  background: rgba(15, 118, 110, 0.08);
  color: #0f766e;

  text-decoration: none;
  font-weight: 600;

  transition: all 0.25s ease;
}

.team-card a:hover {
  background: #0f766e;
  color: #fff;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 1200px) {
  .history-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .team-grid {
    gap: 24px;
  }

  .team-card img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 70px;
  }

  .stats,
  .principles-grid,
  .history-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .section-top {
    margin-bottom: 40px;
  }

  .team-card img {
    height: 320px;
  }

  .page-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .stats-section,
  .principles,
  .history,
  .team {
    padding: 80px 0;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .stat-card strong {
    font-size: 36px;
  }
}
.mission-modal {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mission-modal.active {
  opacity: 1;
  visibility: visible;
}
.mission-modal {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 9999;
}

.mission-modal.active {
  opacity: 1;
  visibility: visible;
}
.mission-overlay {
  position: absolute;
  inset: 0;

  background: rgba(15, 23, 42, 0.45);

  backdrop-filter: blur(8px);
}
.mission-modal-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 900px;
  max-height: 90vh;

  overflow-y: auto;

  background: #ffffff;

  border-radius: 36px;

  padding: 50px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);

  animation: modalShow 0.3s ease;
}
@keyframes modalShow {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close-mission {
  position: absolute;
  top: 24px;
  right: 24px;

  width: 46px;
  height: 46px;

  border: none;
  border-radius: 50%;

  background: #f3f4f6;

  cursor: pointer;

  font-size: 18px;

  transition: 0.25s ease;
}

.close-mission:hover {
  background: #e5e7eb;
}
.mission-modal-top {
  margin-bottom: 40px;
}

.mission-modal-top span {
  display: inline-flex;

  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(15, 118, 110, 0.08);

  color: #0f766e;

  font-size: 14px;
  font-weight: 600;
}

.mission-modal-top h2 {
  margin-top: 20px;

  font-size: clamp(32px, 4vw, 54px);

  line-height: 1.1;

  color: #1f2937;
}
.mission-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mission-text p {
  font-size: 17px;
  line-height: 1.9;

  color: #6b7280;
}
.mission-features {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 40px;
}
.mission-feature {
  padding: 12px 18px;

  border-radius: 999px;

  background: #f8fafc;

  border: 1px solid #e5e7eb;

  color: #374151;

  font-size: 14px;
  font-weight: 500;
}
.mission-quote {
  margin-top: 50px;

  padding: 32px;

  border-radius: 28px;

  background: #faf9f7;

  border: 1px solid #e5e7eb;
}
.mission-quote h3 {
  margin-bottom: 10px;

  font-size: 24px;

  color: #1f2937;
}
.mission-quote p {
  color: #0f766e;

  font-size: 18px;
  font-weight: 600;
}
.mission-modal-content::-webkit-scrollbar {
  width: 8px;
}

.mission-modal-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}
@media (max-width: 768px) {
  .mission-modal-content {
    padding: 30px;
    border-radius: 28px;
  }

  .mission-modal-top h2 {
    font-size: 34px;
  }

  .mission-text p {
    font-size: 16px;
  }
}
/* ===== CLIENTS HERO ===== */

.clients-hero {
  padding: 160px 0 80px;
}

.clients-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  font-weight: 700;

  margin: 20px 0;
}

.clients-hero p {
  max-width: 700px;

  font-size: 18px;
  line-height: 1.8;

  color: #6b7280;
}

.section-label {
  display: inline-flex;

  padding: 10px 18px;

  border-radius: 999px;

  background: #f5f7fa;

  border: 1px solid #e5e7eb;

  font-size: 14px;
  font-weight: 600;

  color: #0f172a;
}

/* ===== STATS ===== */

.stats-section {
  padding-bottom: 100px;
}

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

.stat-card {
  padding: 32px;

  background: #fff;

  border: 1px solid #e5e7eb;
  border-radius: 28px;

  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card strong {
  display: block;

  font-size: 42px;
  font-weight: 700;

  margin-bottom: 10px;

  color: #0f172a;
}

.stat-card span {
  color: #6b7280;
  line-height: 1.6;
}

/* ===== COMMON SECTION ===== */

.clients-companies,
.clients-reviews,
.development-section {
  padding: 100px 0;
}

.section-top {
  margin-bottom: 50px;
}

.section-top h2 {
  margin-top: 15px;

  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;

  max-width: 700px;
}

/* ===== COMPANIES ===== */

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

.company-card {
  padding: 35px;

  background: #fff;

  border-radius: 30px;
  border: 1px solid #e5e7eb;

  transition: 0.3s ease;
}

.company-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.company-card h3 {
  font-size: 24px;

  margin-bottom: 12px;
}

.company-card p {
  color: #6b7280;

  line-height: 1.7;
}

/* ===== DEVELOPMENT ===== */

.development-banner {
  padding: 70px;

  background: #faf9f7;

  border: 1px solid #e5e7eb;
  border-radius: 40px;

  text-align: center;
}

.development-banner span {
  display: inline-flex;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(15, 118, 110, 0.08);

  color: #0f766e;

  font-size: 14px;
  font-weight: 600;
}

.development-banner h2 {
  margin: 25px auto 20px;

  max-width: 800px;

  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
}

.development-banner p {
  max-width: 700px;

  margin: 0 auto;

  color: #6b7280;

  line-height: 1.8;
}

/* ===== REVIEWS ===== */

.reviews-placeholder-box {
  padding: 70px;

  background: #fff;

  border-radius: 40px;
  border: 1px solid #e5e7eb;

  text-align: center;
}

.reviews-placeholder-box h3 {
  font-size: 32px;

  margin-bottom: 15px;
}

.reviews-placeholder-box p {
  color: #6b7280;

  max-width: 600px;

  margin: 0 auto;

  line-height: 1.8;
}

/* ===== MOBILE ===== */

@media (max-width: 992px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .clients-hero {
    padding: 120px 0 60px;
  }

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

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

  .development-banner,
  .reviews-placeholder-box,
  .company-card,
  .stat-card {
    padding: 28px;
  }

  .development-banner h2,
  .section-top h2 {
    font-size: 34px;
  }

  .clients-hero h1 {
    font-size: 42px;
  }
}
/* ===== BUTTON ===== */

.floating-contact-btn {
  position: fixed;
  right: 22px;
  bottom: 3%;

  width: 60px;
  height: 60px;

  border-radius: 50%;
  border: none;

  background: #0f172a;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 9999;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

  animation: pulse 2s infinite;

  transition: transform 0.2s ease;
}

.floating-contact-btn:hover {
  transform: scale(1.1);
}

.phone-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* ===== PULSE ===== */

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

/* ===== DRAWER ===== */

.contact-drawer {
  position: fixed;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;

  z-index: 10000;
}

.contact-drawer.active {
  opacity: 1;
  visibility: visible;
}

.contact-drawer-overlay {
  position: absolute;
  inset: 0;

  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
}

.contact-drawer-panel {
  position: absolute;
  right: 0;
  top: 0;

  width: 420px;
  height: 100%;

  background: #fff;

  padding: 40px;

  transform: translateX(100%);
  transition: 0.35s ease;

  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

.contact-drawer.active .contact-drawer-panel {
  transform: translateX(0);
}

/* ===== CONTENT ===== */

.drawer-header h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.drawer-header p {
  color: #6b7280;
}

.contact-item {
  margin-top: 20px;
}

.contact-item span {
  font-size: 13px;
  color: #6b7280;
}

.contact-item a,
.contact-item p {
  font-size: 16px;
  color: #0f172a;
  text-decoration: none;
}

.map-box {
  margin-top: 25px;
  border-radius: 16px;
  overflow: hidden;
}

/* ===== CLOSE BTN ===== */

.close-drawer {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 50%;

  cursor: pointer;

  background: #f3f4f6;
}

.dropdown-menu {
  position: fixed;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 10000;
}

/* фон */
.menu-bg {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
}

/* контент */
.dropdown-content {
  position: relative;

  width: 100%;
  height: 100%;

  background: #0f172a;

  transform: translateY(-20px);
  opacity: 0;

  transition: 0.35s ease;
}

/* active state */
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu.active .dropdown-content {
  transform: translateY(0);
  opacity: 1;
}

/* close button */
.services-close {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);
  color: #fff;

  cursor: pointer;
  z-index: 2;
}

/* ===== FULLSCREEN MENU ===== */

.dropdown-menu {
  position: fixed;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;

  z-index: 10000;

  overflow: hidden;
}

/* фон (спокойный тёмный) */
.menu-bg {
  position: absolute;
  inset: 0;

  background: rgba(7, 14, 26, 0.75);
  backdrop-filter: blur(10px);
}

/* основной контейнер */
.dropdown-content {
  position: relative;

  width: 100%;
  height: 100%;

  background: #073c38;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-20px);
  opacity: 0;

  transition: 0.4s ease;
}

/* active */
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu.active .dropdown-content {
  transform: translateY(0);
  opacity: 1;
}

/* ===== LAYOUT ===== */

.dropdown-inner {
  width: 100%;
  max-width: 1200px;

  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;

  padding: 60px;
}

/* ===== LEFT TEXT ===== */

.menu-left {
  color: #e5e7eb;
}

.menu-left .mini-text {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #94a3b8;
}

.menu-left h2 {
  font-size: 40px;
  margin-top: 15px;
  line-height: 1.2;

  color: #ffffff;
}

.menu-left p {
  margin-top: 15px;
  color: #cbd5e1;
  max-width: 420px;
  line-height: 1.6;
}

/* ===== SERVICE GRID ===== */

.menu-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== CARD ===== */

.service-card {
  display: flex;
  gap: 14px;

  padding: 18px 16px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;

  color: #fff;
  text-decoration: none;

  transition: 0.25s ease;

  position: relative;
}

/* hover */
.service-card:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

/* номер */
.card-icon {
  width: 36px;
  height: 36px;

  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.06);

  color: #e5e7eb;

  font-weight: 500;
}

/* текст */
.service-card h3 {
  font-size: 15px;
  margin-bottom: 4px;

  color: #ffffff;
}

.service-card p {
  font-size: 13px;
  color: #94a3b8;
}

/* ===== CLOSE BUTTON ===== */

.services-close {
  position: absolute;
  top: 25px;
  right: 25px;

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: none;

  background: rgba(255, 255, 255, 0.06);
  color: #fff;

  font-size: 18px;

  cursor: pointer;

  transition: 0.2s ease;
}

.services-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .dropdown-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px;
  }

  .menu-left h2 {
    font-size: 30px;
  }

  .menu-right {
    grid-template-columns: 1fr;
  }
}
.privacy-page {
  padding: 140px 0 100px;
}

.privacy-page .container {
  max-width: 900px;
}

.privacy-page h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.privacy-page h2 {
  margin-top: 50px;
  margin-bottom: 15px;

  font-size: 26px;
}

.privacy-page p,
.privacy-page li {
  line-height: 1.8;
  color: #64748b;
}

.privacy-page ul {
  padding-left: 20px;
}
.policy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  width: 100%;
  margin: 20px 0;

  text-align: left;
}

.policy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;

  margin: 2px 0 0;
  flex: 0 0 18px;
}

.policy-check span {
  display: block;

  font-size: 14px;
  line-height: 1.5;

  color: var(--text);
}

.policy-check a {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .header-inner {
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }

  .header-inner {
    justify-content: space-between;
  }

  .nav {
    display: none;
  }

  .header-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .logo img {
    height: 42px;
  }
}
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }

  .about h2 {
    font-size: 34px;
  }
}
@media (max-width: 992px) {
  .directions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .directions-grid {
    grid-template-columns: 1fr;
  }

  .direction-card {
    min-height: auto;
  }
}
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 25px;
  }

  .contact-info h2 {
    font-size: 34px;
  }
}
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
@media (max-width: 1140px) {
  .hero-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .stats {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .companies-grid {
    grid-template-columns: 1fr;
  }

  .clients-hero h1 {
    font-size: 34px;
  }
}
@media (max-width: 992px) {
  .dropdown-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-right {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dropdown-inner {
    padding: 30px;
  }

  .menu-left h2 {
    font-size: 30px;
  }

  .service-card {
    padding: 14px;
  }
}
.burger-btn {
  display: none;
}
@media (max-width: 768px) {
  .burger-btn {
    display: flex;

    flex-direction: column;
    justify-content: center;

    gap: 5px;

    width: 40px;
    height: 40px;

    border: none;
    background: transparent;

    cursor: pointer;
  }

  .burger-btn span {
    width: 24px;
    height: 2px;

    background: #000000;
    border-radius: 10px;
  }

  .nav {
    display: none;
  }
  .header-btn {
    display: none;
  }
}
.mobile-nav {
  position: fixed;

  top: 0;
  right: -100%;

  width: 320px;
  max-width: 100%;

  height: 100vh;

  background: #071e49;

  display: flex;
  flex-direction: column;

  padding: 90px 30px 30px;

  gap: 25px;

  z-index: 9999;

  transition: 0.35s ease;
}

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

.mobile-nav a,
.mobile-nav button {
  color: #fff;

  text-decoration: none;

  font-size: 18px;

  background: none;
  border: none;

  text-align: left;

  cursor: pointer;
}
.close-menu {
  position: absolute;

  top: 20px;
  right: 20px;

  width: 40px;
  height: 40px;

  border: none;

  background: rgba(255, 255, 255, 0.08);

  color: #fff;

  border-radius: 50%;

  cursor: pointer;
}
.mobile-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.5);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;

  z-index: 9998;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 440px) {
  .contact {
    padding: 40px 0;
  }

  .contact-header h2 {
    font-size: 22px;
  }

  .contact-header p {
    font-size: 14px;
    line-height: 1.4;
  }

  .contact-card h3 {
    font-size: 16px;
  }

  .contact-card p {
    font-size: 13px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-card {
    padding: 14px;
  }

  .policy-check {
    font-size: 12px;
    line-height: 1.3;
  }
}
@media (max-width: 768px) {
  .section-top {
    text-align: center;
  }
  .lable-clients {
    text-align: center;
  }
}
@media (max-width: 1400px) {
  #servicesMenu {
    overflow-y: auto;
  }
}
@media (max-width: 768px) {
  .dropdown-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .menu-left,
  .menu-right {
    width: 100%;
  }

  .menu-right {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dropdown-content {
    height: 100vh;
    overflow-y: auto;
    padding: 80px 20px 30px;
  }
}
@media (max-width: 440px) {
  .service-card {
    padding: 16px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  .menu-left h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .dropdown-menu {
    position: fixed;
    inset: 0;
    overflow-y: auto;
  }

  .dropdown-inner {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .dropdown-content {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 80px;
  }

  .dropdown-inner {
    grid-template-columns: 1fr;
    gap: 30px;

    padding: 30px 20px;
  }

  .menu-left h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .dropdown-menu.active {
    overflow-y: auto;
  }
}
@media (max-width: 768px) {
  .contact-drawer-panel {
    width: 100%;
    height: 100%;

    border-radius: 0;
    padding: 20px;

    overflow-y: auto;
  }

  .drawer-header h2 {
    font-size: 22px;
  }

  .contact-item span {
    font-size: 12px;
  }

  .contact-item a,
  .contact-item p {
    font-size: 14px;
  }
  .hero {
    padding-top: 40px;
  }
}
