:root {
  --bg: #0b0b10;
  --card: #15151f;
  --text: #f7f2ea;
  --muted: #b8b0a4;
  --pink: #ff5fa2;
  --pink-light: #ffb7d2;
  --border: rgba(255,255,255,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,95,162,0.20), transparent 35%),
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(11,11,16,0.62);
  z-index: -2;
  pointer-events: none;
}

.bg-photo {
  position: fixed;
  top: 120px;
  width: 38vw;
  height: 78vh;
  background-size: cover;
  background-position: center;
  opacity: 0.23;
  z-index: -3;
  filter: saturate(0.9) contrast(1.08);
  pointer-events: none;
}

.bg-left {
  left: 0;
  background-image:
    linear-gradient(to right, rgba(11,11,16,0.05), rgba(11,11,16,0.38), rgba(11,11,16,1)),
    url("assets/greta-dubai-phone.jpg");
  border-radius: 0 42px 42px 0;
}

.bg-right {
  right: 0;
  background-image:
    linear-gradient(to left, rgba(11,11,16,0.05), rgba(11,11,16,0.42), rgba(11,11,16,1)),
    url("assets/greta-dubai-walk.jpg");
  border-radius: 42px 0 0 42px;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 24px;
}

.nav nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav nav a:hover { color: var(--pink-light); }

.hero {
  width: min(1180px, 92%);
  margin: 70px auto 90px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.badge,
.section-label {
  color: var(--pink-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.subtitle {
  color: var(--muted);
  font-size: 19px;
  max-width: 670px;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: #151007;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255,95,162,0.25);
}

.secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.secondary:hover { border-color: var(--pink); }

.hero-card {
  background: rgba(21,21,31,0.72);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}

.stat {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 16px;
}

.stat:last-child { margin-bottom: 0; }

.stat span {
  color: var(--pink);
  font-weight: 800;
}

.stat strong {
  display: block;
  font-size: 22px;
  margin: 8px 0;
}

.stat p { color: var(--muted); }

.featured-photo {
  width: min(1180px, 92%);
  margin: 0 auto 110px;
}

.featured-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 34px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.section {
  width: min(1180px, 92%);
  margin: 0 auto 110px;
}

.section h2,
.split-section h2,
.cta h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  max-width: 850px;
  margin-bottom: 34px;
}

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

.service {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  min-height: 210px;
  transition: 0.25s ease;
  backdrop-filter: blur(12px);
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(255,183,210,0.45);
  background: rgba(255,255,255,0.065);
}

.service h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service p,
.split-section p,
.cta p,
footer {
  color: var(--muted);
}

.split-section {
  width: min(1180px, 92%);
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.split-section p {
  font-size: 18px;
  margin-bottom: 18px;
}

.about-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.proof {
  width: min(1180px, 92%);
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof div {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.proof strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.proof span { color: var(--muted); }

.cta {
  width: min(980px, 92%);
  margin: 0 auto 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,95,162,0.18), rgba(255,255,255,0.05));
  border: 1px solid var(--border);
  border-radius: 38px;
  padding: 64px 32px;
  backdrop-filter: blur(16px);
}

.cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 18px;
}

footer {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

footer a:hover { color: var(--pink-light); }

@media (max-width: 860px) {
  .bg-photo {
    width: 70vw;
    height: 50vh;
    opacity: 0.14;
  }

  .bg-left { top: 70px; }
  .bg-right { top: 440px; }

  .nav nav { display: none; }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero { margin-top: 42px; }

  .featured-photo img,
  .about-photo img {
    height: 460px;
  }

  .services-grid,
  .proof {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
