:root {
  --bg: #071a1a;
  --bg-soft: #0d2b2b;
  --card: rgba(11, 29, 29, 0.76);
  --card-strong: rgba(9, 21, 21, 0.94);
  --primary: #6ee7b7;
  --secondary: #7dd3fc;
  --accent: #f9c86b;
  --rose: #ff9cc4;
  --text: #ecfffb;
  --muted: #b6d9d1;
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 30px 70px rgba(3, 17, 17, 0.48);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(110, 231, 183, 0.28), transparent 18%),
    radial-gradient(circle at 80% 12%, rgba(125, 211, 252, 0.26), transparent 20%),
    radial-gradient(circle at 50% 90%, rgba(249, 200, 107, 0.12), transparent 28%),
    linear-gradient(135deg, #041410 0%, #0b2423 30%, #0d181c 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.04), transparent 35%, rgba(255,255,255,0.02));
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

h1, h2, h3, h4, h5, h6 {
  animation: fadeInUp 0.7s ease backwards;
}

.section-heading h2 {
  animation: slideInLeft 0.7s ease backwards;
  animation-delay: 0.1s;
}

.section-heading .eyebrow {
  animation: fadeInScale 0.6s ease backwards;
  display: inline-block;
}

.contact-list a,
.footer-col a {
  transition: all 0.3s ease;
}

.contact-list a:hover,
.footer-col a:hover {
  color: var(--primary);
  transform: translateX(4px);
  text-shadow: 0 0 12px rgba(110, 231, 183, 0.5);
}

.nav a {
  animation: fadeInUp 0.6s ease backwards;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(110, 231, 183, 0.5);
  transform: translateY(-2px);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
  background: rgba(7, 19, 28, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  box-shadow: var(--shadow);
}

.logo strong,
.logo small {
  display: block;
}

.logo strong {
  font-size: 1rem;
}

.logo small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a,
.call-link,
.contact-list a,
.footer a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.call-link:hover,
.contact-list a:hover,
.footer a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: fadeInScale 0.6s ease 0.2s backwards;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 25px 50px rgba(110, 231, 183, 0.4);
}

.button:hover::before {
  opacity: 1;
}

.button:active {
  transform: translateY(-1px) scale(0.98);
}

.button-primary {
  background: linear-gradient(135deg, #d7fff0, #79f0c2 35%, #7dd3fc 100%);
  color: #05281e;
  box-shadow: 0 18px 35px rgba(110, 231, 183, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.2);
}

.hero {
  padding: 72px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(122, 224, 180, 0.08);
  border: 1px solid rgba(122, 224, 180, 0.28);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.hero-phones a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1400px;
  transform-style: preserve-3d;
  animation: floatScene 7s ease-in-out infinite;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 30px 14px 14px 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateZ(-40px) rotateX(10deg);
  box-shadow: inset 0 0 25px rgba(125, 211, 252, 0.08);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.7;
  animation: pulse 8s ease-in-out infinite;
}

.orb-large {
  width: 460px;
  height: 460px;
  right: 10%;
  top: 18%;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.4), rgba(110, 231, 183, 0.1) 52%, transparent 72%);
}

.orb-small {
  width: 240px;
  height: 240px;
  left: 10%;
  bottom: 2%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.4), rgba(125, 211, 252, 0.1) 48%, transparent 70%);
  animation-delay: 1.5s;
}

.scene-card {
  display: none;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card {
  --rx: 14deg;
  --ry: -16deg;
  --rz: -6deg;
  --tx: 0px;
  --ty: 0px;
  position: absolute;
  width: 200px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  border: 3px solid rgba(110, 231, 183, 0.35);
  background: linear-gradient(135deg, rgba(14, 25, 29, 0.92), rgba(10, 18, 22, 0.85));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1500px) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz)) translate3d(var(--tx), var(--ty), 25px);
  animation: fadeInScale 0.7s ease backwards;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, box-shadow;
  cursor: pointer;
}

.stat-card-1 {
  top: 20px;
  left: 20px;
  width: 200px;
  height: 210px;
  --rx: 20deg;
  --ry: -25deg;
  --rz: -10deg;
  animation-delay: 0.1s;
  z-index: 4;
}

.stat-card-2 {
  top: 20px;
  right: 20px;
  width: 200px;
  height: 210px;
  --rx: -15deg;
  --ry: 25deg;
  --rz: 8deg;
  transform: perspective(1500px) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz)) translate3d(var(--tx), var(--ty), 24px);
  animation-delay: 0.2s;
  z-index: 3;
}

.stat-card-3 {
  bottom: 20px;
  left: 20px;
  width: 200px;
  height: 210px;
  --rx: 12deg;
  --ry: -12deg;
  --rz: 3deg;
  transform: perspective(1500px) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz)) translate3d(var(--tx), var(--ty), 25px);
  animation-delay: 0.3s;
  z-index: 2;
}

.stat-card-4 {
  bottom: 20px;
  right: 20px;
  width: 200px;
  height: 210px;
  --rx: -10deg;
  --ry: 15deg;
  --rz: -5deg;
  transform: perspective(1500px) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz)) translate3d(var(--tx), var(--ty), 22px);
  animation-delay: 0.4s;
  z-index: 1;
}

.stat-card:hover {
  border-color: rgba(110, 231, 183, 0.6);
  box-shadow: 0 40px 90px rgba(110, 231, 183, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(14, 25, 29, 0.97), rgba(10, 18, 22, 0.90));
  transform: perspective(1500px) rotateX(calc(var(--rx) * 0.5)) rotateY(calc(var(--ry) * 0.5)) rotateZ(var(--rz)) translate3d(var(--tx), var(--ty), 35px);
}

.stat-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.1);
}

.stat-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 14px 14px;
  background: linear-gradient(180deg, rgba(9, 17, 18, 0.12), rgba(9, 17, 18, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255, 190, 107, 0.4);
  margin-bottom: 4px;
}

.stat-text {
  font-size: 0.9rem;
  color: var(--primary);
  text-align: center;
  font-weight: 600;
}

@keyframes floatScene {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(110, 231, 183, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(110, 231, 183, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.stats {
  padding: 18px 0 26px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-item {
  --rx: 0deg;
  --ry: 0deg;
  --rz: 0deg;
  --tx: 0px;
  --ty: 0px;
  padding: 26px 18px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz)) translate3d(var(--tx), var(--ty), 0);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  animation: fadeInScale 0.6s ease backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--primary);
}

.stat-item span {
  color: var(--muted);
}

.services,
.about,
.benefits,
.reviews,
.leave-review,
.contact {
  padding: 84px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  --rx: 0deg;
  --ry: 0deg;
  --rz: 0deg;
  --tx: 0px;
  --ty: 0px;
  position: relative;
  padding: 28px 22px 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 30, 39, 0.88), rgba(9, 18, 24, 0.75));
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz)) translate3d(var(--tx), var(--ty), 0);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  animation: fadeInUp 0.6s ease backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:hover {
  border-color: rgba(122, 224, 180, 0.35);
  box-shadow: 0 28px 60px rgba(7, 20, 20, 0.42);
  transform: translateY(-8px);
  animation: glowPulse 2s ease infinite;
}

.icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(122, 224, 180, 0.18), rgba(154, 217, 255, 0.1));
  margin-bottom: 20px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.visual-panel {
  position: relative;
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(8, 17, 24, 0.1), rgba(8, 17, 24, 0.3));
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(110, 231, 183, 0.15) inset;
  border: 2px solid rgba(110, 231, 183, 0.25);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: perspective(1200px) rotateX(0deg);
}

.visual-panel:hover {
  border-color: rgba(110, 231, 183, 0.4);
  box-shadow: 
    0 50px 120px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(110, 231, 183, 0.2) inset;
  transform: perspective(1200px) rotateX(2deg) translateY(-8px);
}

.panel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.15) saturate(1.2);
  transition: filter 0.4s ease;
}

.visual-panel:hover .panel-image {
  filter: brightness(1.2) contrast(1.25) saturate(1.3);
}

.visual-layer {
  position: absolute;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.visual-panel:hover .visual-layer {
  border-color: rgba(255, 255, 255, 0.15);
}

.layer-one {
  inset: 25px 45px 100px 45px;
  background: linear-gradient(135deg, rgba(122, 224, 180, 0.35), rgba(154, 217, 255, 0.12));
  transform: rotate(-6deg);
}

.visual-panel:hover .layer-one {
  transform: rotate(-6deg) translateY(-4px);
  backdrop-filter: blur(4px);
}

.layer-two {
  inset: 80px 70px 45px 80px;
  background: linear-gradient(135deg, rgba(8, 24, 31, 0.65), rgba(17, 30, 38, 0.35));
  transform: rotate(7deg);
}

.visual-panel:hover .layer-two {
  transform: rotate(7deg) translateY(-2px);
  backdrop-filter: blur(4px);
}

.layer-three {
  inset: 140px 105px 75px 115px;
  background: linear-gradient(135deg, rgba(255, 190, 107, 0.28), rgba(122, 224, 180, 0.18));
  transform: rotate(-8deg);
}

.visual-panel:hover .layer-three {
  transform: rotate(-8deg) translateY(-3px);
  backdrop-filter: blur(3px);
}

.about-copy h2 {
  margin: 16px 0 24px;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.about-copy p {
  margin: 0 0 32px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.05rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.check-list li {
  position: relative;
  padding-left: 40px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text);
  transition: all 0.3s ease;
}

.check-list li:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.check-icon {
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.2), rgba(125, 211, 252, 0.1));
  border: 1.5px solid rgba(110, 231, 183, 0.4);
  border-radius: 6px;
  color: var(--primary);
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.check-list li:hover .check-icon {
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.35), rgba(125, 211, 252, 0.15));
  border-color: rgba(110, 231, 183, 0.6);
  box-shadow: 0 0 12px rgba(110, 231, 183, 0.3);
  transform: scale(1.1);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reviews-slider {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 16px;
}

.reviews-track {
  position: relative;
  min-height: 240px;
}

.review-card {
  position: absolute;
  inset: 0;
  padding: 26px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(14, 25, 29, 0.9), rgba(10, 18, 22, 0.8));
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(20px) translateY(20px) scale(0.92);
  transition: opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  pointer-events: auto;
  animation: cardBounceIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardBounceIn {
  0% {
    opacity: 0;
    transform: translateX(20px) translateY(20px) scale(0.92);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-arrow:hover {
  background: rgba(110, 231, 183, 0.12);
  border-color: rgba(110, 231, 183, 0.3);
  color: var(--primary);
  box-shadow: 0 0 16px rgba(110, 231, 183, 0.3);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.35s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.15);
}

.dot.active {
  background: var(--primary);
  box-shadow: 0 0 12px rgba(110, 231, 183, 0.7);
  transform: scale(1.25);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.review-top strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.review-top span {
  color: var(--muted);
  font-size: 0.82rem;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.leave-review-wrap {
  display: flex;
  justify-content: center;
}

.review-form {
  width: min(780px, 100%);
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(17, 29, 32, 0.9), rgba(9, 18, 22, 0.78));
  box-shadow: var(--shadow);
}

.review-form h3 {
  margin: 18px 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.review-form-inner {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: rgba(236, 255, 251, 0.55);
}

.review-form textarea {
  min-height: 130px;
  resize: vertical;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.rating-box span {
  color: var(--muted);
  font-weight: 500;
}

.rating-stars {
  display: flex;
  gap: 8px;
}

.benefit-item {
  --rx: 0deg;
  --ry: 0deg;
  --rz: 0deg;
  --tx: 0px;
  --ty: 0px;
  padding: 30px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz)) translate3d(var(--tx), var(--ty), 0);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.benefit-item:hover,
.stat-item:hover,
.contact-box:hover {
  border-color: rgba(125, 211, 252, 0.32);
}

.benefit-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.benefit-item h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-wrap {
  display: flex;
  justify-content: center;
}

.contact-box {
  --rx: 0deg;
  --ry: 0deg;
  --rz: 0deg;
  --tx: 0px;
  --ty: 0px;
  width: min(780px, 100%);
  padding: clamp(26px, 3vw, 36px);
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 29, 38, 0.88), rgba(10, 19, 26, 0.8));
  box-shadow: var(--shadow);
  text-align: center;
  transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz)) translate3d(var(--tx), var(--ty), 0);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.contact-box h2 {
  margin: 18px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.contact-box p {
  margin: 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.contact-list a {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-actions {
  justify-content: center;
}

.footer {
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .cards-grid,
  .benefit-grid,
  .stats-grid,
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .cards-grid,
  .benefit-grid,
  .stats-grid,
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .cards-grid,
  .stats-grid,
  .benefit-grid,
  .highlights-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .slider-arrow.prev,
  .slider-arrow.next {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .cards-grid,
  .stats-grid,
  .benefit-grid,
  .highlights-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-phones {
    flex-direction: column;
    align-items: flex-start;
  }
}

.star-btn {
  background: none;
  border: none;
  font-size: 1.9rem;
  cursor: pointer;
  color: rgba(255, 190, 107, 0.35);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 4px;
  line-height: 1;
  position: relative;
}

.star-btn:hover {
  color: var(--accent);
  transform: scale(1.3) translateY(-4px) rotate(8deg);
  text-shadow: 0 0 16px rgba(255, 190, 107, 0.8), 0 0 8px rgba(255, 190, 107, 0.5);
  animation: starPulse 0.4s ease;
}

.star-btn.active {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(255, 190, 107, 0.9), 0 0 10px rgba(255, 190, 107, 0.6);
  transform: scale(1.35) rotate(-8deg);
  animation: starBurst 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes starPulse {
  0% {
    transform: scale(1.3) translateY(-4px) rotate(8deg);
  }
  50% {
    transform: scale(1.45) translateY(-6px) rotate(8deg);
  }
  100% {
    transform: scale(1.3) translateY(-4px) rotate(8deg);
  }
}

@keyframes starBurst {
  0% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5) rotate(-8deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.35) rotate(-8deg);
    opacity: 1;
  }
}

.highlights {
  padding: 84px 0;
  background: linear-gradient(180deg, rgba(110, 231, 183, 0.03), rgba(110, 231, 183, 0.01));
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.highlight-item {
  padding: 30px 28px;
  border-radius: 26px;
  border: 1px solid rgba(110, 231, 183, 0.15);
  background: linear-gradient(180deg, rgba(14, 25, 29, 0.95), rgba(10, 18, 22, 0.85));
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
}

.highlight-item:hover {
  border-color: rgba(110, 231, 183, 0.35);
  box-shadow: 0 24px 60px rgba(110, 231, 183, 0.15);
  transform: translateY(-4px);
}

.highlight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.highlight-rating,
.highlight-icon {
  font-size: 1.4rem;
  color: var(--accent);
}

.highlight-quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 18px;
  font-style: italic;
}

.highlight-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-author strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.highlight-author span {
  color: var(--muted);
  font-size: 0.85rem;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}

.highlight-list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.team-highlight {
  grid-column: span 1;
}

.team-members {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.team-member {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(110, 231, 183, 0.1);
}

.team-member strong {
  display: block;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-member span {
  display: block;
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 25, 29, 0.95), rgba(7, 17, 17, 0.98));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo .logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-logo strong {
  font-size: 1rem;
  color: var(--text);
  display: block;
}

.footer-logo small {
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-col a:hover {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(110, 231, 183, 0.4);
}

.footer-contacts {
  gap: 6px;
}

.footer-contacts a {
  font-weight: 500;
  font-size: 0.88rem;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-bottom p {
  margin: 0 0 6px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

.footer-logo small {
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-col a:hover {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(110, 231, 183, 0.4);
}

.footer-contacts {
  gap: 6px;
}

.footer-contacts a {
  font-weight: 500;
  font-size: 0.88rem;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-bottom p {
  margin: 0 0 6px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer {
    padding: 40px 0 24px;
  }
}

.highlight-item {
  animation: fadeInScale 0.6s ease backwards;
}

.highlight-item:nth-child(1) { animation-delay: 0.1s; }
.highlight-item:nth-child(2) { animation-delay: 0.2s; }
.highlight-item:nth-child(3) { animation-delay: 0.3s; }

.benefit-item {
  animation: fadeInUp 0.6s ease backwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }

.review-card {
  animation: fadeInScale 0.5s ease forwards !important;
}

.dot {
  animation: fadeInScale 0.6s ease backwards;
  cursor: pointer;
}

.dot:nth-child(1) { animation-delay: 0.05s; }
.dot:nth-child(2) { animation-delay: 0.1s; }
.dot:nth-child(3) { animation-delay: 0.15s; }
.dot:nth-child(4) { animation-delay: 0.2s; }
.dot:nth-child(5) { animation-delay: 0.25s; }
.dot:nth-child(6) { animation-delay: 0.3s; }
.dot:nth-child(7) { animation-delay: 0.35s; }
.dot:nth-child(8) { animation-delay: 0.4s; }
.dot:nth-child(9) { animation-delay: 0.45s; }
.dot:nth-child(10) { animation-delay: 0.5s; }

.card-3d {
  transition: all 0.4s ease-out;
}

.footer-3d-visual {
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.icon {
  transition: all 0.35s ease;
  animation: fadeInScale 0.6s ease 0.3s backwards;
}

.service-card:hover .icon {
  transform: translateY(-8px) scale(1.15) rotate(8deg);
  box-shadow: 0 16px 40px rgba(110, 231, 183, 0.3);
  background: linear-gradient(135deg, rgba(122, 224, 180, 0.35), rgba(154, 217, 255, 0.2));
}

.hero-copy {
  animation: slideInLeft 0.8s ease backwards;
}

.hero-visual {
  animation: slideInRight 0.8s ease backwards;
}

.contact-box {
  animation: fadeInScale 0.6s ease backwards;
}

.team-member {
  animation: fadeInScale 0.5s ease backwards;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(110, 231, 183, 0.15);
}

.footer-visual-section {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, transparent, rgba(110, 231, 183, 0.05));
  perspective: 1200px;
}

.footer-3d-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.container-3d {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  perspective: 1000px;
}

.card-3d {
  --rx: 0deg;
  --ry: 0deg;
  --rz: 0deg;
  width: 140px;
  height: 140px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz));
  transition: transform 0.4s ease-out;
  animation: cardFloat 4s ease-in-out infinite;
}

.card-3d-1 {
  animation-delay: 0s;
}

.card-3d-2 {
  animation-delay: 0.2s;
}

.card-3d-3 {
  animation-delay: 0.4s;
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 2px solid rgba(110, 231, 183, 0.3);
  background: linear-gradient(135deg, rgba(14, 25, 29, 0.9), rgba(10, 18, 22, 0.8));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 3.5rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.card-front {
  transform: translateZ(70px);
}

.card-back {
  transform: rotateY(180deg) translateZ(70px);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  text-shadow: 0 0 12px rgba(110, 231, 183, 0.5);
}

@keyframes cardFloat {
  0%, 100% {
    transform: rotateX(0deg) rotateY(0deg) translateY(0px);
  }
  25% {
    transform: rotateX(15deg) rotateY(15deg) translateY(-10px);
  }
  50% {
    transform: rotateX(0deg) rotateY(30deg) translateY(-20px);
  }
  75% {
    transform: rotateX(-15deg) rotateY(15deg) translateY(-10px);
  }
}

.card-3d:hover {
  animation: none;
}

.card-3d:hover .card-face {
  box-shadow: 0 30px 80px rgba(110, 231, 183, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Info Modal Styles */
.info-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.info-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}

.info-modal.active {
  display: flex;
}

.info-modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 29, 29, 0.99), rgba(7, 20, 23, 0.98));
  border: 2px solid rgba(110, 231, 183, 0.3);
  border-radius: 40px;
  padding: 0;
  max-width: 750px;
  width: 90%;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 
    0 50px 150px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(110, 231, 183, 0.1) inset,
    0 0 1px rgba(255, 255, 255, 0.1);
  animation: slideInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(8px);
}

.info-modal-content::-webkit-scrollbar {
  width: 8px;
}

.info-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.info-modal-content::-webkit-scrollbar-thumb {
  background: rgba(110, 231, 183, 0.3);
  border-radius: 10px;
}

.info-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(110, 231, 183, 0.5);
}

.info-modal-content h2 {
  font-size: 2.5rem;
  margin: 0 0 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(110, 231, 183, 0.08);
  border: 1.5px solid rgba(110, 231, 183, 0.2);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.modal-close:hover {
  background: rgba(110, 231, 183, 0.15);
  border-color: rgba(110, 231, 183, 0.4);
  box-shadow: 0 0 16px rgba(110, 231, 183, 0.25);
}

.modal-close:hover span {
  background: var(--secondary);
}

.modal-header {
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.15), rgba(125, 211, 252, 0.1));
  border-bottom: 1px solid rgba(110, 231, 183, 0.2);
  padding: 48px 40px 32px;
  border-radius: 40px 40px 0 0;
  text-align: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.modal-header span {
  display: block;
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 8px;
  opacity: 0.9;
}

.info-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
}

.info-section {
  padding: 28px;
  background: linear-gradient(135deg, rgba(13, 43, 43, 0.4), rgba(13, 43, 43, 0.2));
  border: 1.5px solid rgba(110, 231, 183, 0.2);
  border-radius: 24px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 231, 183, 0.3), transparent);
}

.info-section:hover {
  background: linear-gradient(135deg, rgba(13, 43, 43, 0.6), rgba(13, 43, 43, 0.35));
  border-color: rgba(110, 231, 183, 0.4);
  box-shadow: 0 15px 45px rgba(110, 231, 183, 0.15);
  transform: translateY(-4px);
}

.info-section h3 {
  font-size: 1.35rem;
  margin: 0 0 18px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.info-section p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-list li {
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
  color: var(--muted);
  font-size: 0.98rem;
  transition: all 0.3s ease;
}

.info-list li:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.info-list li:before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
}

.team-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.team-card {
  background: linear-gradient(135deg, rgba(13, 43, 43, 0.5), rgba(13, 43, 43, 0.25));
  border: 1.5px solid rgba(110, 231, 183, 0.2);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 231, 183, 0.2), transparent);
}

.team-card:hover {
  background: linear-gradient(135deg, rgba(13, 43, 43, 0.7), rgba(13, 43, 43, 0.4));
  border-color: rgba(110, 231, 183, 0.35);
  box-shadow: 0 12px 30px rgba(110, 231, 183, 0.15);
  transform: translateY(-4px);
}

.team-card h4 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 700;
}

.team-card p {
  margin: 8px 0;
  font-size: 0.93rem;
  line-height: 1.5;
}

.team-card p:first-of-type {
  color: var(--secondary);
  font-weight: 600;
}

.phone-section {
  background: rgba(249, 200, 107, 0.08) !important;
  border-color: rgba(249, 200, 107, 0.2) !important;
}

.phone-section h3 {
  color: var(--accent) !important;
}

.phone-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 16px;
  background: linear-gradient(135deg, rgba(249, 200, 107, 0.12), rgba(249, 200, 107, 0.06));
  border: 1.5px solid rgba(249, 200, 107, 0.3);
  border-radius: 16px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.phone-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 200, 107, 0.4), transparent);
}

.phone-btn:hover {
  background: linear-gradient(135deg, rgba(249, 200, 107, 0.22), rgba(249, 200, 107, 0.12));
  border-color: rgba(249, 200, 107, 0.5);
  box-shadow: 0 12px 35px rgba(249, 200, 107, 0.25);
  transform: translateY(-3px);
}

.phone-btn:active {
  transform: translateY(-1px);
}

.phone-icon {
  font-size: 1.35rem;
  display: inline-block;
}

@media (max-width: 640px) {
  .info-modal-content {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .info-modal-content h2 {
    font-size: 1.8rem;
  }

  .team-info {
    grid-template-columns: 1fr;
  }

  .phone-buttons {
    grid-template-columns: 1fr;
  }

  /* Disable heavy effects on mobile */
  .stat-card,
  .service-card,
  .tilt-card,
  .benefit-item {
    transform: none !important;
    will-change: auto;
    transition: none !important;
  }

  .info-section {
    backdrop-filter: none;
  }

  .header {
    backdrop-filter: blur(2px);
  }

  body::before {
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Team Members Styles */
.team-members {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 16px;
}

.team-member {
  padding: 18px;
  background: rgba(13, 43, 43, 0.4);
  border: 1px solid rgba(110, 231, 183, 0.15);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.team-member:hover {
  background: rgba(13, 43, 43, 0.6);
  border-color: rgba(110, 231, 183, 0.3);
  box-shadow: 0 6px 18px rgba(110, 231, 183, 0.08);
}

.team-member strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-member span {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.whatsapp-section {
  background: rgba(37, 211, 102, 0.08) !important;
  border-color: rgba(37, 211, 102, 0.2) !important;
}

.whatsapp-section h3 {
  color: #25d366 !important;
}

.whatsapp-btn {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.08)) !important;
  border: 2px solid rgba(37, 211, 102, 0.4) !important;
  color: #25d366 !important;
  font-weight: 700;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(37, 211, 102, 0.15)) !important;
  border-color: rgba(37, 211, 102, 0.6) !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25) !important;
  transform: translateY(-2px);
}

.whatsapp-btn .phone-icon {
  font-size: 1.4rem;
}

/* WhatsApp section specific styling */
.whatsapp-section .phone-buttons {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
  .whatsapp-section .phone-buttons {
    grid-template-columns: 1fr;
  }
}


/* WhatsApp section specific styling */
.whatsapp-section .phone-buttons {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
  .whatsapp-section .phone-buttons {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   Ãàìáóðãåð-ìåíþ (ìîáèëüíàÿ íàâèãàöèÿ)
   ============================================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

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

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

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

/* Ìîáèëüíàÿ íàâèãàöèÿ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 999;
  }

  .nav.active {
    max-height: 300px;
  }

  .nav a {
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
  }

  .nav a:hover {
    background: rgba(110, 231, 183, 0.1);
    transform: translateX(8px);
  }

  .header-actions {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .hamburger {
    display: flex;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }

  .nav {
    top: 55px;
    padding: 16px;
    gap: 12px;
  }

  .nav a {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

/* Ñòèëü äëÿ êíîïêè èíôîðìàöèè â ìîáèëüíîì ìåíþ */
@media (max-width: 768px) {
  .nav-info-btn {
    padding: 12px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(110, 231, 183, 0.15), rgba(125, 211, 252, 0.1));
    border: 1px solid rgba(110, 231, 183, 0.3);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    margin-top: 8px;
  }

  .nav-info-btn:hover {
    background: linear-gradient(135deg, rgba(110, 231, 183, 0.25), rgba(125, 211, 252, 0.2));
    border-color: rgba(110, 231, 183, 0.5);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(110, 231, 183, 0.2);
  }
}

@media (max-width: 560px) {
  .nav-info-btn {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

/* Íà áîëüøèõ ýêðàíàõ êíîïêà èíôîðìàöèè ñêðûòà èç ìîáèëüíîãî ìåíþ */
@media (min-width: 769px) {
  .nav-info-btn {
    display: none !important;
  }
}
