/* ═══════════════════════════════════════════════
   NECTAR UPGRADES — New Sections CSS
   Companion to styles.css — zero overrides
═══════════════════════════════════════════════ */

/* ── WHAT YOU ACTUALLY RECEIVE ─────────────────── */
#deliverables {
  background: var(--bg2);
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.deliverable-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(17,17,17,0.07);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.deliverable-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,181,71,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.deliverable-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,181,71,0.3);
}
.deliverable-card:hover::before { opacity: 1; }

.del-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,181,71,0.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.del-icon {
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: block;
}
.deliverable-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}
.deliverable-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.deliverable-cta-card {
  background: linear-gradient(135deg, var(--black) 0%, #1a1208 100%);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.deliverable-cta-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,181,71,0.2) 0%, transparent 70%);
}
.del-cta-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.deliverable-cta-card .btn-primary {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  white-space: normal;
  line-height: 1.4;
}

/* ── WHY BUSINESSES TRUST NECTAR ────────────────── */
#trust {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#trust::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,181,71,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.trust-inner {
  position: relative;
  z-index: 1;
}
.trust-header {
  text-align: center;
  margin-bottom: 60px;
}
.trust-header h2,
.trust-header .lead {
  color: var(--white);
}
.trust-header .lead {
  color: rgba(255,255,255,0.6);
}
.trust-header .section-label {
  justify-content: center;
  color: var(--gold-light);
  border-color: rgba(255,181,71,0.25);
  background: rgba(255,181,71,0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.trust-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,181,71,0.2);
  transform: translateY(-4px);
}
.trust-card:hover::after { transform: scaleX(1); }

.trust-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.trust-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.trust-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── SOLUTIONS DROPDOWN NAV ─────────────────────── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.nav-dropdown-trigger:hover { color: var(--gold-dark); }
.nav-caret {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(17,17,17,0.14);
  border: 1px solid rgba(17,17,17,0.07);
  overflow: hidden;
  z-index: 200;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(17,17,17,0.07);
  border-top: 1px solid rgba(17,17,17,0.07);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: var(--text) !important;
  font-size: 0.83rem !important;
  font-weight: 400 !important;
  text-decoration: none;
  transition: background 0.18s ease;
  border-bottom: 1px solid rgba(17,17,17,0.05);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
  background: rgba(255,181,71,0.06);
  color: var(--gold-dark) !important;
}
.nav-dropdown-menu a iconify-icon {
  font-size: 1.1rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.nav-dropdown-menu a span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown-menu a span strong {
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--black);
}
.nav-dropdown-menu a:hover span strong { color: var(--gold-dark); }
.nav-dropdown-menu a span > *:not(strong) {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Mobile nav additions */
.mobile-nav-divider {
  width: 60px;
  height: 1px;
  background: rgba(17,17,17,0.1);
  margin: 4px 0;
}
.mobile-nav-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: -12px;
}
.mobile-nav a[href*=".html"] {
  font-size: 1.1rem !important;
  color: var(--text-muted) !important;
}

/* ── LANDING PAGE NAV LINKS ─────────────────────── */
.lp-nav {
  gap: 24px;
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.lp-nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.lp-nav-links a:hover { color: var(--gold-dark); }
.lp-nav-links a.lp-nav-active {
  color: var(--gold-dark);
  font-weight: 600;
}

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

/* ── LANDING PAGE BASE (shared across all 4 pages) ── */
.lp-body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
}
.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background: rgba(255,248,240,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17,17,17,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-hero {
  padding: 100px 5% 80px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(255,181,71,0.1);
  border: 1px solid rgba(255,181,71,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.lp-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.lp-h1 em {
  font-style: italic;
  color: var(--gold-dark);
}
.lp-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 40px;
}
.lp-agitation {
  background: var(--bg2);
  padding: 80px 5%;
}
.lp-agitation-inner {
  max-width: 860px;
  margin: 0 auto;
}
.lp-agitation h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.lp-agitation p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.lp-pain-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-pain-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(17,17,17,0.07);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.lp-pain-list li::before {
  content: '→';
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-solution {
  padding: 80px 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-solution h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.lp-solution p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 720px;
}
.lp-deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.lp-del-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  border: 1px solid rgba(17,17,17,0.07);
  box-shadow: var(--shadow);
}
.lp-del-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-del-item h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.lp-del-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.lp-cta-section {
  background: linear-gradient(135deg, var(--black) 0%, #1a1208 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,181,71,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.lp-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.lp-cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
.lp-footer {
  background: var(--black);
  padding: 32px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.lp-footer a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: var(--transition);
}
.lp-footer a:hover { color: var(--gold); }

/* ── RESPONSIVE: NEW SECTIONS ────────────────────── */
@media(max-width:900px) {
  .deliverables-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .deliverable-cta-card .btn-primary { align-self: stretch; text-align: center; justify-content: center; }
}
@media(max-width:600px) {
  .deliverables-grid { margin-top: 40px; }
  .trust-grid { margin-top: 0; }
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════ */
#testimonials {
  padding: 100px 0;
  background: var(--bg);
  overflow: hidden;
}
#testimonials > div:first-child {
  padding: 0 5%;
  margin-bottom: 60px;
}

/* ── Track wrapper — masks overflow ── */
.testi-track-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  margin-bottom: 20px;
}
.testi-track-wrap:last-of-type { margin-bottom: 0; }

/* ── Scrolling track ── */
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0;
}
.testi-track--fwd {
  animation: scrollFwd 55s linear infinite;
}
.testi-track--rev {
  animation: scrollRev 50s linear infinite;
}
.testi-track-wrap:hover .testi-track {
  animation-play-state: paused;
}
@keyframes scrollFwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── Individual card ── */
.testi-card {
  flex-shrink: 0;
  width: 360px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(17,17,17,0.07);
  box-shadow: 0 4px 24px rgba(17,17,17,0.06);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  cursor: default;
}
.testi-card:hover {
  box-shadow: 0 12px 40px rgba(17,17,17,0.12);
  transform: translateY(-4px);
}

/* Stars */
.testi-stars {
  font-size: 0.9rem;
  color: var(--gold-dark);
  letter-spacing: 2px;
  line-height: 1;
}

/* Quote */
.testi-card blockquote {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  position: relative;
}
.testi-card blockquote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: rgba(255,181,71,0.2);
  line-height: 0;
  position: absolute;
  top: 20px;
  left: -6px;
  pointer-events: none;
}

/* Author */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(17,17,17,0.06);
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-meta strong {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.testi-meta span {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Summary bar ── */
.testi-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 56px 5% 0;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(17,17,17,0.07);
  box-shadow: 0 4px 24px rgba(17,17,17,0.06);
  padding: 28px 40px;
  flex-wrap: wrap;
}
.testi-summary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
  text-align: center;
}
.testi-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}
.testi-summary-stat span:not(.testi-num) {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.testi-summary-divider {
  width: 1px;
  height: 48px;
  background: rgba(17,17,17,0.08);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media(max-width: 700px) {
  .testi-card { width: 290px; padding: 22px 20px 18px; }
  .testi-summary { gap: 8px; padding: 24px 20px; }
  .testi-summary-stat { padding: 12px 20px; }
  .testi-summary-divider { display: none; }
  .testi-num { font-size: 1.6rem; }
}
