/* Base Reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; color: #0a0a0a; background: #ffffff; }
h1, h2, h3, h4, h5, h6 { font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; font-weight: 300; letter-spacing: -0.01em; }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: transparent; border-bottom: 1px solid transparent; transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.site-header.scrolled { background: rgba(0,0,0,0.4); backdrop-filter: saturate(180%) blur(10px); box-shadow: 0 4px 18px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 20px; letter-spacing: 0.5px; text-decoration: none; color: #111; font-size: 1.7rem; }
.primary-nav { display: none; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 24px; align-items: center; }
.primary-nav a { text-decoration: none; color: #ffffff; font-weight: 900; font-size: 1.2rem; }
.btn { display: inline-block; padding: 10px 16px; border-radius: 999px; border: 1px solid #111; text-decoration: none; font-weight: 600; }
.btn-primary { background: #111; color: #fff!important; }
.btn-secondary { background: #f3f3f3; color: #111; border-color: #f3f3f3; }
.nav-toggle { appearance: none; border: none; background: transparent; display: inline-flex; flex-direction: column; gap: 4px; cursor: pointer; }
.nav-toggle-bar { width: 24px; height: 2px; background: #111; display: block; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block; }
}

.primary-nav.open { display: block; position: absolute; top: 64px; right: 0; left: 0; background: #fff; border-bottom: 1px solid #eee; }
.primary-nav.open ul { flex-direction: column; gap: 0; }
.primary-nav.open li { width: 100%; }
.primary-nav.open a { display: block; padding: 16px 20px; border-top: 1px solid #f3f3f3; }

@media (min-width: 900px) {
  .primary-nav.open { position: static; border: 0; }
  .primary-nav.open ul { flex-direction: row; }
  .primary-nav.open a { padding: 0; border: 0; }
}

/* Hero */
.hero { padding: 24px 0; background: linear-gradient(135deg, #fc35a9 0%, #4ab3ff 50%, #00f5d4 100%); background-size: 200% 200%; animation: gradientShift 8s ease-in-out infinite; height: 110vh; display: flex; align-items: flex-end; margin-top: -64px; padding-top: calc(24px + 64px); padding-bottom: 15vh; }

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 800px) { .hero-grid { grid-template-columns: 2fr 1fr; } }
.hero-left { text-align: left; }
.hero-right { display: flex; justify-content: flex-end; align-items: center; }
.hero .container { max-width: 960px; }
@media (min-width: 800px) { .hero .container { max-width: none; width: 90%; } }
.hero h1 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.1; letter-spacing: -0.015em; margin: 0 0 12px; color: #fff; }
.hero p { font-size: 16px; max-width: 640px; color: rgba(255,255,255,0.92); }
.hero-cta { margin-top: 24px; }
@media (min-width: 800px) { .hero-cta { text-align: right; } }
.hero-rotate { display: inline-block; position: relative; color: #fc35a9; text-shadow: 0 2px 6px rgba(255, 255, 255, 0.25), 0 6px 18px rgba(255, 255, 255, 0.35), 0 0 16px rgba(252, 252, 252, 0.35); }
/* Fade animation for rotating words */
.hero-rotate { transition: opacity 220ms ease; }
.hero-rotate.is-fading { opacity: 0; }
/* Ensure buttons are legible on vibrant hero */
.hero .btn-secondary { background: #fff; border-color: #fff; color: #111; border-radius: 7px; }

/* Hero right positioning for mobile */
.hero-right { position: relative; top: 0; }
@media (min-width: 800px) { .hero-right { top: -375px; } }


/* Logos */
.logos { padding: 48px 0; }
.section-eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; color: #ffffff; margin-bottom: 16px; }
.logo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: center; }
@media (min-width: 900px) { .logo-grid { grid-template-columns: repeat(4, 1fr); } }
.logo-item { height: 60px; background: #f6f6f6; border: 1px solid #eee; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #999; }
.logo-item img { max-width: 80%; max-height: 36px; width: auto; height: auto; filter: grayscale(100%); opacity: 0.85; }

@media (min-width: 700px) { .logo-grid { grid-template-columns: repeat(6, 1fr); } }

/* Video Section */
.video-section { width: 100%; margin: 0; padding: 0; }
.video-container { position: relative; width: 100%; height: 0; padding-bottom: 56.25%; /* 16:9 aspect ratio */ }
.video-iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Results */
.results { padding: 56px 0; }
.results h2 { margin: 0 0 24px; font-size: 28px; }
.card-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }
.card { border: 1px solid #eee; border-radius: 12px; padding: 16px; background: #fff; display: flex; flex-direction: column; gap: 8px; }
.card-tag { font-size: 12px; color: #7b5cff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.card h3 { margin: 0; font-size: 18px; }
.stat-list { margin: 8px 0; padding-left: 16px; }
.stat-list li { margin-bottom: 6px; }
.card-link { margin-top: auto; color: #111; font-weight: 600; text-decoration: none; }

/* Services */
.services { padding: 56px 0; background: #fafafa; }
.services h2 { margin-top: 0; }
.section-subtitle { color: #555; max-width: 720px; }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }
@media (min-width: 900px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; }

/* Testimonials */
.testimonials { padding: 56px 0; }
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial { display: none; margin: 0; }
.testimonial.active { display: block; }
.testimonial blockquote { margin: 0 0 8px; font-size: 2rem; line-height: 1.5; color: #333; }
.testimonial figcaption { color: #666; font-size: 14px; }
.carousel-controls { display: flex; gap: 12px; margin-top: 12px; }
.carousel-controls button { border: 1px solid #ddd; background: #fff; padding: 8px 12px; border-radius: 8px; cursor: pointer; }

/* Contact */
.contact { padding: 56px 0; background: #111; color: #fff; }
.contact a { color: #fff; }
.locations { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }
@media (min-width: 700px) { .locations { grid-template-columns: repeat(2, 1fr); } }

/* Footer */
.site-footer { border-top: 1px solid #222; background: #111; color: #aaa; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.footer-nav a { color: #aaa; margin-left: 16px; text-decoration: none; }

.btn-pink{
  background: #fc35a9;
  color: white;
  padding: 30px;
  border-radius: 10px;
  border-color: #fc35a9;
}
.btn-pink-md{
  background: #fc35a9;
  color: white;
  padding: 10px;
  border-radius: 10px;
  border-color: #fc35a9;
}
@media (max-width: 800px) { .hero-left { position: relative; top: 100px; } }