/* =========================================================
   Acquirely Consulting — Modern Monochrome CSS
   Style: Black background, liquid glass, premium, minimal
   Font: Inter Tight (loaded via @font-face placeholder)
   ========================================================= */

/* -------------------------
   FONT (placeholder)
   ------------------------- */
@font-face {
  font-family: "Inter Tight";
  font-weight: 100 900;
  font-style: normal;
}

/* -------------------------
   CSS VARIABLES
   ------------------------- */
:root {
  --color-bg: #000000;
  --color-surface: rgba(255, 255, 255, 0.06);
  --color-surface-strong: rgba(255, 255, 255, 0.1);
  --color-border: rgba(255, 255, 255, 0.12);

  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-text-muted: rgba(255, 255, 255, 0.5);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --blur-glass: 16px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------
   RESET / BASE
   ------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-primary);
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* -------------------------
   TYPOGRAPHY
   ------------------------- */
h1,
h2,
h3,
h4 {
  margin: 0 0 0.75em 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1.25em 0;
  color: var(--color-text-secondary);
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.75rem;
  color: var(--color-text-secondary);
}

.fa-solid, .fa-brands {
  padding: 8px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.15);

  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

img {
  max-width: 99%;
}

.mt-2 {
  margin-top: 1rem;
}



/* -------------------------
   LAYOUT UTILITIES
   ------------------------- */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 6rem) 1.5rem;
  z-index: 3;
}

.section {
  position: relative;
}

.section-title {
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.flex-row {
  display: flex;
  gap: 1rem;
}


/* =========================================================
   NAVBAR — PREMIUM LIQUID GLASS
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(var(--blur-glass));
  border-bottom: 1px solid var(--color-border);
  padding-left: 1rem;
  padding-right: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.nav__logo {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  display: flex;
}

.nav__logo img {
  height: 60px;
}


/* -------------------------
   Desktop Links
   ------------------------- */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav__links a:hover {
  color: var(--color-text-primary);
}

/* -------------------------
   Hamburger Button
   ------------------------- */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__bar {
  width: 26px;
  height: 2px;
  background: var(--color-text-primary);
  transition:
    transform 0.4s ease,
    opacity 0.3s ease;
}

/* -------------------------
   Mobile Menu
   ------------------------- */
.nav__mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(var(--blur-glass));
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.nav__mobile a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 1.1rem;
}

/* -------------------------
   Active States
   ------------------------- */
.header.nav-open .nav__mobile {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header.nav-open .nav__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header.nav-open .nav__bar:nth-child(2) {
  opacity: 0;
}

.header.nav-open .nav__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* -------------------------
   Responsive Rules
   ------------------------- */
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }
}

/* -------------------------
   HERO
   ------------------------- */
.section-hero {
  position: relative;
  height: 100vh;
  background: #333;
  overflow: hidden;
}

/* Dark overlay */
.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 1)); /* adjustable darkness */
  z-index: 1;
}




.hero-content {
  position: relative;
  z-index: 3; /* sits ABOVE both overlays */ }


.hero__headline {
  max-width: 800px;
  z-index: 3;
}

.hero__description {
  max-width: 720px;
  z-index: 3;
}

.hero__trust {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--blur-glass));
  z-index: 3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.15);
}

/* ==============================
   HERO PARALLAX DOTS
============================== */

.section-hero {
  position: relative;
  overflow: hidden;
}

/* Container */
.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Individual dots */
.hero-dots .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(0.4px);
  animation: float 10s ease-in-out infinite;
}


/* Large dots */
.dot--2,
.dot--5,
.dot--8,
.dot--11 {
  width: 14px;
  height: 14px;
  opacity: 0.25;
}

/* Small accent dots */
.dot--3,
.dot--7,
.dot--10 {
  width: 5px;
  height: 5px;
  opacity: 0.55;
}


/* Positions */
.dot--1 { top: 15%; left: 10%; animation-delay: 0s; }
.dot--2 { top: 30%; left: 80%; animation-delay: 2s; }
.dot--3 { top: 65%; left: 20%; animation-delay: 4s; }
.dot--4 { top: 75%; left: 70%; animation-delay: 1s; }
.dot--5 { top: 45%; left: 50%; animation-delay: 3s; }
.dot--6 { top: 20%; left: 60%; animation-delay: 5s; }
.dot--7  { top: 10%; left: 35%; animation-delay: 1.5s; }
.dot--8  { top: 55%; left: 85%; animation-delay: 2.5s; }
.dot--9  { top: 82%; left: 25%; animation-delay: 4.5s; }
.dot--10 { top: 38%; left: 15%; animation-delay: 0.5s; }
.dot--11 { top: 60%; left: 45%; animation-delay: 3.5s; }
.dot--12 { top: 28%; left: 75%; animation-delay: 5.5s; }


/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-50px) translateX(20px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

/* Ensure hero content stays above dots */
.hero-content {
  position: relative;
  z-index: 2;
}


/* -------------------------
   BUTTONS
   ------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  color: #000 !important;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.25);
}

/* -------------------------
   GLASS CARDS (GLOBAL)
   ------------------------- */
.deliverable,
.process__step,
.faq__item,
.bonuses__list li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(var(--blur-glass));
  transition:
    transform var(--transition-base),
    background var(--transition-base);
}

.deliverable:hover,
.process__step:hover {
  transform: translateY(-4px);
  background: var(--color-surface-strong);
}

/* -------------------------
   DELIVERABLES GRID
   ------------------------- */
.deliverables__grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* -------------------------
   PROCESS
   ------------------------- */
.process__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* -------------------------
   STRUCTURE / LISTS
   ------------------------- */
.structure__list li,
.icp__list li,
.promise__list li,
.bonuses__list li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}

.structure__list li::before,
.icp__list li::before,
.promise__list li::before,
.bonuses__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-text-primary);
}

/* -------------------------
   RESULTS / SOCIAL PROOF
   ------------------------- */
.results__grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* -------------------------
   ABOUT
   ------------------------- */
.about__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .about__content {
    grid-template-columns: 1fr;
  }
}

/* -------------------------
   IMAGE PLACEHOLDER
   ------------------------- */
.img-placeholder {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    );
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
}

/* -------------------------
   FAQ
   ------------------------- */
.faq__item {
  margin-bottom: 1rem;
}

/* -------------------------
   FOOTER
   ------------------------- */
.footer {
  border-top: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(var(--blur-glass));
  text-align: center;
}

.lf-credit {
  color: white;
}

/* -------------------------
   MOBILE NAV
   ------------------------- */
@media (max-width: 768px) {
  .nav__menu {
    margin-top: 1rem;
  }

  .nav__menu a {
    display: block;
    margin: 0.75rem 0;
  }
}


/* =========================================================
   ICON SYSTEM (PLACEHOLDER-READY)
   ========================================================= */
.icon {
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.9;
}

/* =========================================================
   HERO TRUST PILLS
   ========================================================= */
.hero__trust--pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: var(--color-surface);
  border-radius: 999px;
  transition: transform var(--transition-base), background var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.15);
}

.trust-pill:hover {
  transform: translateY(-2px);
  background: var(--color-surface-strong);
}

/* =========================================================
   ICP PAIN CARDS
   ========================================================= */
.icp__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.icp-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.15);
}

.icp-card:hover {
  transform: translateY(-6px);
}

.icp-card h3 {
  margin-top: 1rem;
}

/* =========================================================
   DELIVERABLE STACK
   ========================================================= */
.deliverable--stack {
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.15);
}

.deliverable__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deliverable__number {
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.15;
}

/* =========================================================
   WEEKLY CALENDAR
   ========================================================= */
.structure__calendar {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  position: relative;
}

.structure__calendar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  height: 3px;
  background: var(--color-border);
}

.day-card {
  min-width: 200px;
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.15);
}

.day-card::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 50%;
}


/* =========================================================
   PROCESS TIMELINE
   ========================================================= */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(var(--blur-glass));
  transition: transform var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.15);
}

.process-step:hover {
  transform: translateY(-6px);
}

.step-badge {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin-bottom: 1rem;
}

/* =========================================================
   BONUS VALUE STACK
   ========================================================= */
.bonus-stack {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bonus-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.15);
}

.bonus-card .value {
  display: block;
  font-weight: 600;
  opacity: 0.8;
}

.big {
  font-size: 2rem;
}

/* =========================================================
   CASE STUDY CARDS
   ========================================================= */
.case-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(var(--blur-glass));
  transition: transform var(--transition-base);
}

.case-card:hover {
  transform: translateY(-6px);
}

/* =========================================================
   FAQ ACCORDION — BASE STYLES
   ========================================================= */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  padding: 0 1.5rem;

  /* Liquid glass core */
  background: rgba(255, 255, 255, 0.12); /* subtle translucency */
  backdrop-filter: blur(var(--blur-glass)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-glass)) saturate(180%);

  /* Glass highlights */
  box-shadow:
    inset 0 0 0.5px rgba(255, 255, 255, 0.4),
    0 4px 20px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.18); /* stronger glass on hover */
  box-shadow:
    inset 0 0 1px rgba(255, 255, 255, 0.5),
    0 6px 24px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text-primary);
  padding: 1.6rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 1.4rem;
  transition: transform 0.35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0rem;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-question .icon {
  transform: rotate(180deg);
}


/* =========================================================
   FAQ — PREMIUM LIQUID GLASS SECTION WRAPPER
   ========================================================= */
.section-faq {
  background:
    radial-gradient(80% 40% at 50% 0%, rgba(255,255,255,0.06), transparent 60%);
}

.faq__header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.faq__subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.faq__list {
  max-width: 900px;
}



/* =========================================================
   CTA BUTTON ENHANCEMENT
   ========================================================= */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: translateX(-100%);
}

.btn-primary:hover::after {
  transform: translateX(100%);
  transition: transform 0.8s ease;
}

/* =========================================================
   SCROLL FADE / LIFT
   ========================================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   FOOTER — PREMIUM, CONVERSION-FOCUSED
   ========================================================= */
.footer {
  margin-top: 6rem;
  background:
    linear-gradient(
      to top,
      rgba(255,255,255,0.06),
      rgba(0,0,0,0.95)
    );
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(var(--blur-glass));
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer h3,
.footer h4 {
  margin-bottom: 1rem;
}

.footer p {
  max-width: 500px;
  text-align: center;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 0.6rem;
  color: var(--color-text-muted);
}

.footer ul a  {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer ul a:hover {
  color: var(--color-text-primary);
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}


