/* Custom variables for Deep Velvet Indigo Brand Creator studio archetype */
:root {
  --primary-color: #6366f1; /* Electric Indigo */
  --primary-glow: rgba(99, 102, 241, 0.4);
  --bg-gradient: linear-gradient(135deg, #0c0e1a 0%, #171b30 50%, #0c0e1a 100%);
  --panel-bg: rgba(18, 21, 38, 0.75);
  --sidebar-bg: rgba(22, 26, 46, 0.85);
  --panel-border: rgba(99, 102, 241, 0.18);
  --text-primary: #f8fafc; /* Crisp Light Text (16.2:1 contrast) */
  --text-secondary: #cbd5e1; /* Secondary Slate (9.5:1 contrast) */
  --text-muted: #94a3b8; /* Muted Slate (5.8:1 contrast - WCAG AA) */
  --accent-color: #818cf8; /* Studio Violet Accent */
  --highlight-color: #ffffff; /* Pure White */
  --link-color: #818cf8; /* Violet Link */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: var(--bg-gradient);
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(3, 7, 18, 0.6);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Base headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--highlight-color);
}

/* Structure */
#bg,
.creator-shell {
  width: 100%;
  min-height: 100vh;
  padding: 0 14px 28px 14px;
}

#shadow,
.creator-container {
  max-width: 1300px;
  margin: 0 auto;
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateZ(0);
  will-change: transform;
  border: 1px solid var(--panel-border);
  border-top: none;
  border-radius: 0 0 24px 24px;
  padding: 0 28px 28px 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

/* Header */
header {
  margin-bottom: 21px;
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 14px;
}

#blogname {
  text-decoration: none;
  display: block;
}

#blogname span.bold {
  font-size: 38px;
  font-weight: 800;
  color: var(--highlight-color);
  background: linear-gradient(to right, var(--highlight-color) 20%, var(--accent-color) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

header h1 {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 4px;
  font-family: var(--font-body);
}

/* Navigation */
nav {
  margin-bottom: 28px;
}

#nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

#nav li a {
  display: inline-block;
  padding: 7px 14px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#nav li a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

/* Layout container */
#container {
  display: flex;
  gap: 28px;
}

#left-col {
  flex: 1;
  min-width: 0; /* Avoid layout break */
}

/* Main Content Card */
.post {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.entry_header h2 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--accent-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 11px;
  line-height: 1.2;
}

.entry_header h2 a,
.entry_header h2 a:link,
.entry_header h2 a:visited {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.entry_header h2 a:hover {
  color: var(--highlight-color);
}


.entry_content {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.8;
}

/* Styles for inside post content */
.entry_content p {
  margin-bottom: 14px;
}

.entry_content a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--link-color);
  transition: all 0.2s ease;
}

.entry_content a:visited {
  color: var(--link-color);
  border-bottom-color: var(--link-color);
}

.entry_content a:hover {
  color: var(--accent-color);
  border-bottom-style: solid;
  border-bottom-color: var(--accent-color);
}

.entry_content ul, .entry_content ol {
  margin: 11px 0 18px 18px;
}

.entry_content li {
  margin-bottom: 7px;
}

/* Flex Container formatting inside resume */
.flexContainer {
  display: flex;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.4);
  padding: 8px 14px;
  border-radius: 8px;
  margin: 21px 0 7px 0;
  border: 1px solid var(--panel-border);
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--highlight-color);
  font-size: 15px;
}

.flexContainer div:first-child {
  color: var(--accent-color);
}

.entry_content p.has-text-align-center {
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 11px;
  font-size: 17px;
}

.entry_content p.has-medium-font-size {
  font-size: 22px;
  font-weight: 800;
  color: var(--highlight-color);
  margin-top: 28px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--panel-border);
  padding-bottom: 6px;
}

/* Sidebar */
#sidebar {
  width: 380px;
  flex-shrink: 0;
}

#sidebar ul {
  list-style: none;
}

.widget {
  background: var(--sidebar-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 21px;
  margin-bottom: 21px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.widget h2 {
  font-size: 18px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 7px;
}

.widget h2 a {
  color: inherit;
  text-decoration: none;
}

.widget ul li {
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  padding-bottom: 7px;
}

.widget ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.widget ul li a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  display: block;
}

.widget ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
  text-decoration: none;
}

/* BookMe widget modifications for Icy Slate theme */
.book-me-widget {
  background: var(--sidebar-bg) !important;
  border: 1px solid var(--panel-border) !important;
}

.book-me-widget h3 {
  color: var(--accent-color) !important;
  border-bottom: 1px solid var(--panel-border) !important;
}

.book-me-widget label {
  color: var(--text-primary) !important;
}

.book-me-widget input, .book-me-widget select, .book-me-widget textarea {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(3, 7, 18, 0.5) !important;
}

.book-me-widget button {
  background: var(--primary-color) !important;
}

/* Post and content image constraints */
.entry_content img,
.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  display: block;
}

/* Responsiveness */
@media (max-width: 1024px) {
  #container {
    flex-direction: column;
    gap: 21px;
  }
  
  #sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #shadow,
  .creator-container {
    padding: 0 14px 14px 14px;
    border-radius: 0 0 16px 16px;
  }
  
  #blogname span.bold {
    font-size: 28px;
  }
  
  .post {
    padding: 18px;
  }
  
  .flexContainer {
    flex-direction: column;
    gap: 4px;
    padding: 7px 11px;
  }
}

/* ==========================================================================
   Brand Creator Modular Component Classes (Design Tokens Architecture)
   ========================================================================== */

/* Header & Navbar */
.creator-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 16px;
}
.creator-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.creator-logo-link {
  text-decoration: none;
  display: block;
}
.creator-logo-title {
  color: var(--highlight-color);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.creator-logo-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 4px 0 0 0;
  font-weight: 400;
}
.creator-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  flex-wrap: wrap;
}
.creator-nav-link {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.creator-nav-link:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
}
.creator-nav-link-active {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-color: var(--primary-color);
  box-shadow: 0 0 12px var(--primary-glow);
}
.creator-nav-cta {
  background: var(--primary-color);
  color: #ffffff !important;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.creator-nav-cta:hover {
  background: #4f46e5;
}

/* Hero Section */
.creator-hero-card {
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(18, 21, 38, 0.95) 0%, rgba(30, 36, 62, 0.85) 100%);
  border: 1px solid var(--panel-border);
}
.creator-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.creator-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--highlight-color);
  line-height: 1.2;
  margin-bottom: 12px;
  border-left: none;
  padding-left: 0;
}
.creator-hero-desc {
  font-size: 1.1rem;
  color: var(--text-primary);
  max-width: 750px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.creator-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.creator-hero-btn-primary {
  background: var(--primary-color);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px var(--primary-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.creator-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.6);
}
.creator-hero-btn-secondary {
  background: var(--panel-bg);
  color: var(--text-primary);
  border: 1px solid var(--panel-border);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.creator-hero-btn-secondary:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--accent-color);
}

/* Sidebar Widgets */
.creator-sidebar-desc {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.5;
}
.creator-token-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.creator-token-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.creator-token-item:last-child {
  border-bottom: none;
}
.creator-token-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.creator-token-tag {
  font-size: 0.75rem;
  color: var(--accent-color);
  background: rgba(99, 102, 241, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

/* HomePage Strategy Grid */
.creator-strategy-wrap {
  margin-top: 2.5rem;
}
.creator-strategy-title {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}
.creator-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.creator-strategy-card {
  padding: 1.25rem;
}
.creator-strategy-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  border-bottom: none;
  padding-bottom: 0;
}
.creator-strategy-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.creator-strategy-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.creator-strategy-card-link:hover {
  text-decoration: underline;
}
.creator-icon-lg {
  width: 2rem;
  height: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}
.creator-icon-md {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}
.creator-icon-sm {
  width: 1rem;
  height: 1rem;
  color: var(--accent-color);
}
.creator-icon-contact {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}
.creator-bookme-intro {
  margin-bottom: 30px;
  color: var(--text-primary);
}

/* Article Detail Page */
.creator-article-panel {
  padding: 2rem;
  text-align: left;
}
.creator-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.creator-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.creator-breadcrumb a:hover {
  color: var(--accent-color);
}
.creator-breadcrumb-current {
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 380px;
}
.creator-article-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}
.creator-article-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.creator-article-title-lg {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 0.75rem 0;
  color: #ffffff;
}
.creator-article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12.5px;
  color: #94a3b8;
}
.creator-callout-box {
  background: rgba(99, 102, 241, 0.06);
  border-left: 4px solid #6366f1;
  border-top: 1px solid rgba(99, 102, 241, 0.15);
  border-right: 1px solid rgba(99, 102, 241, 0.15);
  border-bottom: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-bottom: 2rem;
}
.creator-callout-title {
  color: #818cf8;
  margin: 0 0 6px 0;
  font-size: 13px;
  font-weight: 700;
}
.creator-callout-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #f1f5f9;
}
.creator-board-bio {
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.creator-board-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.creator-board-title {
  margin: 0 0 4px 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.creator-board-desc {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.5;
}
.creator-cta-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(129, 140, 248, 0.08));
  border: 1px solid rgba(129, 140, 248, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.creator-cta-heading {
  margin: 0 0 4px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}
.creator-cta-sub {
  margin: 0;
  color: #94a3b8;
  font-size: 12.5px;
}
.creator-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #6366f1;
  color: #ffffff !important;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.creator-cta-btn:hover {
  background: #4f46e5;
}
.creator-back-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #818cf8;
  font-size: 12.5px;
  text-decoration: none;
  font-weight: 600;
}
.creator-back-link:hover {
  text-decoration: underline;
}

/* Articles Directory */
.creator-archive-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.creator-archive-header {
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.creator-archive-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.creator-archive-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.25;
}
.creator-archive-desc {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.creator-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.creator-card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  box-sizing: border-box;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.creator-card-box:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.3);
}
.creator-card-cat {
  font-size: 11px;
  color: #818cf8;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.creator-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.35;
}
.creator-card-title a {
  color: inherit;
  text-decoration: none;
}
.creator-card-title a:hover {
  color: #818cf8;
}
.creator-card-excerpt {
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}
.creator-card-more-box {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.creator-card-more-link {
  color: #818cf8;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}
.creator-card-more-link:hover {
  text-decoration: underline;
}
.creator-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.creator-page-btn {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.creator-page-btn:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
}
.creator-page-btn-active {
  background: #6366f1 !important;
  color: #ffffff !important;
  border-color: #6366f1 !important;
}

/* Services Page */
.creator-services-lead {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.creator-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.creator-service-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.creator-service-title {
  font-size: 1.25rem;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}
.creator-service-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.creator-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}
.creator-feature-item {
  font-size: 0.8rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.creator-service-btn {
  background: var(--primary-color);
  color: #ffffff !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: background 0.2s ease;
}
.creator-service-btn:hover {
  background: #4f46e5;
}

/* Contact Page */
.creator-contact-lead {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.creator-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.creator-contact-card {
  padding: 1.25rem;
}
.creator-contact-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.creator-contact-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--highlight-color);
}
.creator-contact-tel {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--highlight-color);
  text-decoration: none;
}
.creator-contact-form-widget {
  padding: 1.75rem;
  border: 1px solid var(--primary-color);
}
.creator-contact-form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--highlight-color);
  margin-bottom: 1rem;
}

/* Footer */
.creator-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  text-align: left;
  background: rgba(11, 14, 28, 0.95);
}
.creator-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.creator-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.creator-footer-brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #ffffff;
}
.creator-footer-brand-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.creator-footer-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}
.creator-footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #818cf8;
}
.creator-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: #cbd5e1;
}
.creator-footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.creator-footer-link:hover {
  color: #818cf8;
}
.creator-footer-link-highlight {
  color: #818cf8;
  text-decoration: none;
  font-weight: 600;
}
.creator-footer-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.creator-footer-phone {
  font-size: 13px;
  color: #818cf8;
  font-weight: 600;
  margin: 4px 0;
}
.creator-footer-email {
  font-size: 11.5px;
  color: #94a3b8;
}
.creator-footer-disclaimer-box {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 0.75rem;
  color: #cbd5e1;
  line-height: 1.6;
}
.creator-footer-disclaimer-p {
  margin: 0 0 0.5rem 0;
}
.creator-footer-disclaimer-p:last-child {
  margin-bottom: 0;
}
.creator-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #94a3b8;
}
.creator-footer-bottom-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.creator-footer-bottom-link {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.creator-footer-bottom-link:hover {
  color: #ffffff;
}

