/* ==========================================================================
   DK NETWORK — DESIGN SYSTEM
   Professional, clean, high-contrast & authentic dev studio
   ========================================================================== */

:root {
  --bg-main: #09090b;
  --bg-surface: #121216;
  --bg-surface-elevated: #18181f;
  --bg-card: #131318;
  --bg-card-hover: #1c1c24;

  --border: #27272a;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-focus: #3f3f46;

  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  --accent-green: #22c55e;
  --accent-green-hover: #16a34a;
  --accent-green-bg: rgba(34, 197, 94, 0.08);
  --accent-green-border: rgba(34, 197, 94, 0.25);

  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-darker {
  background: #0d0d11;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.w-full {
  width: 100%;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-green);
  color: #040805;
  border-color: var(--accent-green);
}

.btn-primary:hover {
  background: var(--accent-green-hover);
  border-color: var(--accent-green-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn-header {
  background: var(--accent-green-bg);
  border-color: var(--accent-green-border);
  color: var(--accent-green);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-header:hover {
  background: var(--accent-green);
  color: #040805;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.12)) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.26));
}

.brand-logo-header {
  width: clamp(156px, 18vw, 210px);
  height: 42px;
}

.brand-logo-drawer {
  width: 196px;
  height: 44px;
}

.brand-logo-footer {
  width: 252px;
}

.brand-badge {
  background: #fff;
  color: #09090b;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 3px 7px;
  border-radius: 6px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}

.brand-name strong {
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-item:hover {
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--border);
  padding: 7px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 4rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-container {
  max-width: 900px;
  text-align: center;
}

.hero-logo-panel {
  width: min(100%, 660px);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.12)) drop-shadow(0 24px 54px rgba(0, 0, 0, 0.36));
}

.hero-logo-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
}

.hero-headline {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
  line-height: 1.15;
}

.hero-subline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subline strong {
  color: #fff;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Hero Quick Links to Real Sites */
.hero-links-bar {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hl-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.hl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}

.hl-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: var(--transition);
}

.hl-card:hover {
  background: var(--bg-surface-elevated);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hl-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.hl-icon {
  font-size: 0.85rem;
  color: var(--accent-green);
}

.hl-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.hl-url {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.35rem;
}

/* Editorial services */
.services-editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 0.4rem;
  padding-bottom: 2.35rem;
  border-bottom: 1px solid var(--border);
}

.services-editorial-head .section-kicker {
  margin-bottom: 0.8rem;
}

.services-editorial-head .section-title {
  max-width: 700px;
  margin: 0;
  text-align: left;
}

.services-editorial-intro p {
  max-width: 510px;
  margin-bottom: 1rem;
  font-size: 0.96rem;
  line-height: 1.75;
}

.services-editorial-intro a {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid var(--accent-green);
  font: 650 0.78rem/1.9 var(--font-heading);
}

.services-editorial-intro a:hover {
  color: var(--accent-green);
}

.service-editorial-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.service-editorial-item:hover {
  border-color: rgba(34, 197, 94, 0.55);
}

.service-number {
  padding-top: 0.35rem;
  color: var(--accent-green);
  font: 700 0.7rem/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.service-editorial-copy h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  letter-spacing: -0.025em;
}

.service-editorial-copy p {
  max-width: 640px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  padding-top: 0.25rem;
  list-style: none;
}

.service-deliverables li {
  position: relative;
  padding-left: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.74rem;
  line-height: 1.45;
}

.service-deliverables li::before {
  content: '';
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--accent-green);
  border-radius: 50%;
}

.services-human-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.15rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.35rem 1.45rem;
  background: #0d1410;
  border: 1px solid var(--accent-green-border);
  border-radius: var(--radius-md);
}

.services-human-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #07110a;
  background: var(--accent-green);
  border-radius: 50%;
  font: 800 0.72rem/1 var(--font-heading);
}

.services-human-note strong {
  display: block;
  margin-bottom: 0.18rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.services-human-note p {
  max-width: 690px;
  font-size: 0.78rem;
  line-height: 1.55;
}

/* Tech Stack Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
}

.tech-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.tech-logo {
  height: 48px;
  display: flex;
  align-items: center;
}

.tech-card h3 {
  font-size: 1.05rem;
  color: #fff;
}

.tech-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Projects List */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  transition: var(--transition);
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--bg-card-hover);
}

.pc-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.pc-title {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.pc-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pc-desc strong {
  color: #fff;
}

.pc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.pc-meta-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pc-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pc-link {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--accent-green);
  word-break: break-all;
}

.pc-link:hover {
  text-decoration: underline;
}

.pc-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.pc-tags span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
}

/* Portfolio Client Card (JVI Postes) */
.portfolio-client-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.pcc-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.pcc-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.pcc-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pcc-features {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.88rem;
}

.pcc-features strong {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pcc-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--text-secondary);
}

.pcc-features ul li strong {
  display: inline;
  color: #fff;
}

.pcc-preview-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pcc-url-bar {
  background: #09090b;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pcc-preview-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pcc-brand-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: #08783f;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

.pcc-quote {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
}

.pcc-preview-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pcc-tag-footer {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-green);
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
}

/* Logos Grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.logo-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}

.logo-box span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* CTA Direct Box */
.cta-direct-box {
  background: #111814;
  border: 1px solid var(--accent-green-border);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.cta-direct-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  margin-bottom: 1rem;
}

.cta-direct-box p {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 2.25rem auto;
}

.contact-channels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #060607;
  border-top: 1px solid var(--border);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.f-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.f-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.f-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.f-contact-info a:hover {
  color: #fff;
}

.f-col h3 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.f-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.f-links a:hover {
  color: #fff;
}

.footer-sub {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.back-to-top:hover {
  color: #fff;
}

/* WhatsApp Floating Button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--accent-green);
  color: #040805;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  background: var(--accent-green-hover);
  color: #000;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #0d0d10;
  border-left: 1px solid var(--border);
  z-index: 200;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.drawer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.drawer-title strong {
  color: #fff;
}

.drawer-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.drawer-link:hover {
  color: #fff;
}

.drawer-bottom {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .hl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-editorial-head {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-editorial-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .service-deliverables {
    grid-column: 2;
  }
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-card {
    grid-template-columns: 1fr;
  }
  .portfolio-client-card {
    grid-template-columns: 1fr;
  }
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .brand-logo-header {
    width: 172px;
    height: 40px;
  }
  .btn-header {
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .btn-header span {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hl-grid {
    grid-template-columns: 1fr;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .services-editorial-head {
    padding-bottom: 1.65rem;
  }
  .service-editorial-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1.55rem 0;
  }
  .service-deliverables {
    grid-column: 2;
  }
  .services-human-note {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .services-human-note .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================== 
   Project showcases, real-site preview and official brand marks
   ========================================================================== */

.brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: #07110a;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-mark rect {
  fill: var(--accent-green);
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1;
}

.brand-mark path {
  fill: currentColor;
}

.brand:hover .brand-mark {
  transform: rotate(-3deg) scale(1.04);
}

.brand-mark,
.brand-mark rect {
  transition: var(--transition);
}

.showcase-dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.showcase-box {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.showcase-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.browser-window {
  min-width: 0;
  overflow: hidden;
  background: #0b0b0e;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.showcase-box .browser-window {
  margin: 1.2rem 1.2rem 0;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.browser-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 43px;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  color: #8b8b94;
  background: #111116;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3a42;
}

.browser-dots span:first-child { background: #ef6a5b; }
.browser-dots span:nth-child(2) { background: #e8bd55; }
.browser-dots span:last-child { background: #58bd73; }

.browser-address {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  overflow: hidden;
  padding: 0.28rem 0.65rem;
  color: #8d8d98;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font: 500 0.64rem/1.2 var(--font-mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secure-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.browser-btn {
  padding: 0.3rem 0.55rem;
  color: #d4d4d8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font: 600 0.62rem/1 var(--font-mono);
  white-space: nowrap;
}

.browser-btn:hover {
  color: #07110a;
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.real-site-screen {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  padding: 1.4rem;
}

.real-site-screen::before,
.real-site-screen::after {
  position: absolute;
  content: '';
  pointer-events: none;
  border-radius: 50%;
  filter: blur(4px);
}

.real-site-screen::before {
  top: -130px;
  right: -90px;
  width: 280px;
  height: 280px;
  background: rgba(34, 197, 94, 0.13);
}

.real-site-screen::after {
  right: 25%;
  bottom: -120px;
  width: 220px;
  height: 220px;
  background: rgba(52, 211, 153, 0.08);
}

.dark-theme-screen {
  background: radial-gradient(circle at 15% 8%, #17251d 0, #0b1110 45%, #080b09 100%);
}

.purple-theme-screen {
  background: radial-gradient(circle at 15% 8%, #272047 0, #120f20 48%, #0b0912 100%);
}

.purple-theme-screen::before { background: rgba(139, 92, 246, 0.18); }
.purple-theme-screen::after { background: rgba(79, 70, 229, 0.12); }

.screen-top-nav,
.screen-hero-area,
.screen-features-row {
  position: relative;
  z-index: 1;
}

.screen-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.48);
}

.screen-brand {
  color: #fff;
  font: 800 0.78rem/1 var(--font-heading);
}

.screen-brand span { color: var(--accent-green); font-weight: 600; }
.purple-theme-screen .screen-brand span { color: #a78bfa; }

.screen-menu {
  overflow: hidden;
  font-size: 0.55rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screen-hero-area {
  max-width: 420px;
  padding: 3.1rem 0 2.3rem;
}

.screen-badge {
  display: inline-flex;
  padding: 0.3rem 0.55rem;
  color: #a7f3d0;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 999px;
  font: 600 0.56rem/1.2 var(--font-mono);
}

.purple-theme-screen .screen-badge {
  color: #ddd6fe;
  background: rgba(139, 92, 246, 0.13);
  border-color: rgba(167, 139, 250, 0.25);
}

.screen-hero-area h3 {
  max-width: 410px;
  margin: 0.8rem 0 0.6rem;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  letter-spacing: -0.03em;
}

.screen-hero-area p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.7rem;
  line-height: 1.6;
}

.screen-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.screen-btn-primary,
.screen-btn-sec {
  padding: 0.48rem 0.72rem;
  border-radius: 6px;
  font: 700 0.58rem/1 var(--font-heading);
}

.screen-btn-primary {
  color: #07110a;
  background: var(--accent-green);
}

.purple-theme-screen .screen-btn-primary {
  color: #fff;
  background: #7c3aed;
}

.screen-btn-sec {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.screen-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.screen-feat-chip {
  padding: 0.38rem 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  font-size: 0.54rem;
}

.showcase-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem;
}

.sc-badge-tag,
.jvi-client-tag {
  margin-bottom: 0.55rem;
  color: var(--accent-green);
  font: 700 0.68rem/1.3 var(--font-mono);
  letter-spacing: 0.08em;
}

.showcase-content h3,
.jvi-content-desc h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.showcase-content p,
.jvi-content-desc > p {
  margin-bottom: 1.35rem;
  color: var(--text-secondary);
  font-size: 0.91rem;
  line-height: 1.7;
}

.site-direct-link {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 0.85rem 1rem;
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font: 500 0.73rem/1.5 var(--font-mono);
  word-break: break-word;
}

.site-direct-link strong { color: var(--accent-green); }

.site-direct-link:hover {
  color: #fff;
  background: rgba(34, 197, 94, 0.06);
  border-color: var(--accent-green-border);
}

/* JVI production case */
.jvi-showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: 2.2rem;
  padding: 1.4rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(8, 120, 63, 0.025));
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.jvi-live-preview {
  position: relative;
  display: block;
  min-height: 475px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #143528;
}

.jvi-preview-photo,
.jvi-preview-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.jvi-preview-photo {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.jvi-preview-shade {
  z-index: -2;
  display: block;
  background:
    linear-gradient(90deg, rgba(4, 24, 15, 0.9) 0%, rgba(4, 24, 15, 0.63) 50%, rgba(4, 24, 15, 0.24) 100%),
    linear-gradient(0deg, rgba(1, 10, 6, 0.58) 0%, transparent 50%);
}

.jvi-live-preview:hover .jvi-preview-photo { transform: scale(1.035); }

.jvi-preview-nav {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  color: #1f2937;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.jvi-preview-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #1f4e39;
  font: 800 0.7rem/1 var(--font-heading);
  letter-spacing: 0.09em;
}

.jvi-preview-brand svg {
  width: 49px;
  height: 28px;
  fill: #08783f;
}

.jvi-preview-menu {
  color: #5c665f;
  font-size: 0.57rem;
  font-weight: 600;
  white-space: nowrap;
}

.jvi-preview-buy {
  padding: 0.58rem 0.75rem;
  color: #fff;
  background: #08783f;
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  white-space: nowrap;
}

.jvi-preview-copy {
  display: flex;
  max-width: 460px;
  flex-direction: column;
  align-items: flex-start;
  padding: 4rem 2.2rem 2rem;
}

.jvi-preview-kicker {
  margin-bottom: 0.75rem;
  color: #d4f4df;
  font: 700 0.62rem/1 var(--font-mono);
  letter-spacing: 0.12em;
}

.jvi-preview-copy > strong {
  color: #fff;
  font: 700 clamp(1.8rem, 3.3vw, 2.8rem)/1.02 var(--font-heading);
  letter-spacing: -0.04em;
}

.jvi-preview-copy > strong em {
  color: #85d6a4;
  font-style: normal;
}

.jvi-preview-copy > span:not(.jvi-preview-kicker):not(.jvi-preview-actions) {
  max-width: 390px;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  line-height: 1.55;
}

.jvi-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.jvi-preview-actions span {
  padding: 0.58rem 0.75rem;
  color: #143528;
  background: #fff;
  border-radius: 6px;
  font: 700 0.58rem/1 var(--font-heading);
}

.jvi-preview-actions span:last-child {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.23);
}

.jvi-preview-open {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.7rem;
  color: #fff;
  background: rgba(3, 18, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font: 600 0.6rem/1 var(--font-mono);
}

.jvi-content-desc {
  padding: 1.25rem 1rem 1.25rem 0;
}

.jvi-points-grid {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.jp-item {
  position: relative;
  display: grid;
  gap: 0.16rem;
  padding: 0.75rem 0.8rem 0.75rem 2.1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
}

.jp-item::before {
  position: absolute;
  top: 0.88rem;
  left: 0.75rem;
  width: 8px;
  height: 8px;
  content: '';
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.jp-item strong {
  color: #fff;
  font-size: 0.82rem;
}

.jp-item span {
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.jvi-delivery-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin: 1rem 0 1.25rem;
}

.jvi-delivery-strip span {
  padding: 0.3rem 0.5rem;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.065);
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 999px;
  font: 600 0.61rem/1 var(--font-mono);
}

.jvi-btn-area .btn { width: 100%; }

/* Correct brand logos */
.logos-grid-refined {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-logo-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.brand-logo-card:hover {
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand-svg-box {
  display: flex;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.brand-svg-box svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.brand-svg-box img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-logo-card > div:last-child {
  display: grid;
  min-width: 0;
  gap: 0.15rem;
}

.brand-logo-card strong {
  overflow: hidden;
  color: #fff;
  font: 700 0.93rem/1.25 var(--font-heading);
  text-overflow: ellipsis;
}

.brand-logo-card > div:last-child span {
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.brand-whatsapp .brand-svg-box { color: #25d366; background: rgba(37, 211, 102, 0.07); }
.brand-meta .brand-svg-box { color: #0866ff; background: rgba(8, 102, 255, 0.08); }
.brand-discord .brand-svg-box { color: #5865f2; background: rgba(88, 101, 242, 0.09); }
.brand-shopee .brand-svg-box { color: #ee4d2d; background: rgba(238, 77, 45, 0.08); }
.brand-amazon .brand-svg-box { color: #ff9900; background: rgba(255, 153, 0, 0.08); }
.brand-mercadolivre .brand-svg-box { background: #ffe600; border-color: rgba(255, 230, 0, 0.4); }

@media (max-width: 1024px) {
  .showcase-dual {
    grid-template-columns: 1fr;
  }

  .showcase-box {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
  }

  .showcase-box .browser-window {
    align-self: stretch;
    margin: 1rem 0 1rem 1rem;
  }

  .real-site-screen { min-height: 100%; }

  .jvi-showcase-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .jvi-content-desc { padding: 1.8rem 0.4rem 0.4rem; }
  .jvi-points-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .jvi-btn-area .btn { width: auto; }
}

@media (max-width: 768px) {
  .showcase-box { display: flex; }

  .showcase-box .browser-window {
    margin: 0.8rem 0.8rem 0;
  }

  .browser-address { justify-content: flex-start; }
  .real-site-screen { min-height: 300px; }

  .jvi-showcase-card {
    padding: 0.8rem;
    border-radius: 16px;
  }

  .jvi-live-preview { min-height: 430px; }
  .jvi-preview-menu { display: none; }
  .jvi-preview-copy { padding: 3.5rem 1.4rem 2rem; }
  .jvi-points-grid { grid-template-columns: 1fr; }
  .logos-grid-refined { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .brand-logo-header {
    width: 146px;
    height: 38px;
  }
  .header-right {
    gap: 0.65rem;
  }
  .hero-logo-panel {
    margin-bottom: 1.55rem;
  }
  .brand-logo-footer {
    width: 100%;
    max-width: 250px;
  }
  .wa-float {
    display: none;
  }
  .service-deliverables {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .services-human-note {
    padding: 1.15rem;
  }
  .brand-name { font-size: 0.96rem; }
  .brand-mark { width: 34px; height: 34px; flex-basis: 34px; }
  .browser-bar { grid-template-columns: auto minmax(0, 1fr); }
  .browser-btn { display: none; }
  .screen-menu { display: none; }
  .screen-hero-area { padding-top: 2.3rem; }
  .jvi-live-preview { min-height: 400px; }
  .jvi-preview-nav { height: 60px; padding: 0 0.85rem; }
  .jvi-preview-brand svg { width: 41px; height: 23px; }
  .jvi-preview-buy { font-size: 0.52rem; }
  .jvi-preview-copy { padding: 3rem 1rem 2rem; }
  .jvi-preview-copy > strong { font-size: 1.75rem; }
  .jvi-preview-open { display: none; }
  .jvi-btn-area .btn { width: 100%; }
  .logos-grid-refined { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-box,
  .jvi-preview-photo,
  .brand-logo-card,
  .brand-logo,
  .hero-logo-panel,
  .brand-mark {
    transition: none;
  }
}

/* Buzzly production cases */
.buzzly-cases-list {
  display: grid;
  gap: 2rem;
}

.buzzly-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
  align-items: center;
  gap: 2.2rem;
  padding: 1.4rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(34, 197, 94, 0.018));
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.buzzly-case-card--reverse .browser-window {
  grid-column: 2;
  grid-row: 1;
}

.buzzly-case-card--reverse .buzzly-case-content {
  grid-column: 1;
  grid-row: 1;
  padding-right: 0;
  padding-left: 1rem;
}

.buzzly-live-preview {
  position: relative;
  display: block;
  min-height: 475px;
  overflow: hidden;
  isolation: isolate;
}

.buzzly-preview-nav {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.2rem;
  color: #334657;
  background: rgba(251, 253, 252, 0.96);
  border-bottom: 1px solid #e5eeeb;
}

.buzzly-preview-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.buzzly-preview-brand > img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(7, 24, 39, 0.15);
}

.buzzly-preview-brand > span {
  display: grid;
  gap: 0.16rem;
}

.buzzly-preview-brand strong {
  color: #102638;
  font: 800 0.83rem/1 var(--font-heading);
}

.buzzly-preview-brand small {
  color: #71808f;
  font-size: 0.48rem;
}

.buzzly-preview-menu {
  color: #5b6b78;
  font-size: 0.53rem;
  font-weight: 600;
  white-space: nowrap;
}

.buzzly-preview-login {
  padding: 0.55rem 0.72rem;
  color: #fff;
  background: linear-gradient(135deg, #19c990, #0aaa78);
  border-radius: 7px;
  font: 700 0.54rem/1 var(--font-heading);
}

.buzzly-preview-open {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  z-index: 8;
  padding: 0.48rem 0.68rem;
  color: #fff;
  background: rgba(5, 20, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font: 600 0.57rem/1 var(--font-mono);
}

/* Buzzly Cloud API preview */
.buzzly-cloud-preview {
  color: #091a2a;
  background:
    radial-gradient(circle at 8% 5%, #dbfff2 0, transparent 36%),
    linear-gradient(180deg, #fbfdfc, #f5faf8);
}

.buzzly-cloud-preview::before,
.buzzly-cloud-preview::after {
  position: absolute;
  z-index: -1;
  content: '';
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.48;
}

.buzzly-cloud-preview::before {
  bottom: -75px;
  left: -60px;
  width: 190px;
  height: 190px;
  background: #78eec7;
}

.buzzly-cloud-preview::after {
  top: 90px;
  right: -80px;
  width: 170px;
  height: 170px;
  background: #ffc699;
}

.buzzly-cloud-body {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.25rem;
  align-items: center;
  min-height: 407px;
  padding: 1.4rem;
}

.buzzly-cloud-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.buzzly-cloud-kicker,
.buzzly-desktop-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.5rem;
  color: #167b5e;
  background: #effcf7;
  border: 1px solid #bfe7d9;
  border-radius: 999px;
  font: 700 0.48rem/1 var(--font-mono);
  letter-spacing: 0.05em;
}

.buzzly-cloud-kicker i {
  width: 5px;
  height: 5px;
  background: #17bd87;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(23, 189, 135, 0.12);
}

.buzzly-cloud-copy > strong {
  margin: 0.85rem 0 0.65rem;
  color: #091a2a;
  font: 800 clamp(1.5rem, 2.7vw, 2.2rem)/1.04 var(--font-heading);
  letter-spacing: -0.045em;
}

.buzzly-cloud-copy > strong em {
  color: #17bd87;
  font-style: normal;
}

.buzzly-cloud-copy > span:not(.buzzly-cloud-kicker):not(.buzzly-cloud-actions):not(.buzzly-cloud-trust) {
  color: #5d6e7c;
  font-size: 0.65rem;
  line-height: 1.6;
}

.buzzly-cloud-actions,
.buzzly-desktop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.buzzly-cloud-actions b,
.buzzly-desktop-actions b {
  padding: 0.5rem 0.62rem;
  color: #fff;
  background: linear-gradient(135deg, #19c990, #0aaa78);
  border-radius: 6px;
  font: 700 0.5rem/1 var(--font-heading);
}

.buzzly-cloud-actions b:last-child,
.buzzly-desktop-actions b:last-child {
  color: #173045;
  background: #fff;
  border: 1px solid #dfe8e6;
}

.buzzly-cloud-trust {
  margin-top: 0.8rem;
  color: #61717e;
  font-size: 0.43rem;
  font-weight: 600;
}

.buzzly-product-window {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dde9e5;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(15, 52, 42, 0.17);
  transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
}

.buzzly-product-top {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 4px;
  padding: 0 0.55rem;
  background: #f7f9f8;
  border-bottom: 1px solid #e9eeee;
}

.buzzly-product-top i {
  width: 5px;
  height: 5px;
  background: #d6dfdc;
  border-radius: 50%;
}

.buzzly-product-top small {
  margin: auto;
  color: #8a969e;
  font-size: 0.42rem;
  transform: translateX(-10px);
}

.buzzly-product-body {
  display: grid;
  grid-template-columns: 34px minmax(95px, 0.8fr) minmax(120px, 1.2fr);
  height: 260px;
}

.buzzly-product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding-top: 8px;
  background: #071827;
}

.buzzly-product-sidebar img {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
  object-fit: cover;
  border-radius: 6px;
}

.buzzly-product-sidebar i {
  width: 11px;
  height: 3px;
  background: #536b7e;
  border-radius: 999px;
}

.buzzly-product-sidebar i:first-of-type { background: #17bd87; }

.buzzly-chat-list {
  overflow: hidden;
  background: #fff;
  border-right: 1px solid #e8eeee;
}

.buzzly-chat-list > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.55rem 0.4rem;
  color: #263c4c;
  font-size: 0.48rem;
}

.buzzly-chat-list > strong b {
  padding: 2px 4px;
  color: #0b9f70;
  background: #e7faf3;
  border-radius: 7px;
  font-size: 0.38rem;
}

.buzzly-chat-list > small {
  display: block;
  margin: 0 0.45rem 0.35rem;
  padding: 0.35rem;
  color: #99a4a9;
  background: #f3f6f5;
  border-radius: 4px;
  font-size: 0.38rem;
}

.buzzly-chat-list > span {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.35rem;
  align-items: center;
  padding: 0.5rem;
  border-left: 2px solid transparent;
}

.buzzly-chat-list > span.selected {
  background: #eefaf6;
  border-color: #17bd87;
}

.buzzly-chat-list > span > i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #138965;
  background: #daf5eb;
  border-radius: 50%;
  font: 700 0.35rem/1 var(--font-body);
}

.buzzly-chat-list > span b {
  overflow: hidden;
  color: #314654;
  font-size: 0.4rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.buzzly-chat-list > span small {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  color: #89959d;
  font-size: 0.34rem;
  font-weight: 400;
  text-overflow: ellipsis;
}

.buzzly-chat-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.65rem;
  background: #fbfdfc;
}

.buzzly-chat-panel > strong {
  padding-bottom: 0.45rem;
  color: #263c4c;
  border-bottom: 1px solid #e8eeee;
  font-size: 0.45rem;
}

.buzzly-chat-panel > strong small {
  display: block;
  margin-top: 2px;
  color: #0b9f70;
  font-size: 0.33rem;
}

.buzzly-chat-bubble {
  max-width: 90%;
  padding: 0.45rem;
  color: #415467;
  background: #fff;
  border: 1px solid #e4ecea;
  border-radius: 7px 7px 7px 2px;
  font-size: 0.38rem;
}

.buzzly-chat-bubble.out {
  align-self: flex-end;
  color: #0a775a;
  background: #e7faf3;
  border-color: #d2f0e5;
  border-radius: 7px 7px 2px;
}

.buzzly-chat-panel > small:last-child {
  margin-top: auto;
  padding: 0.42rem;
  color: #99a4a9;
  background: #fff;
  border: 1px solid #e4ecea;
  border-radius: 5px;
  font-size: 0.34rem;
}

/* Buzzly desktop preview */
.buzzly-desktop-preview {
  color: #fff;
  background: #0a0e27;
}

.buzzly-preview-nav--dark {
  color: #fff;
  background: rgba(10, 14, 39, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
}

.buzzly-preview-nav--dark .buzzly-preview-brand strong { color: #fff; }
.buzzly-preview-nav--dark .buzzly-preview-brand small,
.buzzly-preview-nav--dark .buzzly-preview-menu { color: #8e98b7; }
.buzzly-preview-nav--dark .buzzly-preview-login { background: #25d366; }

.buzzly-desktop-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1rem;
  align-items: center;
  min-height: 407px;
  overflow: hidden;
  padding: 1.7rem;
}

.buzzly-desktop-body::before,
.buzzly-desktop-body::after {
  position: absolute;
  content: '';
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.28;
}

.buzzly-desktop-body::before {
  top: -60px;
  right: 18%;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.buzzly-desktop-body::after {
  bottom: -100px;
  left: 20%;
  width: 210px;
  height: 210px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.buzzly-desktop-copy,
.buzzly-rocket-card {
  position: relative;
  z-index: 2;
}

.buzzly-desktop-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.buzzly-desktop-kicker {
  color: #9ae6b4;
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.22);
}

.buzzly-desktop-copy > strong {
  margin: 0.85rem 0 0.65rem;
  color: #fff;
  font: 800 clamp(1.45rem, 2.6vw, 2.1rem)/1.05 var(--font-heading);
  letter-spacing: -0.04em;
}

.buzzly-desktop-copy > strong em {
  color: #25d366;
  font-style: normal;
}

.buzzly-desktop-copy > span:not(.buzzly-desktop-kicker):not(.buzzly-desktop-actions):not(.buzzly-desktop-stats) {
  color: #99a2bd;
  font-size: 0.65rem;
  line-height: 1.6;
}

.buzzly-desktop-actions b:last-child {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.buzzly-desktop-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.buzzly-desktop-stats b {
  color: #25d366;
  font-size: 0.5rem;
}

.buzzly-desktop-stats small {
  display: block;
  margin-top: 2px;
  color: #7f89a6;
  font-size: 0.35rem;
  font-weight: 500;
}

.buzzly-rocket-card {
  display: grid;
  min-height: 270px;
  place-items: center;
}

.buzzly-rocket-card::before {
  position: absolute;
  width: 230px;
  height: 230px;
  content: '';
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent 68%);
  border-radius: 50%;
}

.buzzly-rocket-card img {
  position: relative;
  z-index: 2;
  width: min(230px, 92%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.buzzly-desktop-preview:hover .buzzly-rocket-card img {
  transform: rotate(0) scale(1.025);
}

.buzzly-rocket-card > i {
  position: absolute;
  z-index: 3;
  width: 7px;
  height: 7px;
  background: #ffd84d;
  border-radius: 50%;
  box-shadow: 0 0 13px #ffd84d;
}

.buzzly-rocket-card > i:first-child { top: 12%; right: 13%; }
.buzzly-rocket-card > i:nth-child(2) { bottom: 16%; left: 3%; width: 5px; height: 5px; }
.buzzly-rocket-card > i:nth-child(3) { top: 31%; left: 7%; width: 4px; height: 4px; }

.buzzly-case-content {
  align-items: flex-start;
  padding: 1.25rem 1rem 1.25rem 0;
}

.case-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
}

.case-feature-list span {
  padding: 0.34rem 0.52rem;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.065);
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 999px;
  font: 600 0.61rem/1 var(--font-mono);
}

.case-project-link {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .buzzly-case-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .buzzly-case-card--reverse .browser-window,
  .buzzly-case-card--reverse .buzzly-case-content {
    grid-column: 1;
  }

  .buzzly-case-card--reverse .browser-window { grid-row: 1; }
  .buzzly-case-card--reverse .buzzly-case-content { grid-row: 2; }

  .buzzly-case-content,
  .buzzly-case-card--reverse .buzzly-case-content {
    padding: 1.8rem 0.4rem 0.4rem;
  }

  .case-project-link { width: auto; }
}

@media (max-width: 768px) {
  .buzzly-case-card { padding: 0.8rem; border-radius: 16px; }
  .buzzly-live-preview { min-height: 430px; }
  .buzzly-preview-menu { display: none; }
  .buzzly-cloud-body { grid-template-columns: 1fr; min-height: 362px; }
  .buzzly-product-window { display: none; }
  .buzzly-cloud-copy { max-width: 390px; }
  .buzzly-cloud-copy > strong { font-size: 2rem; }
  .buzzly-desktop-body { grid-template-columns: 1fr 0.68fr; min-height: 362px; padding: 1.3rem; }
  .buzzly-rocket-card img { width: min(180px, 100%); }
}

@media (max-width: 520px) {
  .buzzly-preview-nav { height: 60px; padding: 0 0.75rem; }
  .buzzly-preview-brand > img { width: 32px; height: 32px; }
  .buzzly-preview-brand small { display: none; }
  .buzzly-preview-login { font-size: 0.49rem; }
  .buzzly-live-preview { min-height: 390px; }
  .buzzly-cloud-body { min-height: 330px; padding: 1.15rem; }
  .buzzly-cloud-copy > strong { font-size: 1.7rem; }
  .buzzly-cloud-trust { line-height: 1.5; }
  .buzzly-desktop-body { display: block; min-height: 330px; padding: 1.2rem; }
  .buzzly-desktop-copy { max-width: 290px; }
  .buzzly-desktop-copy > strong { font-size: 1.65rem; }
  .buzzly-rocket-card { position: absolute; right: -32px; bottom: -44px; min-height: 0; opacity: 0.33; }
  .buzzly-rocket-card img { width: 170px; }
  .buzzly-preview-open { display: none; }
  .case-project-link { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .buzzly-rocket-card img { transition: none; }
}
