* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #ff3d7f;
  --black: #0b0b0f;
  --white: #ffffff;
  --soft: #f6f6f8;
  --muted: #6b6b76;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 25px 70px rgba(0,0,0,0.12);
}

/* BASE */
body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

/* =========================
   NAV - PREMIUM MINIMAL
========================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}

.nav-logo .aim {
  color: var(--pink);
  font-weight: 700;
}

.nav-logo .vagency {
  color: var(--black);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--pink);
  transition: 0.4s;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.nav-cta:hover {
  transform: translateY(-3px);
}

/* =========================
   HERO - PREMIUM CLEAN
========================= */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 20px 80px;
  background: linear-gradient(to bottom, #fff, var(--soft));
}

.hero-content {
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6vw, 74px);
  font-weight: 400;
  line-height: 1.05;
}

.hero p {
  margin-top: 22px;
  color: var(--muted);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: 0.35s;
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-outline {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--black);
  color: var(--black);
  text-decoration: none;
  transition: 0.35s;
}

.btn-outline:hover {
  background: var(--black);
  color: white;
}

/* =========================
   SECTION SYSTEM (WEBFLOW STYLE)
========================= */
.section {
  padding: 120px 70px;
}

.section.alt {
  background: var(--soft);
}

.container {
  max-width: 1150px;
  margin: auto;
  text-align: center;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 400;
  margin-bottom: 20px;
}

.section-text {
  color: var(--muted);
  max-width: 700px;
  margin: auto;
}

/* =========================
   GRID CARDS (PREMIUM MINIMAL)
========================= */
.grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

/* SERVICES LIST */
.service-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
}

.service-list li {
  padding: 6px 0;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-list li:last-child {
  border-bottom: none;
}

.card,
.video-box,
.team-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  min-height: 210px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* hover premium lift */
.card:hover,
.video-box:hover,
.team-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

/* subtle pink glow */
.card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,61,127,0.08),
    transparent
  );
  transition: 0.7s;
}

.card:hover::before {
  left: 100%;
}

/* CARD TEXT */
.card h3 {
  margin-bottom: 12px;
  color: var(--black);
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

input,
textarea,
select {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: 0.3s;
  background: white;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,61,127,0.12);
}

button {
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  cursor: pointer;
  transition: 0.35s;
}

button:hover {
  transform: translateY(-4px);
}

/* CALENDLY */
.calendly {
  display: inline-block;
  margin-top: 20px;
  color: var(--pink);
  text-decoration: none;
  font-weight: 500;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 50px;
  background: var(--black);
  color: rgba(255,255,255,0.6);
}

/* =========================
   ANIMATION (WEBFLOW SMOOTH)
========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {

  nav {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 90px 20px;
  }

  .hero h1 {
    font-size: 40px;
  }
}
/* PREMIUM CONTACT FORM LAYOUT FIX */
.contact-form div {
  width: 100%;
}

.contact-form input {
  width: 100%;
}

/* split first/last name responsiveness */
@media (max-width: 600px) {
  .contact-form div {
    flex-direction: column;
  }
}
.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  color: var(--muted);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.info-item:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
}

/* WHY US TEXT */
.why-text {
  max-width: 850px;
  margin: 40px auto 0;
  text-align: left;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.why-text p {
  margin-bottom: 20px;
}
/* TEAM SECTION */
.team-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.35s;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid var(--pink);
}

.team-card h3 {
  margin-bottom: 6px;
  color: var(--black);
}

.team-role {
  display: block;
  margin-bottom: 20px;
  color: var(--pink);
  font-weight: 600;
  font-size: 14px;
}

.team-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
  text-align: left;
}