:root {
  --primary: #4a24e8;
  --primary-light: #ede9fc;
  --primary-mid: #7b5df0;
  --secondary: #ff8000;
  --secondary-light: #fff3e6;
  --dark: #464646;
  --muted: #6c757d;
  --bg-soft: #f8f7ff;
  --border: #e8e4fb;
}


/* LOGO DOWNLOAD CARDS */
.logo-download-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.logo-download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 36, 232, .1);
  border-color: var(--primary);
}

.logo-preview {
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.logo-preview.dark-bg {
  background: linear-gradient(145deg, #0d0826, #1a0e5e);
}

.logo-preview.light-bg {
  background: var(--bg-soft);
}

.logo-preview.white-bg {
  background: #fff;
  border: 1px solid var(--border);
}

.logo-preview.primary-bg {
  background: linear-gradient(320deg, #230b83, #3d20b3);
}

.logo-preview img {
  max-height: 48px;
  max-width: 200px;
  object-fit: contain;
}

.logo-card-body {
  padding: 1.25rem .5rem;
}

.logo-card-body h5 {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .25rem;
}

.logo-card-body p {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .9rem;
  line-height: 1.5;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: .45rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  transition: background .2s, transform .15s;
  font-family: 'Inter', sans-serif;
}

.btn-download:hover {
  background: #3a17cc;
  color: #fff;
  transform: translateY(-1px);
}

.btn-download-sec {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-download-sec:hover {
  background: var(--primary);
  color: #fff;
}

/* COLOR PALETTE */
.color-swatch {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: transform .2s;
}

.color-swatch:hover {
  transform: translateY(-3px);
}

.swatch-block {
  height: 100px;
  width: 100%;
}

.swatch-body {
  padding: 1rem;
  background: #fff;
}

.swatch-body h6 {
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: .2rem;
}

.swatch-body .hex {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 400;
  margin-bottom: .25rem;
}

.swatch-body small {
  font-size: .72rem;
  color: var(--muted);
  display: block;
}

.copy-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .2rem .6rem;
  font-size: .7rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
  font-family: 'Inter', sans-serif;
  margin-top: .4rem;
}

.copy-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* TYPOGRAPHY */
.type-demo {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
}

.type-demo .font-name {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.type-demo .use-case {
  font-size: .72rem;
  color: var(--muted);
  background: var(--bg-soft);
  padding: .25rem .65rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: .75rem;
}

/* PRESS CONTACT */
.press-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}

.press-card:hover {
  box-shadow: 0 8px 28px rgba(74, 36, 232, .1);
  transform: translateY(-2px);
}

.press-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.press-card h5 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .35rem;
}

.press-card p {
  font-size: .84rem;
  color: #5a5a5a;
  margin-bottom: .85rem;
  line-height: 1.6;
}

.press-card a {
  color: var(--primary);
  font-weight: 600;
  font-size: .85rem;
}

/* USAGE GUIDELINES */
.guide-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: .75rem;
  border: 1px solid var(--border);
  background: #fff;
}

.guide-item.do {
  border-left: 4px solid #28a745;
}

.guide-item.dont {
  border-left: 4px solid #dc3545;
}

.guide-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

.guide-item h6 {
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: .25rem;
}

.guide-item p {
  font-size: .82rem;
  color: #5a5a5a;
  margin: 0;
  line-height: 1.6;
}

/* SOCIAL CARD */
.social-media-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.social-media-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74, 36, 232, .1);
}

.social-media-card .social-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto .9rem;
}

.social-media-card h6 {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .25rem;
}

.social-media-card p {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .75rem;
}

.social-media-card a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
}