/* =========================
   PEXEL - Main Styles
   ========================= */

:root {
  --bg: #070a0f;
  --bg-secondary: #0d121a;
  --card: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f7fa;
  --muted: #9ba6b5;
  --accent: #4da6ff;
  --accent-light: #8bc7ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --pointer-x: 50%;
  --pointer-y: 50%;
  --mouse-shift-x: 0px;
  --mouse-shift-y: 0px;
}

/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  cursor: none;
}

:root {
  --pointer-x: 50%;
  --pointer-y: 50%;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -10%;
  background:
    linear-gradient(135deg, rgba(13, 18, 26, 0.9), rgba(7, 10, 15, 0.98));
  filter: blur(8px) saturate(1.2);
  animation: backgroundDrift 18s ease-in-out infinite alternate, waterPulse 8s ease-in-out infinite alternate;
  z-index: -2;
  transform:
    perspective(1600px)
    rotateX(calc((50% - var(--pointer-y)) * 0.05deg))
    rotateY(calc((var(--pointer-x) - 50%) * 0.07deg))
    translate3d(calc(var(--mouse-shift-x) * 0.45), calc(var(--mouse-shift-y) * 0.45), 0)
    scale(1.04);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.04), transparent 45%, rgba(255,255,255,0.02)),
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px) 0 0 / 120px 120px,
    radial-gradient(circle at 75% 40%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px) 0 0 / 140px 140px;
  opacity: 0.42;
  animation: starField 28s linear infinite alternate, waterRipple 12s ease-in-out infinite alternate;
  transform:
    perspective(1600px)
    rotateX(calc((50% - var(--pointer-y)) * 0.07deg))
    rotateY(calc((var(--pointer-x) - 50%) * 0.09deg))
    translate3d(calc(var(--mouse-shift-x) * 0.28), calc(var(--mouse-shift-y) * 0.28), 0);
  z-index: -1;
}

body,
button,
a {
  font-family: inherit;
}

html, body,
a, button, input, textarea, select {
  cursor: none;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  border-radius: 50%;
  border: 1px solid rgba(163, 217, 255, 0.9);
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(163, 217, 255, 0.7) 18%,
    rgba(77, 166, 255, 0.18) 42%,
    rgba(77, 166, 255, 0.06) 58%,
    transparent 72%
  );
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.28),
    0 0 0 1px rgba(77, 166, 255, 0.08),
    0 0 16px rgba(77, 166, 255, 0.18),
    0 0 28px rgba(77, 166, 255, 0.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transform: translate3d(-50%, -50%, 0);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, visibility 0.16s ease,
    width 0.16s ease, height 0.16s ease,
    border-color 0.16s ease, background 0.16s ease,
    box-shadow 0.16s ease;
}

.cursor::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
}

.cursor::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 166, 255, 0.08), transparent 66%);
  filter: blur(8px);
  opacity: 0.25;
  z-index: -1;
}

.cursor.is-visible {
  opacity: 1;
  visibility: visible;
}

.cursor.is-hovering {
  width: 30px;
  height: 30px;
  background: rgba(77, 166, 255, 0.05);
  border-color: rgba(168, 221, 255, 0.6);
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(77, 166, 255, 0.08),
    0 0 14px rgba(77, 166, 255, 0.12);
}

.interactive-light {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
}

.interactive-light::before {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(77, 166, 255, 0.22),
    rgba(77, 166, 255, 0.1) 18%,
    rgba(77, 166, 255, 0.03) 34%,
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 0;
}

.interactive-light:hover::before,
.interactive-light:focus-visible::before,
.interactive-light.is-active::before {
  opacity: 1;
}

.interactive-light > * {
  position: relative;
  z-index: 1;
}

.cursor.is-pressed {
  width: 18px;
  height: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

header,
main,
footer,
section,
.hero,
.about-content,
.services-grid,
.contact-box {
  position: relative;
  z-index: 1;
}


/* =========================
   Header
   ========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 10, 15, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.menu a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.menu a:hover {
  color: var(--text);
}

.language-btn {
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.language-btn:hover {
  background: rgba(77, 166, 255, 0.12);
  border-color: rgba(77, 166, 255, 0.35);
}


/* =========================
   Hero
   ========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(77, 166, 255, 0.09);
  filter: blur(100px);
  border-radius: 50%;
  top: 10%;
  right: -180px;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 13px;
  border: 1px solid rgba(77, 166, 255, 0.25);
  background: rgba(77, 166, 255, 0.07);
  color: var(--accent-light);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 25px;
}

.hero p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--accent);
  color: #00101e;
  font-weight: 700;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(77, 166, 255, 0.25);
}

.btn.secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}


/* Hero Card */

.hero-card {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 35px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: none;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(77, 166, 255, 0.35);
  border-radius: 50%;
  animation: rotate 12s linear infinite;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-card.interactive-light::before {
  content: "";
  position: absolute;
  inset: -18%;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  animation: none;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(77, 166, 255, 0.22),
    rgba(77, 166, 255, 0.12) 18%,
    rgba(77, 166, 255, 0.04) 34%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-card.interactive-light:hover::before,
.hero-card.interactive-light:focus-visible::before {
  opacity: 1;
}

.glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(77, 166, 255, 0.12);
  filter: blur(55px);
  border-radius: 50%;
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-content span {
  color: var(--accent-light);
  letter-spacing: 5px;
  font-size: 0.8rem;
}

.card-content strong {
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.card-content small {
  color: var(--muted);
}

/* =========================
   Interactive Service Cards
   ========================= */

.service-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 22px;
  transform-style: preserve-3d;
  transition: transform 0.38s cubic-bezier(.2,.9,.2,1), box-shadow 0.38s ease, filter 0.38s ease;
  will-change: transform, box-shadow;
  perspective: 900px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -24%;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(140,220,255,0.20), rgba(140,220,255,0.08) 26%, transparent 48%);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card.is-active::before {
  opacity: 1;
}

.service-card .service-number,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translate3d(0, -6px, 10px) rotateX(0deg) rotateY(0deg);
  box-shadow: 0 26px 60px rgba(0,0,0,0.45);
}

@media (hover: none) {
  .service-card { transform: none !important; box-shadow: none !important; }
  .service-card::before { display: none; }
}

/* =========================
   Sections
   ========================= */

.section {
  padding: 110px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 45px;
}

.section-title span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
}


/* =========================
   About
   ========================= */

.about-content {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.ceo-card {
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.ceo-card span {
  color: var(--accent-light);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.ceo-card h3 {
  margin-top: 8px;
  font-size: 1.5rem;
}


/* =========================
   Services
   ========================= */

.services-section {
  background: rgba(255, 255, 255, 0.015);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  padding: 35px;
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 166, 255, 0.3);
  background: rgba(77, 166, 255, 0.05);
}

.service-number {
  color: rgba(139, 199, 255, 0.4);
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
}


/* =========================
   Contact
   ========================= */

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 55px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(77, 166, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );
}

.contact-box .section-title {
  margin-bottom: 15px;
}

.contact-box p {
  color: var(--muted);
}

.telegram-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--accent);
  color: #00101e;
  font-weight: 700;
  transition: 0.25s ease;
}

.telegram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(77, 166, 255, 0.25);
}


/* =========================
   Footer
   ========================= */

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

.audio-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  user-select: none;
  cursor: grab;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.audio-wrap::before {
  content: "";
  position: absolute;
  inset: -12px -10px -18px;
  background: radial-gradient(circle at 50% 20%, rgba(106, 183, 255, 0.24), rgba(106, 183, 255, 0.05) 30%, transparent 72%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
  animation: audioGlow 4.8s ease-in-out infinite alternate;
}

.audio-wrap:hover {
  filter: drop-shadow(0 12px 28px rgba(77, 166, 255, 0.18));
}

.audio-wrap:active {
  cursor: grabbing;
}

.audio-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 188px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(160, 220, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 18, 28, 0.96), rgba(8, 12, 18, 0.9)),
    rgba(10, 16, 24, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(120, 200, 255, 0.07),
    0 0 24px rgba(77, 166, 255, 0.08);
  overflow: hidden;
}

.audio-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,0.12), transparent 30%, transparent 68%, rgba(135, 214, 255, 0.06));
  pointer-events: none;
}

.audio-panel::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(146, 220, 255, 0.9), transparent);
  box-shadow: 0 0 16px rgba(146, 220, 255, 0.5);
}

.audio-panel__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.audio-profile {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(164, 220, 255, 0.22);
  box-shadow: 0 10px 22px rgba(77, 166, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.audio-panel__meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.audio-panel__label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 2px;
}

.audio-panel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b9f3ff, #72d0ff);
  box-shadow: 0 0 18px rgba(114, 208, 255, 0.9);
}

.audio-panel__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.audio-btn {
  position: relative;
  min-width: 46px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  transition: 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.audio-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.audio-btn:hover::before {
  transform: translateX(120%);
}

.audio-btn:hover {
  transform: translateY(-1px);
  background: rgba(77, 166, 255, 0.08);
  border-color: rgba(77, 166, 255, 0.3);
  box-shadow: 0 10px 22px rgba(77, 166, 255, 0.12), inset 0 1px 0 rgba(255,255,255,0.08);
}

.audio-btn--primary {
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.22), rgba(122, 214, 255, 0.13));
  border-color: rgba(122, 214, 255, 0.36);
  box-shadow: 0 12px 22px rgba(77, 166, 255, 0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

.audio-volume {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 7px 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(18, 25, 35, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 18px rgba(0,0,0,0.14);
}

.audio-volume::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 40%, rgba(104, 196, 255, 0.06));
  pointer-events: none;
}

.audio-volume__slider {
  position: relative;
  z-index: 1;
  width: 100%;
  accent-color: #8ee0ff;
  cursor: pointer;
  filter: drop-shadow(0 0 10px rgba(142, 224, 255, 0.28));
}

@keyframes audioGlow {
  0% {
    transform: scale(0.96);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.04);
    opacity: 1;
  }
}


@media (max-width: 600px) {
  .audio-panel {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }

  .audio-panel__label {
    display: none;
  }
}


/* =========================
   Animations
   ========================= */

@keyframes backgroundDrift {
  0% {
    transform: scale(1.06) translate3d(-2%, 0, 0) rotate(0deg);
  }
  50% {
    transform: scale(1.12) translate3d(2%, -2%, 0) rotate(2deg);
  }
  100% {
    transform: scale(1.08) translate3d(1%, 2%, 0) rotate(-2deg);
  }
}

@keyframes waterPulse {
  0% {
    filter: blur(18px) saturate(1.2) brightness(0.92);
  }
  50% {
    filter: blur(22px) saturate(1.5) brightness(1.08);
  }
  100% {
    filter: blur(20px) saturate(1.35) brightness(1.02);
  }
}

@keyframes waterRipple {
  0% {
    opacity: 0.28;
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.04) translate3d(calc(var(--mouse-shift-x) * 0.3), calc(var(--mouse-shift-y) * 0.3), 0);
  }
  100% {
    opacity: 0.38;
    transform: scale(1.08) translate3d(calc(var(--mouse-shift-x) * 0.5), calc(var(--mouse-shift-y) * 0.5), 0);
  }
}

@keyframes starField {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translate3d(-10px, 10px, 0) scale(1.04);
    opacity: 0.42;
  }
  100% {
    transform: translate3d(10px, -8px, 0) scale(1.08);
    opacity: 0.35;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* =========================
   Responsive
   ========================= */

@media (max-width: 850px) {

  .menu {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-card {
    min-height: 300px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {

  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: -1.5px;
  }

  .hero p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 30px 24px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (pointer: coarse), (hover: none) {
  html,
  body,
  a,
  button,
  input,
  textarea,
  select {
    cursor: auto;
  }

  .cursor {
    display: none !important;
  }
}