:root {
  --black: #050505;
  --soft-black: #111111;
  --charcoal: #1c1c1f;
  --gray: #5f5f66;
  --light-gray: #f4f4f6;
  --white: #ffffff;
  --soft-white: #fbfbfc;

  --pale-pink: #fff1f7;
  --blush: #f6c3db;
  --pink: #ec78b5;
  --hot-pink: #ff3f9f;
  --deep-pink: #d84f96;

  --text: #111111;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", Arial, sans-serif;
  background: var(--soft-white);
  color: var(--text);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 3 L25 16 L15 18 L10 29 Z' fill='%23050505' stroke='%23ff3f9f' stroke-width='2'/%3E%3C/svg%3E") 5 3, auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

header {
  height: 76px;
  padding: 0 62px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
}

.logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--black);
}

nav a {
  color: var(--black);
  text-decoration: none;
  margin-left: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

nav a:hover {
  color: var(--hot-pink);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 70px 96px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 78px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 63, 159, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fbfbfc 62%, #fff5fa 100%);
}

.eyebrow {
  margin: 0;
  color: var(--deep-pink);
  text-transform: uppercase;
  letter-spacing: 3.2px;
  font-size: 10px;
  font-weight: 800;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 20px 0 28px;
  color: var(--black);
  max-width: 850px;
}

.hero-text > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.9;
  color: var(--gray);
  max-width: 720px;
  margin: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-block;
  padding: 15px 31px;
  background: var(--black);
  color: white;
  border: 1px solid var(--black);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(216, 79, 150, 0.22);
}

.btn-light {
  background: transparent;
  color: var(--black);
}

.btn-light:hover {
  color: white;
}

.hero-panel {
  position: relative;
  width: 100%;
  min-height: 530px;
  padding: 46px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 63, 159, 0.11), transparent 34%),
    linear-gradient(145deg, #050505 0%, #141416 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.18),
    0 0 36px rgba(255, 63, 159, 0.08);
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 250px;
  height: 250px;
  background: rgba(255, 63, 159, 0.12);
  border-radius: 999px;
  filter: blur(62px);
  z-index: 0;
  pointer-events: none;
}

.hero-panel-text,
.boost-chart {
  position: relative;
  z-index: 2;
}

.panel-label {
  margin: 0 0 18px;
  color: var(--blush);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 800;
}

.hero-panel h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  margin: 0 0 20px;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  line-height: 1.8;
}

.boost-chart {
  width: 100%;
  max-width: 275px;
  align-self: flex-end;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.boost-chart img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  opacity: 0.9;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
}

.about {
  padding: 112px 70px;
  background: var(--white);
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--blush), var(--hot-pink));
  border-radius: 25px;
  z-index: 0;
  opacity: 0.36;
  filter: blur(3px);
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.12);
}

.about-text h2,
.services h2,
.packages h2,
.contact-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 58px);
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 12px 0 30px;
}

.about-text p {
  color: #55555d;
  font-size: 16.5px;
  line-height: 1.9;
}

.services {
  padding: 112px 70px;
  background: var(--black);
  color: white;
}

.services h2 {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.service-card {
  background: #121212;
  border: 1px solid #262626;
  padding: 31px;
  border-radius: 24px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 63, 159, 0.5);
  box-shadow: 0 0 28px rgba(255, 63, 159, 0.1);
}

.service-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
}

.service-card p {
  color: #d0d0d0;
  line-height: 1.75;
  margin: 0;
}

.packages {
  padding: 112px 70px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 63, 159, 0.055), transparent 36%),
    linear-gradient(180deg, #fbfbfc 0%, #fff9fc 100%);
  text-align: center;
}

.packages h2 {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.package-card {
  position: relative;
  background: white;
  border: 1px solid #eeeeee;
  border-radius: 26px;
  padding: 36px;
  min-height: 390px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
  transition: 0.25s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(216, 79, 150, 0.09);
}

.package-card.featured {
  background: var(--black);
  color: white;
  border-color: rgba(255, 63, 159, 0.42);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.16),
    0 0 26px rgba(255, 63, 159, 0.08);
}

.tag {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 13px;
  background: rgba(255, 63, 159, 0.08);
  color: var(--blush);
  border: 1px solid rgba(255, 63, 159, 0.28);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 31px;
  margin: 0;
}

.price {
  font-size: 27px;
  font-weight: 800;
  color: var(--deep-pink);
  margin: 12px 0 16px;
}

.package-card p {
  color: #616168;
  line-height: 1.7;
}

.package-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.package-card ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 13px;
  color: #4f4f55;
  line-height: 1.5;
}

.package-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--deep-pink);
  font-weight: 900;
}

.package-card.featured li {
  color: rgba(255, 255, 255, 0.86);
}

.pricing-note {
  position: relative;
  max-width: 880px;
  margin: 58px auto 0;
  padding: 34px 42px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 79, 150, 0.1);
  border-radius: 26px;
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.045),
    0 0 34px rgba(255, 63, 159, 0.07);
  text-align: left;
}

.pricing-note-copy {
  margin: 0;
  color: #3f3f46;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0.1px;
}

.pricing-note-copy::before {
  content: "Flexible pricing";
  display: block;
  margin-bottom: 10px;
  color: var(--deep-pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", Arial, sans-serif;
}

.pricing-signature {
  margin: 18px 0 0;
  color: #d889b6;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-style: italic;
  opacity: 0.88;
}

.contact-section {
  padding: 118px 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 66px;
  align-items: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 63, 159, 0.05), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #fafafa 58%, #fff8fc 100%);
  border-top: 1px solid #eeeeee;
}

.contact-text p {
  color: #55555d;
  font-size: 18px;
  line-height: 1.8;
}

.contact-callout {
  margin-top: 26px;
  font-weight: 700;
}

.contact-callout a {
  color: var(--deep-pink);
  text-decoration: none;
  border-bottom: 2px solid var(--deep-pink);
  padding-bottom: 4px;
}

.contact-form {
  background: white;
  padding: 42px;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.075);
  border: 1px solid rgba(216, 79, 150, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--black);
}

input,
select,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #d9d9dd;
  border-radius: 14px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  outline: none;
  background: #fafafa;
  transition: 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--deep-pink);
  box-shadow: 0 0 0 4px rgba(216, 79, 150, 0.1);
  background: white;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-btn {
  width: 100%;
  padding: 17px 28px;
  border: none;
  border-radius: 999px;
  background: var(--black);
  color: white;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.form-btn:hover {
  background: var(--hot-pink);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(216, 79, 150, 0.22);
}

footer {
  text-align: center;
  padding: 66px 30px;
  background: var(--black);
  color: white;
}

footer h2 {
  letter-spacing: 4px;
  font-size: 18px;
}

footer p {
  color: #d0d0d0;
}

footer a {
  color: var(--blush);
  text-decoration: none;
}

.glitter {
  position: fixed;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #ffffff 0%, var(--blush) 42%, var(--hot-pink) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: glitterFade 0.7s forwards;
  box-shadow: 0 0 10px rgba(255, 63, 159, 0.7);
}

.glitter::after {
  content: "✦";
  position: absolute;
  color: var(--hot-pink);
  font-size: 8px;
  top: -6px;
  left: 1px;
  opacity: 0.78;
}

@keyframes glitterFade {
  0% {
    opacity: 0.95;
    transform: scale(1) translateY(0) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: scale(0.25) translateY(-22px) rotate(90deg);
  }
}

@media (max-width: 1050px) {
  .service-grid,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  header {
    height: 70px;
    padding: 0 22px;
  }

  nav {
    display: none;
  }

  .logo {
    font-size: 13px;
    letter-spacing: 2.6px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 118px 24px 72px;
    gap: 34px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 72%, #fff8fb 100%);
  }

  .hero h1 {
    font-size: clamp(39px, 10vw, 54px);
    line-height: 1.02;
    letter-spacing: -1.4px;
    margin: 18px 0 22px;
  }

  .hero-text > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-panel {
    min-height: auto;
    padding: 34px;
    border-radius: 28px;
  }

  .hero-panel::after {
    display: none;
  }

  .hero-panel h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .boost-chart {
    max-width: 245px;
    align-self: center;
  }

  .about,
  .contact-section {
    grid-template-columns: 1fr;
    padding: 76px 24px;
  }

  .about {
    gap: 48px;
  }

  .about-image {
    max-width: 215px;
  }

  .about-image img {
    height: 280px;
  }

  .services,
  .packages {
    padding: 76px 24px;
  }

  .service-grid,
  .package-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .package-grid {
    gap: 20px;
  }

  .pricing-note {
    margin-top: 38px;
    padding: 28px;
    border-radius: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    text-align: center;
  }
}

@media (max-width: 520px) {
  header {
    padding: 0 18px;
  }

  .hero {
    padding: 112px 20px 64px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-panel {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .hero-panel p {
    font-size: 15px;
  }

  .boost-chart {
    max-width: 200px;
  }

  .about-image {
    max-width: 195px;
  }

  .about-image img {
    height: 255px;
    border-radius: 20px;
  }

  .about-text h2,
  .services h2,
  .packages h2,
  .contact-text h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-text p,
  .contact-text p {
    font-size: 16px;
    line-height: 1.75;
  }

  .package-card,
  .service-card {
    padding: 28px;
    border-radius: 22px;
  }

  .package-card h3 {
    font-size: 28px;
  }

  .price {
    font-size: 25px;
  }

  .pricing-note {
    padding: 26px 22px;
  }

  .pricing-note-copy {
    font-size: 15px;
    line-height: 1.75;
  }

  .pricing-signature {
    font-size: 22px;
  }

  .contact-form {
    padding: 28px;
    border-radius: 24px;
  }
}
.price-match-pop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 290px;
  padding: 26px 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 63, 159, 0.14), transparent 35%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 63, 159, 0.22);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.12),
    0 0 32px rgba(255, 63, 159, 0.12);
  z-index: 1000;
  animation: popIn 0.7s ease forwards;
}

.price-match-pop::before {
  content: "✦";
  position: absolute;
  top: 18px;
  right: 46px;
  color: var(--hot-pink);
  font-size: 18px;
}

.price-match-label {
  margin: 0 0 10px;
  color: var(--hot-pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.price-match-pop h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1;
  color: var(--black);
}

.price-match-pop p {
  margin: 0;
  color: #55555d;
  font-size: 13px;
  line-height: 1.65;
}

.price-match-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}

.price-match-close:hover {
  color: var(--hot-pink);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 520px) {
  .price-match-pop {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }
}