/* =========================================================
   CDA Theme – Main Stylesheet
   Edit this file to change colours, spacing, typography.
   Brand colours are in :root – change them once, updates everywhere.
   ========================================================= */

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

/* ── BRAND COLOURS ─────────────────────────────────────────
   Change these to update the whole site colour scheme.
   ──────────────────────────────────────────────────────── */
:root {
  --ink:    #ffffff;    /* page background */
  --paper:  #0a0a0a;    /* main text */
  --dark:   #f4f4f2;    /* alternate section bg */
  --card:   #efefed;    /* card background */
  --muted:  #888888;    /* muted text / labels */
  --border: rgba(0,0,0,0.08);

  /* CDA Brand Palette */
  --pink:   #e03b8b;
  --cyan:   #00b4d8;
  --yellow: #f5c800;
  --green:  #6abf45;
}

/* ── BASE ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--pink);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(224,59,139,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s;
}

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px clamp(24px,6vw,80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s ease infinite;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--paper); }
.nav-cta {
  background: var(--pink) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  font-size: 12px !important;
}
.nav-cta:hover { background: #c4317a !important; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 32px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: none;
}
.btn-primary:hover { background: #c4317a; transform: translateY(-2px); }
.btn-primary::after { content: '→'; font-size: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(0,0,0,0.55);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 32px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.12);
  transition: border-color 0.2s, color 0.2s;
  cursor: none;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── SECTION SHARED ────────────────────────────────────── */
.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--muted);
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px,5vw,64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.section-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.2);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-note {
  font-size: clamp(14px,1.5vw,16px);
  line-height: 1.7;
  color: rgba(0,0,0,0.45);
  max-width: 360px;
  text-align: right;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px clamp(24px,6vw,80px) 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(224,59,139,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 70%, rgba(0,180,216,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 60% 90%, rgba(245,200,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--cyan);
}
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(44px, 8.5vw, 128px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 1000px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero-title .outline { color: transparent; -webkit-text-stroke: 1.5px rgba(0,0,0,0.2); }
.hero-title .pink    { color: var(--pink); }
.hero-title .cyan    { color: var(--cyan); }
.hero-title .yellow  { color: var(--yellow); }

.hero-sub {
  font-size: clamp(16px,2vw,20px);
  line-height: 1.65;
  color: rgba(0,0,0,0.55);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-sub strong { color: var(--paper); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: clamp(24px,6vw,80px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
  opacity: 0;
  animation: fadeUp 0.8s 1.2s ease forwards;
}
.scroll-line {
  width: 40px; height: 1px;
  background: rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--cyan);
  animation: scrollAnim 2s 1.5s ease infinite;
}

/* ── PROBLEM STRIP ─────────────────────────────────────── */
.problem-strip {
  background: var(--yellow);
  padding: 22px clamp(24px,6vw,80px);
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}
.problem-strip p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(12px,1.4vw,15px);
  font-weight: 800;
  color: #000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.strip-icon { font-size: 20px; flex-shrink: 0; }

/* ── MARQUEE ───────────────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: rgba(224,59,139,0.03);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.2);
  padding: 0 36px;
  flex-shrink: 0;
}
.marquee-item.p { color: rgba(224,59,139,0.5); }
.marquee-item.c { color: rgba(0,180,216,0.5); }
.marquee-item.y { color: rgba(245,200,0,0.5); }
.marquee-item.g { color: rgba(106,191,69,0.5); }

/* ── SERVICES ──────────────────────────────────────────── */
.services { padding: clamp(80px,12vw,160px) clamp(24px,6vw,80px); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.service-card {
  background: var(--card);
  padding: clamp(32px,4vw,52px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:nth-child(1)::after { background: var(--pink); }
.service-card:nth-child(2)::after { background: var(--cyan); }
.service-card:nth-child(3)::after { background: var(--yellow); }
.service-card:nth-child(4)::after { background: var(--green); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); }

.service-icon { font-size: 28px; margin-bottom: 24px; display: block; }
.service-num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.service-card:nth-child(1) .service-num { color: rgba(224,59,139,0.3); }
.service-card:nth-child(2) .service-num { color: rgba(0,180,216,0.3); }
.service-card:nth-child(3) .service-num { color: rgba(245,200,0,0.3); }
.service-card:nth-child(4) .service-num { color: rgba(106,191,69,0.3); }

.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px,2.2vw,26px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--paper);
}
.service-card p { font-size: 14px; line-height: 1.75; color: rgba(0,0,0,0.45); }

.service-tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.3);
}
.service-card:nth-child(1) .tag { background: var(--pink);   border-color: var(--pink);   color: #fff; }
.service-card:nth-child(2) .tag { background: var(--cyan);   border-color: var(--cyan);   color: #fff; }
.service-card:nth-child(3) .tag { background: var(--yellow); border-color: var(--yellow); color: #fff; }
.service-card:nth-child(4) .tag { background: var(--green);  border-color: var(--green);  color: #fff; }

/* ── THE PROBLEM ───────────────────────────────────────── */
.the-problem {
  padding: clamp(80px,12vw,160px) clamp(24px,6vw,80px);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.the-problem::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,59,139,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,100px);
  align-items: start;
}
.problem-left .section-title { margin-bottom: 28px; }
.problem-left p {
  font-size: clamp(15px,1.6vw,17px);
  line-height: 1.8;
  color: rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.problem-left p strong { color: var(--paper); font-weight: 500; }

.problem-steps { margin-top: 48px; display: flex; flex-direction: column; gap: 3px; }
.problem-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card);
  padding: 24px 28px;
}
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  padding-top: 2px;
  flex-shrink: 0;
  width: 24px;
}
.step-content h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step-content p  { font-size: 13px; line-height: 1.65; color: rgba(0,0,0,0.4); margin: 0 !important; }

.how-we-work-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.how-we-work-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.07);
}
.work-pillars { display: flex; flex-direction: column; gap: 3px; }
.pillar {
  background: var(--card);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s;
}
.pillar:hover { background: #e4e4e2; }
.pillar-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pillar:nth-child(1) .pillar-icon { background: rgba(224,59,139,0.1); }
.pillar:nth-child(2) .pillar-icon { background: rgba(0,180,216,0.1); }
.pillar:nth-child(3) .pillar-icon { background: rgba(245,200,0,0.1); }
.pillar:nth-child(4) .pillar-icon { background: rgba(106,191,69,0.1); }
.pillar-text h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pillar-text p  { font-size: 13px; line-height: 1.65; color: rgba(0,0,0,0.4); }

/* ── AI SEO ────────────────────────────────────────────── */
.ai-seo { padding: clamp(80px,12vw,160px) clamp(24px,6vw,80px); }
.ai-seo-inner {
  background: var(--card);
  padding: clamp(40px,6vw,80px);
  position: relative;
  overflow: hidden;
}
.ai-seo-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.2);
  color: var(--cyan);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  margin-bottom: 32px;
}
.ai-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.8s ease infinite;
}
.ai-seo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
}
.ai-seo-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px,4vw,52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.ai-seo-left h2 span { color: var(--cyan); }
.ai-seo-left p { font-size: clamp(14px,1.5vw,16px); line-height: 1.8; color: rgba(0,0,0,0.5); margin-bottom: 36px; }

.ai-optimisations { display: flex; flex-direction: column; gap: 3px; }
.ai-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(0,0,0,0.04);
  border-left: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.ai-item:hover { border-left-color: var(--cyan); background: rgba(0,180,216,0.04); }
.ai-item-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 700; color: var(--cyan); padding-top: 2px; flex-shrink: 0; }
.ai-item-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--paper); margin-bottom: 4px; }
.ai-item-text span   { font-size: 13px; color: rgba(0,0,0,0.4); line-height: 1.6; }

.ai-future {
  padding: clamp(32px,4vw,52px);
  background: rgba(0,180,216,0.05);
  border: 1px solid rgba(0,180,216,0.12);
}
.ai-future h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px,2.8vw,36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ai-future h3 em { font-style: normal; color: var(--cyan); }
.ai-future p { font-size: 14px; line-height: 1.8; color: rgba(0,0,0,0.45); margin-bottom: 32px; }

.ai-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-bottom: 32px; }
.ai-stat  { padding: 20px; background: rgba(0,0,0,0.04); text-align: center; }
.ai-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(24px,3vw,40px); font-weight: 800; color: var(--cyan); line-height: 1; display: block; margin-bottom: 6px; }
.ai-stat-label { font-size: 12px; color: rgba(0,0,0,0.35); line-height: 1.4; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials { padding: clamp(80px,12vw,160px) clamp(24px,6vw,80px); background: var(--dark); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 64px;
}
.testi-card {
  background: var(--card);
  padding: 36px 32px;
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card:nth-child(1) { border-top: 2px solid var(--pink); }
.testi-card:nth-child(2) { border-top: 2px solid var(--cyan); }
.testi-card:nth-child(3) { border-top: 2px solid var(--yellow); }
.testi-card:nth-child(4) { border-top: 2px solid var(--green); }
.testi-card:nth-child(5) { border-top: 2px solid var(--pink); }
.testi-card:nth-child(6) { border-top: 2px solid var(--cyan); }

.testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.star {
  width: 10px; height: 10px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testi-card blockquote { font-size: 14px; line-height: 1.75; color: rgba(0,0,0,0.55); font-style: italic; margin-bottom: 24px; }
.testi-card cite { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; }
.testi-card:nth-child(1) cite { color: rgba(224,59,139,0.6); }
.testi-card:nth-child(2) cite { color: rgba(0,180,216,0.6); }
.testi-card:nth-child(3) cite { color: rgba(245,200,0,0.6); }
.testi-card:nth-child(4) cite { color: rgba(106,191,69,0.6); }
.testi-card:nth-child(5) cite { color: rgba(224,59,139,0.6); }
.testi-card:nth-child(6) cite { color: rgba(0,180,216,0.6); }

/* ── ABOUT ─────────────────────────────────────────────── */
.about {
  padding: clamp(80px,12vw,160px) clamp(24px,6vw,80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px,8vw,120px);
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4/5;
  background: var(--card);
  position: relative;
  overflow: hidden;
  max-width: 480px;
}
.about-portrait-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(224,59,139,0.15), rgba(0,180,216,0.1), rgba(245,200,0,0.08));
}
.about-portrait-text {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.about-initial {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,0,0,0.08);
  line-height: 1;
}
.about-name-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  background: rgba(0,0,0,0.05);
  padding: 8px 20px;
  border: 1px solid rgba(0,0,0,0.1);
}
.about-colour-dots {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 32px;
  left: 32px;
}
.dot { width: 14px; height: 14px; border-radius: 50%; }

.about-right h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px,4vw,54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.about-right h2 span { color: var(--pink); }
.about-right p { font-size: clamp(14px,1.5vw,16px); line-height: 1.8; color: rgba(0,0,0,0.5); margin-bottom: 20px; }
.about-right p strong { color: var(--paper); font-weight: 500; }

/* ── CONTACT ───────────────────────────────────────────── */
.contact { padding: clamp(80px,12vw,160px) clamp(24px,6vw,80px); background: var(--dark); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px,8vw,100px);
  align-items: start;
}
.contact-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px,6vw,80px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.contact-left h2 .outline { color: transparent; -webkit-text-stroke: 1.5px rgba(0,0,0,0.15); display: block; }
.contact-left h2 .pink    { color: var(--pink); display: block; }
.contact-left p { font-size: clamp(14px,1.5vw,16px); line-height: 1.8; color: rgba(0,0,0,0.45); margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 14px; color: rgba(0,0,0,0.45); }
.contact-detail span:first-child {
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail a { color: rgba(0,0,0,0.45); text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--cyan); }

.contact-form { display: flex; flex-direction: column; gap: 3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  padding: 14px 20px 0;
  background: var(--card);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--card);
  border: none;
  outline: none;
  color: var(--paper);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 10px 20px 16px;
  resize: none;
  transition: background 0.2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { background: #e8e8e6; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(0,0,0,0.25); }
.form-field textarea { min-height: 130px; }
.form-field select option { background: var(--card); }

.form-submit { margin-top: 4px; }
.form-submit button {
  width: 100%;
  background: var(--pink);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px;
  border: none;
  cursor: none;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.form-submit button:hover { background: #c4317a; }
.form-submit button::after { content: '→'; font-size: 18px; }

#cda-form-msg.success { background: rgba(106,191,69,0.1); color: var(--green); border: 1px solid rgba(106,191,69,0.3); }
#cda-form-msg.error   { background: rgba(224,59,139,0.1); color: var(--pink);  border: 1px solid rgba(224,59,139,0.3); }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px clamp(24px,6vw,80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 16px; color: rgba(0,0,0,0.3); }
.footer-dots { display: flex; gap: 8px; }
.footer-dots span { width: 8px; height: 8px; border-radius: 50%; }
footer p { font-size: 12px; color: rgba(0,0,0,0.2); }

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── KEYFRAMES ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.6); }
}
@keyframes scrollAnim {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .section-note { text-align: left; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .services-grid    { grid-template-columns: 1fr; }
  .problem-layout   { grid-template-columns: 1fr; }
  .ai-seo-grid      { grid-template-columns: 1fr; }
  .about            { grid-template-columns: 1fr; }
  .contact-inner    { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .testi-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   ARTICLES – Archive & Single Post
   ========================================================= */

/* ── ARCHIVE HERO ──────────────────────────────────────── */
.archive-hero {
  padding: 140px clamp(24px,6vw,80px) 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.archive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(224,59,139,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(0,180,216,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.archive-hero-inner { position: relative; max-width: 800px; }
.archive-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.archive-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.15);
}
.archive-desc {
  font-size: clamp(15px,1.8vw,18px);
  line-height: 1.7;
  color: rgba(0,0,0,0.5);
  max-width: 580px;
  margin-bottom: 48px;
}

/* ── CATEGORY FILTER ───────────────────────────────────── */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1.5px solid rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
}
.cat-btn:hover,
.cat-btn.active {
  background: var(--cat-colour, var(--pink));
  border-color: var(--cat-colour, var(--pink));
  color: #fff;
}
.cat-btn.active:first-child { background: var(--paper); border-color: var(--paper); color: var(--ink); }

/* ── ARTICLES SECTION ──────────────────────────────────── */
.articles-section { padding: clamp(60px,8vw,100px) clamp(24px,6vw,80px); background: var(--dark); }
.articles-inner { max-width: 1400px; margin: 0 auto; }

/* ── FEATURED POST ─────────────────────────────────────── */
.post-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
  background: var(--ink);
}
@media(max-width:760px) { .post-featured { grid-template-columns: 1fr; } }

.post-featured-content {
  padding: clamp(40px,5vw,64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
}
.post-featured-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px,3.5vw,44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--paper);
}
.post-featured-title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.post-featured-title a:hover { opacity: 0.7; }

.post-featured-visual {
  aspect-ratio: 4/3;
  background: var(--card);
  position: relative;
  overflow: hidden;
}
.post-featured-visual img { width: 100%; height: 100%; object-fit: cover; }
.post-visual-inner { width: 100%; height: 100%; }
.post-visual-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background: linear-gradient(135deg, var(--card), var(--dark));
}
.placeholder-letter {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent, var(--pink));
  line-height: 1;
  opacity: 0.4;
}
.placeholder-lines { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.placeholder-lines span { height: 3px; display: block; border-radius: 2px; }

/* ── POST GRID ─────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
@media(max-width:900px) { .posts-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px) { .posts-grid { grid-template-columns: 1fr; } }

/* ── POST CARD ─────────────────────────────────────────── */
.post-card {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.post-card:hover { transform: translateY(-4px); }
.post-card-accent {
  height: 3px;
  width: 100%;
}
.post-card-content { padding: 28px 32px 32px; }

/* ── SHARED POST META ──────────────────────────────────── */
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.post-cat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.post-date, .post-read {
  font-size: 12px;
  color: rgba(0,0,0,0.35);
}
.post-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(16px,2vw,20px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--paper);
}
.post-card-title a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.post-card-title a:hover { opacity: 0.6; }

.post-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.post-read-more {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.post-read-more:hover { gap: 10px; }
.post-read-more.small { font-size: 11px; }

/* ── PAGINATION ─────────────────────────────────────────── */
.archive-pagination { margin-top: 48px; display: flex; justify-content: center; }
.archive-pagination .page-numbers {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
}
.archive-pagination .page-numbers li a,
.archive-pagination .page-numbers li span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  text-decoration: none;
  color: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  transition: all 0.2s;
  display: block;
}
.archive-pagination .page-numbers li a:hover { border-color: var(--pink); color: var(--pink); }
.archive-pagination .page-numbers li span.current { background: var(--pink); color: #fff; border-color: var(--pink); }

/* ── NO POSTS ───────────────────────────────────────────── */
.no-posts {
  padding: clamp(60px,10vw,120px) 0;
  text-align: center;
}
.no-posts h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px,4vw,52px);
  font-weight: 800;
  margin: 16px 0 20px;
  letter-spacing: -0.03em;
}
.no-posts p { font-size: 16px; color: rgba(0,0,0,0.5); }
.no-posts a { color: var(--pink); }

/* ── ARCHIVE CTA STRIP ──────────────────────────────────── */
.archive-cta {
  background: var(--paper);
  padding: clamp(60px,8vw,100px) clamp(24px,6vw,80px);
}
.archive-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}
.archive-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px,4vw,52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
}
.archive-cta p { font-size: 16px; color: rgba(255,255,255,0.5); }

/* ── SINGLE POST ─────────────────────────────────────────── */
.single-hero {
  padding: 140px clamp(24px,6vw,80px) 0;
  background: var(--ink);
}
.single-hero-inner { max-width: 760px; margin: 0 auto 0 0; padding-bottom: 48px; }

.breadcrumbs {
  font-size: 12px;
  color: rgba(0,0,0,0.35);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(0,0,0,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--pink); }

.single-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px,5.5vw,72px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 24px;
}
.single-intro {
  font-size: clamp(16px,1.8vw,20px);
  line-height: 1.65;
  color: rgba(0,0,0,0.5);
  margin-bottom: 32px;
  max-width: 640px;
}
.single-byline {
  display: flex;
  align-items: center;
  gap: 14px;
}
.byline-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--pink);
  flex-shrink: 0;
}
.single-byline strong { display: block; font-size: 14px; font-weight: 700; color: var(--paper); }
.single-byline span   { font-size: 12px; color: rgba(0,0,0,0.4); }

.single-hero-img {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}
.single-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── SINGLE LAYOUT ──────────────────────────────────────── */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px,5vw,80px);
  padding: clamp(40px,6vw,80px) clamp(24px,6vw,80px);
  background: var(--ink);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
@media(max-width:900px) { .single-layout { grid-template-columns: 1fr; } }

/* ── ARTICLE BODY TYPOGRAPHY ────────────────────────────── */
.article-body { max-width: 700px; }
.article-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px,3vw,34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--paper);
  margin: 48px 0 20px;
}
.article-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px,2.2vw,24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 36px 0 16px;
}
.article-body p {
  font-size: clamp(15px,1.6vw,17px);
  line-height: 1.85;
  color: rgba(0,0,0,0.6);
  margin-bottom: 20px;
}
.article-body strong { color: var(--paper); font-weight: 600; }
.article-body a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  font-size: clamp(15px,1.6vw,17px);
  line-height: 1.85;
  color: rgba(0,0,0,0.6);
  margin-bottom: 8px;
}
.article-body blockquote {
  border-left: 3px solid var(--pink);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--dark);
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  color: rgba(0,0,0,0.7);
}
.article-body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 32px 0;
}
.article-body code {
  background: var(--dark);
  padding: 2px 8px;
  font-size: 14px;
  border-radius: 3px;
  color: var(--pink);
}
.article-body pre {
  background: var(--paper);
  color: var(--ink);
  padding: 24px;
  overflow-x: auto;
  margin-bottom: 24px;
}

/* ── TAGS & SHARE ───────────────────────────────────────── */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.tags-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}
.article-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  transition: all 0.2s;
}
.article-tag:hover { border-color: var(--pink); color: var(--pink); }

.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.share-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}
.share-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: rgba(0,0,0,0.5);
  transition: all 0.2s;
}
.share-btn:hover { border-color: var(--paper); color: var(--paper); background: var(--paper); }

/* ── SIDEBAR ────────────────────────────────────────────── */
.single-sidebar { display: flex; flex-direction: column; gap: 3px; position: sticky; top: 90px; }

.sidebar-author {
  background: var(--dark);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--pink);
}
.author-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; color: var(--paper); }
.author-role { font-size: 12px; color: rgba(0,0,0,0.4); margin-top: -6px; }
.author-bio  { font-size: 13px; line-height: 1.7; color: rgba(0,0,0,0.5); }

.sidebar-cats { background: var(--dark); padding: 28px 32px; display: flex; flex-direction: column; gap: 4px; }
.sidebar-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 12px;
}
.sidebar-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.6);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.sidebar-cat:last-child { border-bottom: none; }
.sidebar-cat:hover { color: var(--cat-colour, var(--pink)); }
.sidebar-cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sidebar-cat-count { margin-left: auto; font-size: 11px; color: rgba(0,0,0,0.25); }

.sidebar-cta {
  background: var(--dark);
  padding: 32px;
  border-top: 3px solid var(--pink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-cta-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}
.sidebar-cta h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.sidebar-cta p { font-size: 13px; line-height: 1.7; color: rgba(0,0,0,0.5); }

/* ── RELATED POSTS ──────────────────────────────────────── */
.related-posts { padding: clamp(60px,8vw,100px) clamp(24px,6vw,80px); background: var(--dark); }
.related-inner { max-width: 1400px; margin: 0 auto; }


/* =========================================================
   CATEGORY PAGE
   ========================================================= */

.cat-hero {
  padding: 140px clamp(24px,6vw,80px) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, color-mix(in srgb, var(--cat-colour) 8%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.cat-hero-inner { position: relative; }
.cat-hero-accent {
  height: 3px;
  width: 100%;
  margin-top: 0;
}

.cat-hero-content { max-width: 800px; padding-bottom: 48px; }

.cat-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 16px;
  margin-bottom: 28px;
}
.cat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px,5vw,64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 24px;
}
.cat-desc {
  font-size: clamp(15px,1.7vw,18px);
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  margin-bottom: 32px;
  max-width: 640px;
}

/* Expertise chips */
.cat-expertise {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.expertise-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-right: 4px;
}
.expertise-chip {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border: 1.5px solid;
  color: inherit;
}

/* Stat bar */
.cat-stat-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.cat-stat { display: flex; flex-direction: column; gap: 4px; }
.cat-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.cat-stat-label { font-size: 11px; color: rgba(0,0,0,0.35); letter-spacing: 0.05em; }
.cat-stat-divider { width: 1px; height: 32px; background: var(--border); }

/* Category nav strip */
.cat-nav-strip {
  padding: 16px clamp(24px,6vw,80px);
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Expert bio strip */
.expert-bio-strip {
  background: var(--dark);
  padding: clamp(40px,5vw,64px) clamp(24px,6vw,80px);
}
.expert-bio-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}
.expert-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2.5px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--pink);
  flex-shrink: 0;
}
.expert-text { flex: 1; min-width: 260px; }
.expert-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.expert-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px,2.5vw,28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 10px;
}
.expert-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.5);
}


/* =========================================================
   OUR THOUGHTS – New Creative Blog Layout
   ========================================================= */

/* ── THOUGHTS HERO ──────────────────────────────────────── */
.thoughts-hero {
  padding: 150px clamp(24px,6vw,80px) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.thoughts-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 64px;
}
.thoughts-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(44px,7vw,96px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.thoughts-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.15);
}
.thoughts-title .pink { color: var(--pink); }
.thoughts-desc {
  font-size: clamp(15px,1.7vw,18px);
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  max-width: 480px;
  margin-bottom: 36px;
}

/* Topic pills */
.thoughts-topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.topic-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-right: 4px;
}
.topic-pill {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1.5px solid var(--tc, var(--pink));
  color: var(--tc, var(--pink));
  text-decoration: none;
  transition: all 0.2s;
}
.topic-pill:hover {
  background: var(--tc, var(--pink));
  color: #fff;
}

/* Right: signal stats */
.signal-block {
  background: var(--dark);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 3px solid var(--pink);
}
.signal-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 0;
}
.signal-item:first-child { padding-top: 0; }
.signal-item:last-child  { padding-bottom: 0; }
.signal-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px,5vw,56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.signal-num.pink   { color: var(--pink); }
.signal-num.cyan   { color: var(--cyan); }
.signal-num.yellow { color: var(--yellow); }
.signal-unit { font-size: 0.55em; }
.signal-label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,0.45);
  max-width: 220px;
}
.signal-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* Accent bar */
.thoughts-accent-bar {
  display: flex;
  height: 4px;
  width: 100%;
}

/* ── CATEGORY FILTER BAR ────────────────────────────────── */
.cat-filter-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(24px,6vw,80px);
  position: sticky;
  top: 82px;
  z-index: 50;
}
.cat-filter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  padding: 16px 0;
  max-width: 1400px;
  margin: 0 auto;
}
.filter-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
  margin-right: 8px;
}

/* ── THOUGHTS MAIN ──────────────────────────────────────── */
.thoughts-main {
  background: var(--ink);
  padding: clamp(60px,8vw,100px) clamp(24px,6vw,80px);
}
.thoughts-inner { max-width: 1400px; margin: 0 auto; }

/* ── FEATURED / HERO POST ───────────────────────────────── */
.post-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 48px;
  background: var(--dark);
}
@media(max-width:760px) { .post-hero { grid-template-columns: 1fr; } }

.post-hero-content {
  padding: clamp(40px,5vw,64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.post-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 12px;
}
.post-badge.small { font-size: 9px; padding: 4px 10px; }
.post-date {
  font-size: 12px;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.04em;
}
.post-read-time {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}
.post-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px,3.5vw,48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 20px;
}
.post-hero-title a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.post-hero-title a:hover { opacity: 0.7; }
.post-hero-excerpt {
  font-size: clamp(14px,1.5vw,16px);
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  margin-bottom: 32px;
}
.post-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  transition: gap 0.2s;
}
.post-hero-link:hover { gap: 14px; }

.post-hero-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card);
}
.post-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--card), var(--dark));
  position: relative;
}
.placeholder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  width: 60%;
  aspect-ratio: 3/2;
}
.placeholder-grid span { display: block; border-radius: 2px; }
.placeholder-heading {
  position: absolute;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent, var(--pink));
  opacity: 0.08;
  line-height: 1;
}
.post-hero-badge-float {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(10,10,10,0.75);
  color: #fff;
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}

/* ── THOUGHTS GRID ──────────────────────────────────────── */
.thoughts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 48px;
}
.thoughts-grid .wide {
  grid-column: span 2;
}
@media(max-width:960px) {
  .thoughts-grid { grid-template-columns: 1fr 1fr; }
  .thoughts-grid .wide { grid-column: span 2; }
}
@media(max-width:580px) {
  .thoughts-grid { grid-template-columns: 1fr; }
  .thoughts-grid .wide { grid-column: span 1; }
}

/* ── THOUGHT CARD ───────────────────────────────────────── */
.thought-card {
  background: var(--card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.thought-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.thought-card-accent { height: 3px; width: 100%; flex-shrink: 0; }
.thought-card-img { overflow: hidden; aspect-ratio: 16/9; }
.thought-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.thought-card:hover .thought-card-img img { transform: scale(1.04); }
.thought-card-body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.thought-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.thought-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(16px,2vw,22px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 12px;
  flex: 1;
}
.thought-card-title a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.thought-card-title a:hover { opacity: 0.7; }
.thought-card-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.45);
  margin-bottom: 20px;
  flex: 1;
}
.thought-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.card-read-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  transition: letter-spacing 0.2s;
}
.card-read-link:hover { letter-spacing: 0.16em; }

/* ── INSIGHT STRIP ──────────────────────────────────────── */
.insight-strip {
  background: var(--dark);
  border-top: 3px solid var(--cyan);
  padding: clamp(40px,5vw,64px) clamp(24px,6vw,80px);
}
.insight-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}
.insight-strip-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,180,216,0.08);
  padding: 8px 14px;
  border: 1px solid rgba(0,180,216,0.2);
  white-space: nowrap;
}
.insight-strip-content { flex: 1; min-width: 260px; }
.insight-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px,2.5vw,26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 8px;
}
.insight-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.5);
}

/* ── PAGINATION ─────────────────────────────────────────── */
.thoughts-pagination { margin-top: 48px; display: flex; justify-content: center; }
.thoughts-pagination .page-numbers {
  display: flex;
  gap: 4px;
  list-style: none;
}
.thoughts-pagination .page-numbers a,
.thoughts-pagination .page-numbers span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  transition: all 0.2s;
}
.thoughts-pagination .page-numbers a:hover { border-color: var(--pink); color: var(--pink); }
.thoughts-pagination .page-numbers .current { background: var(--pink); border-color: var(--pink); color: #fff; }

/* ── EMPTY STATE ────────────────────────────────────────── */
.thoughts-empty {
  text-align: center;
  padding: 80px 40px;
  max-width: 540px;
  margin: 0 auto;
}
.thoughts-empty-icon { font-size: 56px; margin-bottom: 24px; }
.thoughts-empty h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px,3vw,36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.thoughts-empty p { font-size: 16px; line-height: 1.7; color: rgba(0,0,0,0.45); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:900px) {
  .thoughts-hero-inner { grid-template-columns: 1fr; }
  .signal-block { flex-direction: row; gap: 24px; flex-wrap: wrap; }
  .signal-divider { width: 1px; height: auto; }
}
@media(max-width:600px) {
  .cat-filter-bar { top: 96px; }
  .post-hero { grid-template-columns: 1fr; }
  .insight-strip-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
}

/* ── H1 typewriter─────────────────────────────────────────── */
.hero-title { visibility: hidden; }
.hero-title.typing { visibility: visible; }