/* Google font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* ROOT VARIABLES */
:root {
  --pink: #ff2e74;
  --pink-soft: #ffe4ee;
  --bg: #ffffff;
  --bg-alt: #f8f9fc;
  --dark: #151722;
  --text: #222433;
  --muted: #7a7e90;
  --border: #ececf5;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

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

/* LAYOUT HELPERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* HEADER / NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(236, 236, 245, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 0 0, #fff, var(--pink));
  color: #fff;
  font-size: 0.9rem;
}

.logo-text span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(255, 46, 116, 0.4);
}

/* HERO */
.hero {
  padding: 4.5rem 0 4rem;
  background: radial-gradient(circle at top left, #ffe8f3, #ffffff 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 strong {
  color: var(--pink);
  font-weight: 800;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hero-meta span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 46, 116, 0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 46, 116, 0.55);
}

.btn.ghost {
  background: #fff;
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.06);
}

.btn.ghost:hover {
  background: var(--pink-soft);
  border-color: var(--pink);
}

/* HERO MEDIA */
.hero-media {
  position: relative;
}

.video-frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
  transform: translateY(4px);
}

.video-frame iframe {
  width: 100%;
  height: 260px;
}

.hero-badge {
  position: absolute;
  right: -10px;
  bottom: -18px;
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* SECTION TITLES */
.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--pink);
}

.section-title.light {
  color: #fff;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 28rem;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.8);
}

/* SERVICES */
.services {
  background: var(--bg);
}

.service-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--pink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.service-card h3 {
  font-size: 1rem;
}

.service-card p {
  font-size: 0.87rem;
  color: var(--muted);
}

/* CLIENTS SECTION */
.clients {
  background: linear-gradient(120deg, #ff2e74, #ff4b92);
  color: #fff;
}

.marquee-wrapper {
  position: relative;
  margin-top: 2.4rem;
}

.marquee {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.7rem 0;
  animation: scroll-left 28s linear infinite;
}

.client-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.9rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  min-width: 130px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.client-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 0.3rem;
  background: #fff;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info {
  text-align: center;
}

.client-name {
  font-size: 0.82rem;
  font-weight: 600;
  display: block;
}

.client-subs {
  font-size: 0.72rem;
  opacity: 0.85;
}

/* FADING EDGES FOR MARQUEES */
.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  pointer-events: none;
  z-index: 2;
}

.marquee-fade.left {
  left: 0;
  background: linear-gradient(to right, rgba(255, 46, 116, 1), rgba(255, 46, 116, 0));
}

.marquee-fade.right {
  right: 0;
  background: linear-gradient(to left, rgba(255, 46, 116, 1), rgba(255, 46, 116, 0));
}

/* WORK SECTION */
.work {
  background: var(--bg);
}

.work-slider-wrapper {
  position: relative;
  margin-top: 2.4rem;
}

.work-slider {
  overflow: hidden;
}

.work-track {
  display: inline-flex;
  align-items: stretch;
  gap: 1.5rem;
  padding: 0.4rem 0;
  animation: scroll-left 30s linear infinite;
}

.work-card {
  background: #fff;
  border-radius: 22px;
  padding: 0.5rem;
  box-shadow: var(--shadow-soft);
  min-width: 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work-card img {
  border-radius: 18px;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.work-title {
  font-size: 0.85rem;
  color: var(--muted);
}

/* CONTACT / FORM */
.contact {
  background: #fef7fb;
}

.form-card {
  margin-top: 2.2rem;
  background: #fff;
  border-radius: 30px;
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.form-field {
  flex: 1;
  min-width: 230px;
}

.form-field.full {
  flex-basis: 100%;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.label-hint {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.75rem;
}

input[type="text"],
input[type="url"],
input[type="email"] {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 46, 116, 0.2);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* FOOTER */
.site-footer {
  background: #0c0d14;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 2.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo .logo-icon {
  background: radial-gradient(circle at 0 0, #fff, var(--pink));
}

.footer-tagline {
  font-size: 0.82rem;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-end;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 0.9rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

/* MARQUEE ANIMATION */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .video-frame iframe {
    height: 220px;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
  }

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

  .section {
    padding: 3.5rem 0;
  }

  .form-card {
    padding: 1.6rem 1.2rem;
  }

  .hero-badge {
    position: static;
    margin-top: 0.6rem;
  }

  .marquee-fade {
    display: none;
  }

  .marquee-track,
  .work-track {
    animation-duration: 22s;
  }
}