/* ============================================================
   Said Dulevic — Premium Light Theme
   ============================================================ */

:root {
  --bg:          #faf8f5;
  --bg-subtle:   #f3f0eb;
  --bg-white:    #ffffff;
  --surface:     #ffffff;
  --surface-2:   #f5f2ed;
  --border:      #e8e4de;
  --border-2:    #d4cfc7;
  --text:        #1a1a1a;
  --text-muted:  #6b6560;
  --text-light:  #8a8580;
  --accent:      #1a1a1a;
  --accent-2:    #333333;
  --accent-warm: #c4956a;
  --accent-warm-2: #d4a57a;
  --green:       #2d8a56;
  --red:         #c44848;
  --yellow:      #c49a3c;
  --gradient:    linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  --gradient-warm: linear-gradient(135deg, #c4956a 0%, #d4a57a 50%, #e4b58a 100%);
  --gradient-hero: linear-gradient(135deg, #faf8f5 0%, #f0ece5 50%, #e8e0d5 100%);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow:      0 4px 24px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.08);
  --shadow-xl:   0 24px 64px rgba(0,0,0,.1);
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .15s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-warm); }
img { max-width: 100%; height: auto; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 6rem 0; }
.bg-subtle { background: var(--bg-subtle); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,248,245,.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,.04);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; }
.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
}
.logo-text .accent { color: var(--accent-warm); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-link {
  padding: .5rem 1rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover {
  color: var(--text);
  background: var(--surface-2);
}
.nav-link.active {
  color: var(--text);
  font-weight: 600;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.4rem;
  background: var(--text);
  color: #fff;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  margin-left: .5rem;
}
.nav-cta:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
  background: var(--gradient-hero);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(196,149,106,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(196,149,106,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  animation: fadeInDown .6s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(.85); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp .7s ease .1s both;
}
.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1rem;
}
.hero-title .title-accent {
  font-style: italic;
  font-weight: 400;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--accent-warm);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Hero search */
.hero-search {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  animation: fadeInUp .7s ease .3s both;
}
.hero-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .25rem .3rem .25rem 1.25rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hero-search-input-wrap:focus-within {
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 4px rgba(196,149,106,.12), var(--shadow-lg);
}
.hero-search-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}
.hero-search-input-wrap:focus-within .hero-search-icon {
  color: var(--accent-warm);
}
.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: .75rem .75rem;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
.hero-search-input::placeholder { color: var(--text-light); }
.hero-search-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.hero-search-btn:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.hero-search-btn svg { width: 16px; height: 16px; }

/* Search results dropdown */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  max-height: 420px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  animation: scaleIn .2s ease;
}
.search-results-dropdown.active { display: block; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover,
.search-result-item.active {
  background: var(--surface-2);
}
.search-result-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  overflow: hidden;
}
.search-result-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-type {
  display: inline-block;
  padding: .1rem .5rem;
  background: var(--surface-2);
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.search-result-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-excerpt {
  font-size: .8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: .15rem;
}
.search-result-arrow {
  width: 16px; height: 16px;
  color: var(--text-light);
  flex-shrink: 0;
  transition: var(--transition);
}
.search-result-item:hover .search-result-arrow { transform: translateX(3px); color: var(--accent-warm); }

.search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 2rem;
  color: var(--text-muted);
  font-size: .9rem;
}
.search-spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent-warm);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.search-no-results {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--text-muted);
}
.search-no-results-icon { font-size: 2rem; margin-bottom: .5rem; }
.search-no-results h4 { font-size: .95rem; font-weight: 600; color: var(--text); margin-bottom: .25rem; }
.search-no-results p { font-size: .85rem; }

.search-kbd-hint {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: .6rem 1rem;
  border-top: 1px solid var(--border);
  font-size: .75rem;
  color: var(--text-light);
}
.search-kbd-hint kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  padding: .1rem .35rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  animation: fadeInUp .7s ease .5s both;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
}
.stat-label { font-size: .82rem; color: var(--text-muted); font-weight: 400; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero photos row */
.hero-photos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -1rem;
  margin-top: 1rem;
  animation: fadeInUp .7s ease .4s both;
}
.hero-photo-card {
  width: 160px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  transform: perspective(600px) rotateY(var(--rotate, 0deg));
  margin: 0 -.5rem;
  position: relative;
}
.hero-photo-card:nth-child(1) { --rotate: 8deg; z-index: 1; }
.hero-photo-card:nth-child(2) { --rotate: 4deg; z-index: 2; }
.hero-photo-card:nth-child(3) { --rotate: -2deg; z-index: 3; transform: scale(1.05) perspective(600px) rotateY(-2deg); }
.hero-photo-card:nth-child(4) { --rotate: -6deg; z-index: 2; }
.hero-photo-card:nth-child(5) { --rotate: -10deg; z-index: 1; }
.hero-photo-card:hover { transform: scale(1.08) translateY(-8px); z-index: 10; }
.hero-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.btn-warm {
  background: var(--gradient-warm);
  color: #fff;
  border-color: transparent;
}
.btn-warm:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,149,106,.3);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border-color: var(--border-2);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}
.btn-ghost {
  background: var(--surface-2);
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--border); color: var(--text); }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-warm);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1.2;
}
.section-title .title-accent {
  font-style: italic;
  font-weight: 400;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--accent-warm);
}
.section-subtitle {
  font-size: .95rem;
  color: var(--text-muted);
  margin-top: .5rem;
  max-width: 480px;
}
.section-link {
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border: 1.5px solid var(--border-2);
  border-radius: 50px;
  transition: var(--transition);
}
.section-link:hover {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  padding: 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-2);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: var(--surface-2);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gradient-warm); }
.service-icon svg { width: 28px; height: 28px; }
.service-title { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.service-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.service-link {
  font-size: .88rem; font-weight: 600; color: var(--text);
  display: inline-flex; align-items: center; gap: .35rem;
}
.service-link .arrow { transition: transform .3s; display: inline-block; }
.service-card:hover .service-link .arrow { transform: translateX(4px); }
.service-card:hover .service-link { color: var(--accent-warm); }

/* ============================================================
   CATEGORY CARDS (Homepage)
   ============================================================ */
.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cat-card {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.cat-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.cat-blog .cat-icon    { background: rgba(196,149,106,.12); color: var(--accent-warm); }
.cat-ai .cat-icon      { background: rgba(45,138,86,.1); color: var(--green); }
.cat-collab .cat-icon  { background: rgba(196,154,60,.1); color: var(--yellow); }
.cat-icon svg { width: 26px; height: 26px; }
.cat-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  padding: .2rem .65rem;
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
}
.cat-title { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.cat-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.cat-link { font-size: .85rem; font-weight: 600; color: var(--text); display: inline-flex; align-items: center; gap: .3rem; }
.cat-link .arrow { transition: transform .2s; display: inline-block; }
.cat-card:hover .cat-link .arrow { transform: translateX(4px); }
.cat-card:hover .cat-link { color: var(--accent-warm); }

/* ============================================================
   POST CARDS
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.posts-grid--blog { grid-template-columns: repeat(2, 1fr); }

.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.post-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.post-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.post-card:hover .post-card-img { transform: scale(1.05); }
.post-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.15));
}
.post-no-img {
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16/9;
}
.post-cat-icon { font-size: 2rem; }

.post-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.post-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.post-cat {
  padding: .2rem .65rem;
  background: var(--surface-2);
  color: var(--accent-warm);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.post-date { font-size: .78rem; color: var(--text-light); }
.post-title { font-size: 1rem; font-weight: 700; line-height: 1.4; }
.post-title a { color: var(--text); }
.post-title a:hover { color: var(--accent-warm); }
.post-excerpt { font-size: .875rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.post-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--border); }
.post-views { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--text-muted); }
.post-views svg { width: 14px; height: 14px; }
.read-more { font-size: .82rem; font-weight: 600; color: var(--text); }
.read-more:hover { color: var(--accent-warm); }

/* ============================================================
   AI PROMPTS GRID
   ============================================================ */
.prompts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.prompts-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.prompt-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -1px -1px 0;
}
.prompt-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.prompt-card-img-wrap:hover .prompt-card-img { transform: scale(1.04); }
.prompt-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.3) 100%);
}

.prompt-hero-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16/7;
}
.prompt-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.phi-label {
  position: absolute;
  bottom: .75rem; left: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .3rem .75rem;
  font-size: .75rem;
  color: var(--text-muted);
}

.prompt-card, .prompt-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: var(--transition);
}
.prompt-card:hover, .prompt-preview-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.prompt-card-header, .pp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prompt-header-left { display: flex; align-items: center; gap: .5rem; }
.pp-tool-badge {
  padding: .2rem .6rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
}
.pp-tool-chatgpt   { background: rgba(16,163,127,.1); color: #10a37f; }
.pp-tool-claude    { background: rgba(207,131,87,.1); color: #cf8357; }
.pp-tool-gemini    { background: rgba(66,133,244,.1); color: #4285f4; }
.pp-tool-chatgpt--lg, .pp-tool-claude--lg, .pp-tool-gemini--lg { font-size: .8rem; padding: .3rem .9rem; }

.pp-category, .prompt-cat-tag {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.prompt-copies { display: flex; align-items: center; gap: .3rem; font-size: .75rem; color: var(--text-muted); }
.prompt-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.prompt-title a { color: var(--text); }
.prompt-title a:hover { color: var(--accent-warm); }
.pp-title { font-size: .95rem; font-weight: 700; color: var(--text); }
.prompt-desc, .pp-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.5; flex: 1; }

.prompt-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem;
  overflow: hidden;
  max-height: 80px;
}
.prompt-text-preview {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  color: var(--text-muted);
  white-space: pre-wrap;
  line-height: 1.5;
}
.prompt-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.pp-actions { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.pp-more { font-size: .82rem; color: var(--text); font-weight: 600; }
.pp-more:hover { color: var(--accent-warm); }
.btn-view-prompt { font-size: .82rem; color: var(--text); font-weight: 500; }

.btn-copy-prompt {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  background: rgba(45,138,86,.06);
  border: 1.5px solid rgba(45,138,86,.2);
  border-radius: 50px;
  color: var(--green);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-copy-prompt:hover {
  background: rgba(45,138,86,.12);
  border-color: var(--green);
}
.btn-copy-prompt.copied {
  background: rgba(45,138,86,.15);
  color: var(--green);
}
.btn-copy-full { padding: .55rem 1.25rem; font-size: .85rem; }
.btn-copy-main { padding: .5rem 1.2rem; font-size: .85rem; }

.copy-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--green);
  border-radius: 50px;
  color: var(--green);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.copy-toast.show { transform: translateY(0); opacity: 1; }

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.filter-tab {
  padding: .45rem 1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--text); color: var(--text); }
.filter-tab.filter-active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.filter-count {
  background: var(--surface-2);
  border-radius: 50px;
  padding: .05rem .5rem;
  font-size: .72rem;
  color: var(--text-muted);
}
.filter-tab.filter-active .filter-count {
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
}

/* Prompt single */
.prompt-single-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.prompt-meta-row { display: flex; align-items: center; gap: 1rem; font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.prompt-main-box {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.pmb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.pmb-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pmb-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: .875rem;
  color: var(--text);
  white-space: pre-wrap;
  line-height: 1.7;
  padding: 1.5rem;
  overflow-x: auto;
}

.how-to-use {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.how-to-use h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.how-to-use ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.how-to-use li { font-size: .9rem; color: var(--text-muted); line-height: 1.5; }
.how-to-use a { color: var(--accent-warm); }
.how-to-use code {
  font-family: 'JetBrains Mono', monospace;
  background: var(--surface);
  padding: .1rem .4rem;
  border-radius: 4px;
  font-size: .85em;
  color: var(--text);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-quote {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: .9rem; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: .78rem; color: var(--text-light); }
.testimonial-stars {
  display: flex; gap: .15rem;
  color: var(--accent-warm);
  font-size: .85rem;
}

/* ============================================================
   SLIDER
   ============================================================ */
.slider-container { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.slide { flex: 0 0 calc(33.333% - 1rem); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.slider-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}
.slider-btn:hover { border-color: var(--text); color: var(--text); background: var(--surface-2); }
.slider-btn svg { width: 18px; height: 18px; }
.slider-dots { display: flex; gap: .5rem; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-2);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--accent-warm); transform: scale(1.3); }

/* Collab cards */
.collab-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.collab-card:hover { border-color: var(--border-2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.collab-img { aspect-ratio: 16/9; overflow: hidden; }
.collab-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.collab-card:hover .collab-img img { transform: scale(1.05); }
.collab-no-img {
  aspect-ratio: 16/9;
  background: var(--gradient-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,.5);
}
.collab-body { padding: 1.25rem; }
.collab-category {
  display: inline-block;
  padding: .2rem .6rem;
  background: var(--surface-2);
  color: var(--accent-warm);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.collab-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.collab-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.collab-client {
  display: flex; align-items: center; gap: .4rem;
  margin-top: .6rem; font-size: .8rem; color: var(--text-muted);
}

/* Featured collab */
.collab-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2rem;
}
.cfc-title { font-size: 1.5rem; font-weight: 800; color: var(--text); margin: .75rem 0; }
.cfc-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: .75rem; }
.cfc-content { font-size: .9rem; color: var(--text-muted); padding: .75rem; background: var(--surface-2); border-radius: var(--radius-sm); border-left: 3px solid var(--accent-warm); margin-bottom: 1rem; }
.cfc-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.cfc-img img { width: 100%; height: 100%; object-fit: cover; }
.cfc-no-img {
  aspect-ratio: 4/3;
  background: var(--gradient-warm);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,.3);
}
.collabs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: 9rem 0 4rem;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(196,149,106,.08), transparent 70%);
  pointer-events: none;
}
.page-hero--ai::before { background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(45,138,86,.06), transparent 70%); }
.page-hero-content { text-align: center; max-width: 640px; margin: 0 auto; }
.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: .75rem;
}
.page-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }
.ai-tools-bar { display: flex; justify-content: center; gap: .75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.ai-tool-pill {
  padding: .35rem .9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ============================================================
   BLOG LAYOUT
   ============================================================ */
.blog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem; align-items: start; }
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.sticky-card { position: sticky; top: 88px; }
.sidebar-title { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.cat-list { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.cat-item:hover { background: var(--surface-2); color: var(--text); }
.cat-item.cat-active { background: var(--surface-2); color: var(--text); font-weight: 600; }
.cat-count {
  padding: .1rem .5rem;
  background: var(--surface-2);
  border-radius: 50px;
  font-size: .72rem;
  color: var(--text-light);
}

/* Search bar (blog) */
.search-bar-wrap { margin-top: 2rem; }
.search-form { display: flex; gap: .75rem; max-width: 480px; margin: 0 auto; }
.search-input-wrap { position: relative; flex: 1; }
.search-icon {
  position: absolute; left: .85rem; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--text-muted);
}
.search-input {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .65rem .85rem .65rem 2.5rem;
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
  transition: var(--transition);
}
.search-input::placeholder { color: var(--text-light); }
.search-input:focus { outline: none; border-color: var(--accent-warm); box-shadow: 0 0 0 3px rgba(196,149,106,.12); }
.search-results-info { margin-bottom: 1.5rem; color: var(--text-muted); font-size: .9rem; }
.clear-search { margin-left: .5rem; color: var(--red); font-weight: 500; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.breadcrumb-bar { background: var(--surface-2); border-bottom: 1px solid var(--border); padding: .75rem 0; margin-top: 72px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-warm); }
.bc-current { color: var(--text); }

.single-post { padding-bottom: 4rem; }
.single-hero-img { width: 100%; max-height: 480px; overflow: hidden; position: relative; margin-top: 72px; }
.single-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.single-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, var(--bg) 100%); }

.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
  padding-top: 2.5rem;
}
.single-header { margin-bottom: 2rem; }
.post-meta--lg { margin-bottom: 1rem; }
.single-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1rem;
}
.single-excerpt { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.single-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.author-avatar--lg { width: 64px; height: 64px; font-size: 1.25rem; }
.author-info { display: flex; flex-direction: column; }
.author-name { font-size: .9rem; font-weight: 700; color: var(--text); }
.author-role { font-size: .78rem; color: var(--text-muted); }

/* Share bar */
.share-bar { display: flex; align-items: center; gap: .6rem; margin-bottom: 2rem; flex-wrap: wrap; }
.share-label { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.share-btn {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .8rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
}
.share-btn:hover { border-color: var(--border-2); color: var(--text); }
.share-btn svg { width: 16px; height: 16px; }
.share-fb:hover { border-color: #1877f2; color: #1877f2; }
.share-tw:hover { border-color: var(--text); color: var(--text); }

/* Prose */
.prose {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.prose h1,.prose h2,.prose h3,.prose h4,.prose h5 {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin: 2em 0 .75em;
}
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.2rem; }
.prose p { margin-bottom: 1.25em; }
.prose ul,.prose ol { padding-left: 1.5rem; margin-bottom: 1.25em; display: flex; flex-direction: column; gap: .4em; }
.prose li { line-height: 1.6; }
.prose strong { color: var(--text); font-weight: 700; }
.prose em { font-style: italic; }
.prose a { color: var(--accent-warm); text-decoration: underline; }
.prose a:hover { color: var(--accent-warm-2); }
.prose blockquote {
  border-left: 3px solid var(--accent-warm);
  padding: 1rem 1.5rem;
  background: var(--surface-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5em 0;
  color: var(--text-muted);
  font-style: italic;
}
.prose code {
  font-family: 'JetBrains Mono', monospace;
  font-size: .85em;
  background: var(--surface-2);
  padding: .15rem .4rem;
  border-radius: 4px;
  color: var(--accent-warm);
}
.prose pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5em 0;
}
.prose pre code { background: none; padding: 0; color: var(--text); }
.prose img { border-radius: var(--radius-sm); margin: 1.5em 0; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2em 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .9rem; }
.prose th,.prose td { padding: .6rem .9rem; border: 1px solid var(--border); text-align: left; }
.prose th { background: var(--surface-2); font-weight: 700; color: var(--text); }

/* Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; align-items: center; }
.tags-label { font-size: .85rem; color: var(--text-muted); }
.tag {
  padding: .25rem .7rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .78rem;
  color: var(--text-muted);
}

/* Sidebar author */
.author-sidebar { text-align: center; padding: .5rem 0; }
.as-name { font-size: 1rem; font-weight: 700; margin: .75rem 0 .4rem; }
.as-bio { font-size: .85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: .75rem; }
.as-social { display: flex; justify-content: center; gap: .5rem; }
.as-social a {
  padding: .35rem .7rem;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  color: var(--text-muted);
}
.as-social a:hover { color: var(--accent-warm); }

/* Related posts */
.related-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.related-item { display: flex; gap: .75rem; align-items: flex-start; }
.related-img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.related-content { display: flex; flex-direction: column; gap: .25rem; }
.related-title { font-size: .85rem; font-weight: 600; color: var(--text-muted); line-height: 1.4; }
.related-title:hover { color: var(--accent-warm); }
.related-date { font-size: .75rem; color: var(--text-light); }

/* Sidebar CTA */
.sidebar-cta { text-align: center; background: linear-gradient(135deg, rgba(196,149,106,.06), rgba(196,149,106,.02)); }
.sc-icon { font-size: 2rem; margin-bottom: .5rem; }
.sidebar-cta h4 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.sidebar-cta p { font-size: .82rem; color: var(--text-muted); margin-bottom: 1rem; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: .4rem; margin-top: 2.5rem; }
.pag-btn,.pag-num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: .88rem;
  font-weight: 600;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}
.pag-btn svg { width: 16px; height: 16px; }
.pag-btn:hover,.pag-num:hover { border-color: var(--text); color: var(--text); }
.pag-active { background: var(--text); border-color: var(--text); color: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--text-muted); }
.required { color: var(--red); }
.form-control {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
  transition: var(--transition);
}
.form-control::placeholder { color: var(--text-light); }
.form-control:focus { outline: none; border-color: var(--accent-warm); box-shadow: 0 0 0 3px rgba(196,149,106,.1); }
.form-textarea { resize: vertical; min-height: 140px; }

.alert {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
}
.alert-success { background: rgba(45,138,86,.06); border: 1px solid rgba(45,138,86,.2); color: var(--green); }
.alert-error   { background: rgba(196,72,72,.06);  border: 1px solid rgba(196,72,72,.2);  color: var(--red); }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.ci-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.ci-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.ci-card h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.ci-card p,.ci-card a { font-size: .85rem; color: var(--text-muted); }
.ci-card a:hover { color: var(--accent-warm); }
.ci-social-list { display: flex; flex-direction: column; gap: .5rem; margin-top: .5rem; }
.ci-social-link {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .75rem;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 500; color: var(--text-muted);
}
.ci-social-link:hover { color: var(--accent-warm); }
.ci-services { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-top: .5rem; }
.ci-services li { font-size: .85rem; color: var(--text-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { padding: 5rem 0; }
.cta-card {
  background: var(--text);
  border-radius: var(--radius-xl);
  padding: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 0% 50%, rgba(196,149,106,.2), transparent 70%);
  pointer-events: none;
}
.cta-content { max-width: 540px; position: relative; z-index: 1; }
.cta-content h2 { font-size: 2.25rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .75rem; color: #fff; }
.cta-content p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; font-size: 1.05rem; }
.cta-content .btn-warm { background: var(--gradient-warm); color: #fff; }
.cta-content .btn-warm:hover { box-shadow: 0 8px 24px rgba(196,149,106,.4); }
.cta-shapes { position: absolute; right: 3rem; top: 50%; transform: translateY(-50%); }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
}
.s1 { width: 200px; height: 200px; background: var(--accent-warm); top: -100px; right: 0; }
.s2 { width: 120px; height: 120px; background: #fff; top: -40px; right: 80px; }
.s3 { width: 60px; height: 60px; background: var(--accent-warm); top: 10px; right: 160px; }

/* ============================================================
   ERROR PAGE
   ============================================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
}
.error-content { text-align: center; }
.error-number {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-warm);
  margin-bottom: 1rem;
}
.error-title { font-size: 1.75rem; font-weight: 700; margin-bottom: .75rem; }
.error-desc { color: var(--text-muted); margin-bottom: 2rem; }
.error-actions { display: flex; justify-content: center; gap: 1rem; }

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}
.empty-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.empty-state h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 2rem;
  margin-top: 0;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: #fff; display: inline-block; margin-bottom: 1rem; }
.footer-logo .accent { color: var(--accent-warm); }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: .5rem; }
.social-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--accent-warm); color: var(--accent-warm); background: rgba(196,149,106,.1); }
.social-btn svg { width: 16px; height: 16px; }
.footer-heading { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.5); }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.3); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { gap: 2rem; }
  .hero-photo-card { width: 130px; height: 165px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .category-cards { grid-template-columns: 1fr 1fr 1fr; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .collab-featured-card { grid-template-columns: 1fr; gap: 2rem; }
  .collabs-grid { grid-template-columns: repeat(2, 1fr); }
  .slide { flex: 0 0 calc(50% - .75rem); }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .navbar .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: .5rem;
    transform: translateX(100%);
    opacity: 0;
    transition: all .3s ease;
    z-index: 999;
  }
  .navbar .nav-menu.open { transform: translateX(0); opacity: 1; }
  .nav-link { padding: 1rem 2rem; border-radius: var(--radius-sm); font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-photo-card { width: 80px; height: 100px; border-radius: var(--radius-sm); }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .stat-num { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .category-cards { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .posts-grid--blog { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: 2; }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 2.5rem 2rem; flex-direction: column; text-align: center; }
  .cta-content h2 { font-size: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .prompts-grid { grid-template-columns: 1fr; }
  .prompts-preview-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .collabs-grid { grid-template-columns: 1fr; }
  .slide { flex: 0 0 100%; }
  .hero-search-btn span { display: none; }
  .hero-search-btn { padding: .65rem; }
}

@media (max-width: 480px) {
  .cta-card { padding: 2rem 1.5rem; }
  .page-hero { padding: 7rem 0 2.5rem; }
  .hero-actions { gap: .5rem; }
  .btn { padding: .6rem 1.2rem; font-size: .875rem; }
  .hero-photos { display: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
