/* ══════════════════════════════════════════════════════════════
   DESIGNJOY — 101% Pixel-Perfect UI Replica
   ══════════════════════════════════════════════════════════════ */

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

:root {
  --bg-main:    #EEECE8;
  --bg-card:    #E7E4DF;
  --dark:       #111111;
  --text:       #1F1D1B;
  --muted:      #6E6A66;
  --border:     #DDD8CE;
  --white:      #FFFFFF;
  --orange:     #FF5E00;
  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --radius-xl:  42px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 20px 50px rgba(0,0,0,0.12);
  --shadow-neon: 0 24px 60px rgba(124,58,237,0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-main);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── TYPOGRAPHY UTILS ─────────────────────────────────────── */
.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1px;
}
.serif-italic-white {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: -1px;
}

.center { text-align: center; }

/* ─── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(238,236,232,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.nav-logo:hover .logo-icon { transform: rotate(10deg) scale(1.05); }

.logo-text {
  font-size: 21px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.6px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  transition: opacity 0.2s;
}
.nav-link:hover { opacity: 0.65; }

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.nav-call-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.nav-call-btn:hover svg path { stroke: #FFF; }

.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: #FFF;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14.5px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark-pill:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ─── HERO SECTION ─────────────────────────────────────────── */
.hero-section {
  padding: 56px 0 72px;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-headline {
  font-size: clamp(52px, 6.2vw, 84px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -3px;
  color: var(--dark);
}
.hero-headline .serif-italic {
  font-size: 1.05em;
  font-weight: 400;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

/* Neon Hero Card */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-neon-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 480px;
  background: linear-gradient(145deg, #7C3AED 0%, #EC4899 50%, #3B82F6 100%);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-neon);
  overflow: hidden;
  color: var(--white);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.hero-neon-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.neon-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.neon-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.neon-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 10px #22C55E;
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}

.neon-stickers-row {
  display: flex;
  gap: 6px;
}
.smiley-sticker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: rotate(-8deg);
  transition: transform 0.25s;
}
.smiley-sticker:hover { transform: rotate(0deg) scale(1.15); }
.s-yellow { background: #F5C000; color: #111; }
.s-pink   { background: #EC4899; color: #FFF; transform: rotate(5deg); }
.s-blue   { background: #3B82F6; color: #FFF; transform: rotate(-12deg); }

.neon-card-body {
  position: relative;
  z-index: 2;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 0;
}

.neon-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #FFF;
}

.neon-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  border-radius: 50px;
  padding: 13px 26px;
  width: fit-content;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.2s;
}
.btn-white-pill:hover {
  background: #F8FAFC;
  transform: scale(1.04);
}

.neon-card-footer {
  position: relative;
  z-index: 2;
}
.founder-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 50px;
  width: fit-content;
}
.founder-avatar-wrap {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F5C000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: 800;
  font-size: 15px;
}
.status-dot-green {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22C55E;
  border: 2px solid #111;
}
.founder-info {
  display: flex;
  flex-direction: column;
}
.founder-name {
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  line-height: 1.2;
}
.founder-status {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

/* ─── SECTION COMMON ───────────────────────────────────────── */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 850;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--dark);
}
.section-title .serif-italic {
  font-size: 1.08em;
}

.overtitle {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 12px;
}

/* ─── THE WAY DESIGN SHOULD'VE BEEN DONE ───────────────────── */
.shouldve-section {
  padding: 40px 0 80px;
}

.shouldve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.grad-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.grad-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-subscribe {
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
}
.card-request {
  background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
}
.card-receive {
  background: linear-gradient(135deg, #EF4444 0%, #F97316 100%);
}

.grad-card-preview {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Mock UI for Subscribe Card */
.preview-mock-ui {
  width: 100%;
  max-width: 250px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.ui-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
}
.ui-badge-red {
  background: #DC2626;
  color: #FFF;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
}
.ui-price {
  font-size: 28px;
  font-weight: 900;
  color: #FFF;
}
.ui-price span { font-size: 14px; font-weight: 500; opacity: 0.7; }
.ui-lines { display: flex; flex-direction: column; gap: 6px; }
.ui-line { height: 8px; background: rgba(255,255,255,0.2); border-radius: 4px; width: 100%; }
.ui-line.short { width: 65%; }

/* Tag cloud for Request Card */
.preview-tags { position: relative; }
.tag-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 260px;
}
.cloud-tag {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.center-smile-badge {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  color: #F5C000;
  font-size: 26px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* Floating mini cards for Receive Card */
.preview-cards {
  position: relative;
  width: 100%;
  height: 180px;
}
.floating-mini-card {
  position: absolute;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fmc-1 {
  top: 20px; left: 20px;
  width: 160px;
  transform: rotate(-6deg);
}
.fmc-2 {
  bottom: 20px; right: 20px;
  width: 180px;
  transform: rotate(4deg);
}
.fmc-dot { width: 24px; height: 24px; border-radius: 50%; background: #F59E0B; }
.fmc-line { height: 10px; width: 80px; background: #E5E7EB; border-radius: 4px; }
.fmc-avatar { width: 32px; height: 32px; border-radius: 50%; background: #3B82F6; }
.fmc-text { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.fmc-bar { height: 8px; width: 100%; background: #E5E7EB; border-radius: 4px; }
.fmc-bar.short { width: 60%; }

.grad-card-copy h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.grad-card-copy p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.45;
}

/* Logos strip */
.logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 64px;
  opacity: 0.75;
}
.logo-item {
  transition: opacity 0.2s, transform 0.2s;
}
.logo-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ─── FOUNDER QUOTE BOX ────────────────────────────────────── */
.quote-box-section {
  padding: 32px 0 80px;
}
.quote-box-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.founder-statement {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 650;
  line-height: 1.5;
  color: var(--dark);
  letter-spacing: -0.4px;
}

/* ─── IT'S "YOU'LL NEVER GO BACK" BETTER (PERKS) ───────────── */
.perks-section {
  padding: 40px 0 80px;
}
.perks-header .section-sub {
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 16px;
  color: var(--muted);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.perk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.perk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.perk-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.pb-yellow { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }
.pb-blue   { background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%); }
.pb-orange { background: linear-gradient(135deg, #F97316 0%, #EA580C 100%); }
.pb-pink   { background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%); }
.pb-red    { background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%); }

.perk-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.3px;
}
.perk-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

.perks-nav-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.nav-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.nav-arrow-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ─── EDITORIAL QUOTES ─────────────────────────────────────── */
.editorial-quotes-section {
  padding: 60px 0 80px;
}
.editorial-quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.editorial-quote-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 0 20px;
}
.serif-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.25;
  color: var(--dark);
}

.quote-brand-badge, .quote-author-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-photo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #3B82F6;
  color: #FFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.author-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
}
.author-company {
  font-size: 12px;
  color: var(--muted);
}

/* ─── WORK SHOWCASE 2-COLUMN ───────────────────────────────── */
.showcase-section {
  padding: 40px 0 80px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.showcase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.showcase-preview {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.showcase-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}

.preview-pills-area {
  padding: 20px 0;
}
.skills-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.skill-pill {
  background: var(--bg-main);
  color: var(--dark);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.skill-pill:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.showcase-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.showcase-tag {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}
.showcase-title {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
}
.btn-dark-pill-sm {
  background: var(--dark);
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: 4px;
  transition: all 0.2s;
}
.btn-dark-pill-sm:hover { background: #333; transform: translateY(-1px); }

/* ─── PRICING SECTION ──────────────────────────────────────── */
.pricing-section {
  padding: 60px 0 80px;
}
.pricing-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
  margin-top: 56px;
}

.pricing-left-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.tilted-smiley-badge {
  background: linear-gradient(135deg, #F97316 0%, #EC4899 50%, #3B82F6 100%);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 10px;
  transform: rotate(-10deg);
  box-shadow: 0 16px 40px rgba(249,115,22,0.25);
  transition: transform 0.3s;
}
.tilted-smiley-badge:hover { transform: rotate(0deg) scale(1.05); }
.ts-smile {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.ts-1 { background: #F5C000; color: #111; }
.ts-2 { background: #EC4899; color: #FFF; }
.ts-3 { background: #3B82F6; color: #FFF; }
.ts-4 { background: #10B981; color: #FFF; }
.ts-5 { background: #8B5CF6; color: #FFF; }
.ts-6 { background: #EF4444; color: #FFF; }

.join-dj-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
}
.join-star { color: #FFB800; }

/* Dark Membership Card */
.pricing-dark-card {
  background: var(--dark);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 20px;
}
.plan-name { font-size: 18px; font-weight: 800; color: #FFF; }
.plan-promo {
  background: #DC2626;
  color: #FFF;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-big { font-size: 56px; font-weight: 900; letter-spacing: -2px; }
.price-period { font-size: 18px; color: rgba(255,255,255,0.7); }
.price-was {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-left: 12px;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 28px;
}
.features-col { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.features-col li {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.features-col li::before {
  content: '✓';
  color: #F5C000;
  font-weight: 800;
}

.pricing-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-orange-pill {
  background: var(--orange);
  color: #FFF;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 50px;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(255,94,0,0.35);
}
.btn-orange-pill:hover { background: #EA580C; transform: translateY(-2px); }
.footer-smiley-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F5C000;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sub-perks row */
.pricing-sub-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.sub-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.sub-perk-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sub-perk-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.sub-perk-text p { font-size: 13.5px; color: var(--muted); }

.pricing-logos { margin-top: 56px; }

/* ─── FREQUENTLY ASKED QUESTIONS + BOOKING BANNER ──────────── */
.faq-section {
  padding: 60px 0 96px;
}
.faq-inner-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 56px;
  align-items: flex-start;
}
.faq-headline {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 36px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-toggle-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--orange);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer.open {
  max-height: 240px;
  padding-bottom: 22px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* 15-min intro call Banner */
.intro-call-card {
  background: linear-gradient(145deg, #F97316 0%, #EC4899 55%, #8B5CF6 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  color: #FFF;
  box-shadow: var(--shadow-neon);
  position: sticky;
  top: 96px;
}
.intro-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F5C000;
  color: #111;
  font-size: 32px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.intro-card-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}
.btn-white-pill-full {
  display: block;
  width: 100%;
  background: #FFF;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 50px;
  transition: all 0.2s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-white-pill-full:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
}
.intro-card-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
}
.intro-card-sub a { text-decoration: underline; font-weight: 700; }

/* ─── DARK FOOTER & CAL.COM BOOKING PREVIEW ────────────────── */
.booking-footer-section {
  background: #0D0D0D;
  color: #FFF;
  padding: 80px 0 60px;
}
.booking-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.booking-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text-white { font-size: 22px; font-weight: 800; color: #FFF; }
.booking-headline {
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -2.5px;
}
.booking-sub { font-size: 16px; color: #999; }
.footer-smiley-cluster {
  margin-top: 12px;
  max-width: 380px;
}
.smiley-cluster-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}

.footer-legal-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: #666;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.footer-legal-bar a { transition: color 0.2s; }
.footer-legal-bar a:hover { color: #FFF; }

/* Cal.com Widget Replica */
.cal-widget-card {
  background: #18181B;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
}

.cal-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 16px;
}
.cal-month-title { font-size: 17px; font-weight: 800; }
.cal-nav-btns { display: flex; gap: 8px; }
.cal-btn-prev, .cal-btn-next {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #FFF;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.cal-btn-prev:hover, .cal-btn-next:hover { background: rgba(255,255,255,0.18); }

.cal-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cal-days-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 11px;
  font-weight: 700;
  color: #71717A;
  text-align: center;
}
.cal-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-day-btn {
  aspect-ratio: 1;
  border-radius: 10px;
  background: none;
  border: 1px solid transparent;
  color: #FFF;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.cal-day-btn:hover { background: rgba(255,255,255,0.08); }
.cal-day-btn.selected {
  background: #FFF;
  color: #111;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255,255,255,0.25);
}
.cal-day-btn.empty { pointer-events: none; }

.cal-times-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 20px;
}
.cal-times-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cal-times-header span { font-size: 13px; font-weight: 700; }
.time-zone-label { font-size: 11px; color: #71717A; }

.cal-time-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}
.time-slot-btn {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #FFF;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.time-slot-btn:hover { background: rgba(255,255,255,0.14); }
.time-slot-btn.selected {
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 800;
}

/* ─── RESPONSIVE DESIGN ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container, .shouldve-grid, .pricing-main-grid, .faq-inner-grid, .booking-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { justify-content: center; }
  .perks-grid { grid-template-columns: repeat(3, 1fr); }
  .editorial-quotes-grid { grid-template-columns: 1fr; gap: 48px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .intro-call-card { position: relative; top: 0; }
}

@media (max-width: 640px) {
  .nav-container { padding: 0 20px; }
  .nav-link { display: none; }
  .hero-headline { font-size: 44px; }
  .perks-grid { grid-template-columns: 1fr; }
  .pricing-sub-perks { grid-template-columns: 1fr; }
  .cal-widget-card { grid-template-columns: 1fr; }
  .cal-times-section { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 20px; }
}
