/* =============================================================
   STYLE.CSS — Personal Portfolio
   Table of Contents:
   1.  Reset & Variables
   2.  Base & Typography
   3.  Layout Utilities
   4.  Navbar
   5.  Footer & Back to Top
   6.  Section Utilities
   7.  Page Hero (shared)
   8.  Section Label Divider
   9.  Card Component (shared)
   10. Avatar & Author Row
   11. CTA Link & HR Divider
   12. HOME — Split Hero
   13. HOME — Hero Portrait
   14. HOME — Portfolio Preview
   15. ABOUT — Hero Section
   16. ABOUT — Photo Strip
   17. ABOUT — Skills Split
   18. ABOUT — Donut Chart
   19. ABOUT — Random Facts
   20. ABOUT — Bar Chart
   21. ABOUT — Feature Rows
   22. PORTFOLIO — Hero Mockup
   23. PORTFOLIO — Card Grid & Thumbnails
   24. PORTFOLIO — Mockup Elements
   25. BLOG LIST — Column & Articles
   26. BLOG DETAILS — Reading Progress
   27. BLOG DETAILS — Post Header
   28. BLOG DETAILS — Post Body
   29. BLOG DETAILS — Code Block & Callout
   30. BLOG DETAILS — Post Footer & Share
   31. BLOG DETAILS — More From Blog
   32. CONTACT — Hero
   33. CONTACT — Availability Badge
   34. CONTACT — Social Grid
   35. CONTACT — Form
   36. Animations & Keyframes
============================================================= */


/* ─────────────────────────────────────────────
   1. RESET & VARIABLES
───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --nav-bg:      #111111;
  --body:        #333333;
  --muted:       #757575;
  --section-gray:#FAFAFA;
  --footer-gray: #F5F5F5;
  --white:       #FFFFFF;
  --card-shadow: rgba(0,0,0,0.16) 0px 1px 5px 0px;
  --font:        'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-w:       1170px;
  --col-blog:    680px;
  --radius:      8px;
  --radius-card: 12px;
}


/* ─────────────────────────────────────────────
   2. BASE & TYPOGRAPHY
───────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

code {
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 17px;
}


/* ─────────────────────────────────────────────
   3. LAYOUT UTILITIES
───────────────────────────────────────────── */
.page-content {
  margin-top: 92px;
}

.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.bg-white { background: var(--white); }
.bg-gray  { background: var(--section-gray); }

.section        { padding: 96px 0; }
.section--hero  { padding: 80px 0 64px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.section--bar   { padding: 96px 0 80px; }

.hidden { display: none; }
.honeypot { display: none; }

.section-cat-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}


/* ─────────────────────────────────────────────
   4. NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 6px;
}

.nav-logo-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo-title {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 36px;
  margin: 0 auto;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  font-weight: 300;
  text-transform: lowercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-social {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-social a {
  color: rgba(255,255,255,0.7);
  display: flex;
  transition: color 0.2s, transform 0.2s;
}
.nav-social a:hover { color: #fff; transform: translateY(-1px); }

/* Mega Menu */
.nav-item-mega {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-mega-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  font-weight: 300;
  text-transform: lowercase;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-mega-trigger:hover,
.nav-mega-trigger.active { color: #fff; }

.nav-chevron {
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.nav-item-mega:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  padding-top: 20px;
  z-index: 200;
}

.nav-item-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  padding: 24px;
  min-width: 520px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mega-item:hover {
  background: rgba(255,255,255,0.06);
}

.mega-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.mega-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.mega-desc {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
}

.mega-item:hover .mega-title {
  color: #fff;
}

.mega-item:hover .mega-desc {
  color: rgba(255,255,255,0.7);
}

.mega-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s;
}

.mega-view-all:hover {
  color: #fff;
}

.mega-view-all svg {
  transition: transform 0.2s;
}

.mega-view-all:hover svg {
  transform: translateX(3px);
}


/* ─────────────────────────────────────────────
   5. FOOTER & BACK TO TOP
───────────────────────────────────────────── */
.footer {
  background: var(--footer-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer-container {
  width: 100%;
  max-width: 1280px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  text-transform: lowercase;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--body); }

.back-to-top {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--footer-gray);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.back-to-top:hover { background: #e8e8e8; color: var(--body); }


/* ─────────────────────────────────────────────
   6. SECTION UTILITIES
───────────────────────────────────────────── */
.page-title {
  font-size: clamp(72px, 8vw, 102px);
  font-weight: 800;
  color: var(--body);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
}

.lead {
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.body-text {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ─────────────────────────────────────────────
   7. PAGE HERO (shared two-column layout)
───────────────────────────────────────────── */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}


/* ─────────────────────────────────────────────
   8. SECTION LABEL DIVIDER
───────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.15);
}

.section-label span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}


/* ─────────────────────────────────────────────
   9. CARD COMPONENT (shared)
───────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  display: block;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0,0,0,0.22) 0px 8px 24px 0px;
}

.card-thumb {
  width: 100%;
  aspect-ratio: 330 / 184;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-body {
  padding: 16px 40px 20px 16px;
  position: relative;
}

.card-arrow {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 20px;
  height: 20px;
  color: #bbb;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.card:hover .card-arrow { opacity: 1; transform: translateX(0); }

.card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--body);
  line-height: 1.3;
  margin-bottom: 4px;
}

.card-cat {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


/* ─────────────────────────────────────────────
   10. AVATAR & AUTHOR ROW
───────────────────────────────────────────── */
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #222 0%, #444 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--body);
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.author-date {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
}

.read-time {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.read-time::before { content: '·'; color: rgba(0,0,0,0.25); }


/* ─────────────────────────────────────────────
   11. CTA LINK & HR DIVIDER
───────────────────────────────────────────── */
.cta-link {
  font-size: 18px;
  font-weight: 300;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
  display: inline-block;
}
.cta-link:hover { opacity: 0.55; }

.divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 0;
}


/* ─────────────────────────────────────────────
   12. HOME — SPLIT HERO
───────────────────────────────────────────── */
.hero {
  height: calc(100vh - 130px);
  min-height: 540px;
  display: flex;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-panel {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 64px;
  cursor: pointer;
  transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
  position: relative;
  color: var(--body);
}

.hero-panel--left { justify-content: flex-end; }
.hero-panel--right { justify-content: flex-start; }

.hero-panel--right::before {
  content: '<html>\A height:180px;\A .class="jedi">\A CSS3  HTML5\A color:#000;\A jQuery\A function()\A const ai =\A  new Bot();';
  white-space: pre;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 40px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 2;
  color: rgba(0,0,0,0.07);
  pointer-events: none;
  letter-spacing: 0.03em;
}

.hero:hover .hero-panel--left  { flex: 0.7; }
.hero:hover .hero-panel--right { flex: 0.7; }
.hero-panel--left:hover  { flex: 1.4 !important; }
.hero-panel--right:hover { flex: 1.4 !important; }

.hero-panel-inner { max-width: 340px; }
.hero-panel--left  .hero-panel-inner { text-align: right; }
.hero-panel--right .hero-panel-inner { text-align: left; }

.hero-h1 {
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 800;
  color: var(--body);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 18px;
  transition: color 0.2s;
}
.hero-panel--left:hover  .hero-h1,
.hero-panel--right:hover .hero-h1 { color: #111; }

.hero-h1 .bracket {
  font-weight: 300;
  color: #aaa;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.55;
}

.hero::after {
  content: '';
  position: absolute;
  top: 60px; bottom: 60px;
  left: 50%;
  width: 1px;
  background: rgba(0,0,0,0.1);
  pointer-events: none;
  z-index: 1;
}


/* ─────────────────────────────────────────────
   13. HOME — HERO PORTRAIT
───────────────────────────────────────────── */
.hero-portrait {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 340px;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.hero-avatar {
  width: 280px;
  height: 420px;
  position: relative;
}

.avatar-shape {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.avatar-initials {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #222;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -2px;
    overflow: hidden;
    padding: 20px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.75;
}

.avatar-blob-1 { width: 60px; height: 60px; background: #4ECDC4; top: 80px;  right: 20px; }
.avatar-blob-2 { width: 40px; height: 40px; background: #FF6B6B; top: 60px;  left: 30px;  }
.avatar-blob-3 { width: 28px; height: 28px; background: #FFE66D; top: 140px; right: 10px; }


/* ─────────────────────────────────────────────
   14. HOME — PORTFOLIO PREVIEW
───────────────────────────────────────────── */
.portfolio-preview {
  background: var(--section-gray);
  padding: 80px 0;
}

.view-all-wrap { text-align: center; margin-top: 48px; }

.view-all {
  font-size: 18px;
  font-weight: 300;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.view-all:hover { opacity: 0.6; }

/* Home card thumbnails */
.thumb-wp    { background: linear-gradient(135deg, #21759B 0%, #157EB5 100%); }
.thumb-ai    { background: linear-gradient(135deg, #6C3483 0%, #9B59B6 100%); }
.thumb-react { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }

.card-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}

/* Home — mini mock elements */
.mock-wp {
  width: 85%;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.mock-wp-bar { display: flex; gap: 5px; margin-bottom: 10px; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot.r { background: #FF5F57; }
.mock-dot.y { background: #FFBD2E; }
.mock-dot.g { background: #28CA41; }
.mock-wp-url { background: #f0f0f0; border-radius: 4px; height: 7px; flex: 1; }
.mock-wp-body { display: flex; gap: 8px; }
.mock-sidebar { width: 28%; background: #21759B; border-radius: 4px; height: 60px; }
.mock-content { flex: 1; }
.mock-line { height: 5px; border-radius: 3px; background: #e8e8e8; margin-bottom: 5px; }
.mock-line.short  { width: 60%; }
.mock-line.medium { width: 80%; }

.mock-ai {
  width: 85%;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.2);
}

.mock-chat-msg { display: flex; flex-direction: column; gap: 7px; }

.mock-msg {
  border-radius: 12px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  max-width: 80%;
}
.mock-msg.user {
  background: rgba(255,255,255,0.2);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.mock-msg.bot {
  background: rgba(255,255,255,0.9);
  color: #6C3483;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.mock-typing { display: flex; gap: 3px; align-items: center; padding: 6px 10px; }
.mock-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: typing 1.2s infinite;
}
.mock-typing span:nth-child(2) { animation-delay: 0.2s; }
.mock-typing span:nth-child(3) { animation-delay: 0.4s; }

.mock-react {
  width: 85%;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 14px;
  font-family: 'Courier New', monospace;
  border: 1px solid rgba(97,218,251,0.2);
}
.code-line { font-size: 10px; line-height: 1.8; white-space: nowrap; }
.code-keyword  { color: #C792EA; }
.code-component{ color: #61DAFB; }
.code-prop     { color: #C3E88D; }
.code-string   { color: #F78C6C; }
.code-comment  { color: rgba(255,255,255,0.25); }


/* ─────────────────────────────────────────────
   15. ABOUT — HERO SECTION
───────────────────────────────────────────── */
.about-hero-strip {
  display: flex;
  gap: 16px;
  padding: 40px 0;
  flex-wrap: wrap;
}


/* ─────────────────────────────────────────────
   16. ABOUT — PHOTO STRIP
───────────────────────────────────────────── */
.photo-strip-item {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
}
.photo-strip-item svg {
  width: 28px;
  height: 28px;
}
.photo-strip-item:hover { transform: scale(1.04); opacity: 0.85; }

.strip-1 { background: linear-gradient(135deg, #FFEAA7, #F6CA51); }
.strip-2 { background: linear-gradient(135deg, #74B9FF, #0984E3); }
.strip-3 { background: linear-gradient(135deg, #55EFC4, #00B894); }
.strip-4 { background: linear-gradient(135deg, #FD79A8, #E84393); }
.strip-5 { background: linear-gradient(135deg, #FDCB6E, #E17055); }
.strip-6 { background: linear-gradient(135deg, #A29BFE, #6C5CE7); }


/* ─────────────────────────────────────────────
   17. ABOUT — SKILLS SPLIT
───────────────────────────────────────────── */
.skills-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
}

.skills-col h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 24px;
}

.skills-col li {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.skills-col li:last-child { border-bottom: none; }
.skills-col.right { text-align: right; }


/* ─────────────────────────────────────────────
   18. ABOUT — DONUT CHART
───────────────────────────────────────────── */
.donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.donut-chart { width: 160px; height: 160px; position: relative; }

.donut-svg { width: 160px; height: 160px; transform: rotate(-90deg); }
.donut-track { fill: none; stroke: #e8e8e8; stroke-width: 28; }
.donut-seg-dev {
  fill: none;
  stroke: #333;
  stroke-width: 28;
  stroke-dasharray: 226 150;
  stroke-dashoffset: 0;
}
.donut-seg-ai {
  fill: none;
  stroke: #6C5CE7;
  stroke-width: 28;
  stroke-dasharray: 150 226;
  stroke-dashoffset: -226;
}

.donut-labels { display: flex; gap: 16px; }

.donut-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.donut-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-dev { background: #333; }
.dot-ai  { background: #6C5CE7; }


/* ─────────────────────────────────────────────
   19. ABOUT — RANDOM FACTS
───────────────────────────────────────────── */
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.facts-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2d3436 0%, #1a1a2e 100%);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.facts-list h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 28px;
  padding-top: 16px;
}

.facts-list li {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.facts-list li:last-child { border-bottom: none; }
.facts-list a {
  color: var(--body);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ─────────────────────────────────────────────
   20. ABOUT — BAR CHART
───────────────────────────────────────────── */
.bar-chart-section h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
  text-align: right;
  margin-bottom: 48px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 280px;
}

.bar-y-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 40px;
  margin-right: 24px;
  flex-shrink: 0;
}

.bar-y-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.bar-items {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex: 1;
  height: 100%;
}

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
}

.bar-fill {
  width: 100%;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bar-fill.animated { transform: scaleY(1); }

.bar-pct { font-size: 22px; font-weight: 800; color: rgba(255,255,255,0.9); }
.bar-pct sup { font-size: 13px; font-weight: 600; }

.bar-label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
}

.b1 { background: #4ECDC4; height: 95%; transition-delay: 0.1s; }
.b2 { background: #FF6B6B; height: 90%; transition-delay: 0.25s; }
.b3 { background: #FFE66D; height: 85%; transition-delay: 0.4s; }
.b3 .bar-pct { color: rgba(0,0,0,0.7); }
.b4 { background: #FD79A8; height: 80%; transition-delay: 0.55s; }
.b5 { background: #A29BFE; height: 75%; transition-delay: 0.7s; }


/* ─────────────────────────────────────────────
   21. ABOUT — FEATURE ROWS
───────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-row.alt { direction: rtl; }
.feature-row.alt > * { direction: ltr; }

.feature-text h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.img-wp       { background: rgba(33,117,155,0.07);  border: 2px dashed rgba(33,117,155,0.25); }
.img-ai-tools { background: rgba(108,92,231,0.07);  border: 2px dashed rgba(108,92,231,0.25); }
.img-story    { background: rgba(51,51,51,0.05);    border: 2px dashed rgba(51,51,51,0.18);   }


/* ─────────────────────────────────────────────
   22. PORTFOLIO — HERO MOCKUP
───────────────────────────────────────────── */
.hero-mockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mock-card {
  border-radius: 10px;
  padding: 14px;
  background: var(--white);
  box-shadow: rgba(0,0,0,0.12) 0 2px 12px;
  overflow: hidden;
}

.mock-header { display: flex; gap: 5px; margin-bottom: 8px; }

.mock-accent {
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(90deg, #21759B, #157EB5);
  margin-bottom: 5px;
}

.mock-chat-row { display: flex; flex-direction: column; gap: 5px; }

.mock-bubble {
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
}
.mock-bubble.u { background: #6C5CE7; color: #fff; align-self: flex-end; }
.mock-bubble.b { background: #f0f0f0; color: #555; align-self: flex-start; }

.mock-code-line { font-family: monospace; font-size: 9px; line-height: 1.7; }
.kw  { color: #C792EA; }
.fn  { color: #61DAFB; }
.st  { color: #F78C6C; }

.mock-n8n { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }

.n8n-node {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #FF6B35;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.n8n-node--blue   { background: #21759B; }
.n8n-node--purple { background: #6C5CE7; }

.n8n-arrow { color: #bbb; font-size: 10px; }


/* ─────────────────────────────────────────────
   23. PORTFOLIO — CARD THUMBNAILS
───────────────────────────────────────────── */
.thumb-content {
  width: 90%;
  height: 85%;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-wp    { background: linear-gradient(135deg, #1a6b8a 0%, #0f4a63 100%); }
.t-ai    { background: linear-gradient(135deg, #4a2c82 0%, #6C5CE7 100%); }
.t-react { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.t-larv  { background: linear-gradient(135deg, #7c1515 0%, #FF2D20 100%); }
.t-n8n   { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);    }
.t-bot   { background: linear-gradient(135deg, #0f4c75 0%, #1B262C 100%); }
.t-woo   { background: linear-gradient(135deg, #7b2d8b 0%, #9B59B6 100%); }
.t-next  { background: linear-gradient(135deg, #0a0a0a 0%, #252525 100%); }
.t-gen   { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }


/* ─────────────────────────────────────────────
   24. PORTFOLIO — CARD MOCKUP ELEMENTS
───────────────────────────────────────────── */
.sm-mock { padding: 10px; width: 100%; height: 100%; }

.sm-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 4px;
}
.sm-line.w70 { width: 70%; }
.sm-line.w50 { width: 50%; }
.sm-line.mt { margin-top: 6px; }

/* Generic spacer block (replaces various inline height+background divs) */
.sm-block {
  height: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 6px 0;
}

/* Flex row container */
.sm-flex-row { display: flex; gap: 4px; margin-top: 4px; }

/* Laravel-style side panel */
.sm-panel {
  flex: 1;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}
.sm-panel--wide {
  flex: 2;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

/* Product card block */
.sm-card-row { display: flex; gap: 4px; }
.sm-card-item {
  flex: 1;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 5px;
}

/* Button bar at bottom of card */
.sm-btn {
  height: 14px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
  margin-top: 5px;
  width: 60%;
}

/* Chat input row */
.sm-input-row {
  display: flex;
  gap: 3px;
  margin-top: 6px;
  align-items: center;
}
.sm-input-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.sm-send-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* n8n workflow nodes */
.sm-node-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.sm-node {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.sm-node--orange { background: #FF6B35; }
.sm-node--navy   { background: #21759B; }
.sm-node--purple { background: #6C5CE7; }
.sm-node--green  { background: #00B894; }

.sm-connector {
  height: 2px;
  flex: 1;
  background: rgba(255,255,255,0.2);
}

/* Chat bubbles */
.sm-chat { display: flex; flex-direction: column; gap: 4px; }
.sm-bub { padding: 4px 7px; border-radius: 8px; font-size: 8px; font-weight: 700; max-width: 80%; }
.sm-bub.u { background: rgba(255,255,255,0.25); color: #fff; align-self: flex-end; }
.sm-bub.b { background: rgba(255,255,255,0.9);  color: #4a2c82; align-self: flex-start; }

/* Code snippet */
.sm-code { font-family: monospace; font-size: 8px; line-height: 1.7; }
.sm-kw { color: #C792EA; }
.sm-fn { color: #61DAFB; }

/* Brand label (Next.js card) */
.sm-brand-label {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

/* Tag row */
.sm-tag-row { display: flex; gap: 4px; margin-top: 5px; }
.sm-tag {
  flex: 1;
  height: 16px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
}

/* API log (OpenAI card) */
.sm-api-log {
  font-family: monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.sm-api-body     { color: rgba(255,255,255,0.3); }
.sm-api-response { color: #61DAFB; }

/* Bar chart inside mock card (home page ai card - unused but keep) */
.sm-bar-row { display: flex; gap: 4px; align-items: flex-end; margin-top: 6px; }
.sm-bar { width: 14px; border-radius: 2px 2px 0 0; background: rgba(255,255,255,0.4); }


/* ─────────────────────────────────────────────
   25. BLOG LIST — COLUMN & ARTICLES
───────────────────────────────────────────── */
.blog-column {
  max-width: var(--col-blog);
  margin: 0 auto;
  padding: 80px 20px;
}

article {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.post-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 680 / 400;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.post-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  transition: opacity 0.2s;
}
.post-thumb:hover .post-thumb-inner { opacity: 0.88; }

/* Blog list thumbnail gradients */
.t1  { background: linear-gradient(135deg, #1a3a5c  0%, #21759B  100%); }
.t2  { background: linear-gradient(135deg, #4a2c82  0%, #8e44ad  100%); }
.t3  { background: linear-gradient(135deg, #0d1b2a  0%, #1a3a5c  100%); }
.t4  { background: linear-gradient(135deg, #1a1a1a  0%, #333     100%); }
.t5  { background: linear-gradient(135deg, #7c1515  0%, #c0392b  100%); }
.t6  { background: linear-gradient(135deg, #00695c  0%, #00897b  100%); }
.t7  { background: linear-gradient(135deg, #1a2a6c  0%, #b21f1f  70%, #fdbb2d 100%); }
.t8  { background: linear-gradient(135deg, #134e5e  0%, #71b280  100%); }
.t9  { background: linear-gradient(135deg, #232526  0%, #414345  100%); }
.t10 { background: linear-gradient(135deg, #3a1c71  0%, #d76d77  60%, #ffaf7b 100%); }

.post-title {
  font-size: 48px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.post-title a { color: inherit; transition: opacity 0.2s; }
.post-title a:hover { opacity: 0.65; }

.post-excerpt {
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 20px;
}

.blog-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 52px;
}

.author-info { display: flex; flex-direction: column; }

.pagination { margin-top: 24px; padding-top: 24px; }

.pagination a {
  font-size: 20px;
  font-weight: 300;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.pagination a:hover { opacity: 0.55; }


/* ─────────────────────────────────────────────
   26. BLOG DETAILS — READING PROGRESS
───────────────────────────────────────────── */
.read-progress {
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0,0,0,0.06);
  z-index: 99;
}

.read-progress-fill {
  height: 100%;
  background: #21759B;
  width: 0%;
  transition: width 0.1s linear;
}


/* ─────────────────────────────────────────────
   27. BLOG DETAILS — POST HEADER
───────────────────────────────────────────── */
.post-wrap {
  max-width: var(--col-blog);
  margin: 0 auto;
  padding: 72px 20px 96px;
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.post-breadcrumb a { color: var(--muted); transition: color 0.2s; }
.post-breadcrumb a:hover { color: var(--body); }
.post-breadcrumb .sep { color: rgba(0,0,0,0.2); }

.post-cat-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #21759B;
  background: rgba(33,117,155,0.08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.post-h1 {
  font-size: 56px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.post-subtitle {
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 28px;
}

.post-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 32px;
}

.post-hero-img {
  width: 100%;
  aspect-ratio: 680 / 400;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  background: linear-gradient(135deg, #1a3a5c 0%, #21759B 100%);
}


/* ─────────────────────────────────────────────
   28. BLOG DETAILS — POST BODY
───────────────────────────────────────────── */
.post-body p {
  font-size: 20px;
  font-weight: 300;
  color: var(--body);
  line-height: 34px;
  margin-bottom: 32px;
}

.post-body h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 56px;
  margin-bottom: 20px;
}

.post-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--body);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.post-body a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.post-body a:hover { opacity: 0.55; }

.post-body ol {
  margin: 0 0 32px;
  padding-left: 28px;
}
.post-body ol li {
  font-size: 20px;
  font-weight: 300;
  color: var(--body);
  line-height: 34px;
  margin-bottom: 10px;
  padding-left: 8px;
}

.post-body ul {
  margin: 0 0 32px;
  padding-left: 28px;
  list-style: none;
}
.post-body ul li {
  font-size: 20px;
  font-weight: 300;
  color: var(--body);
  line-height: 34px;
  margin-bottom: 8px;
  padding-left: 8px;
  position: relative;
}
.post-body ul li::before {
  content: '—';
  position: absolute;
  left: -20px;
  color: rgba(0,0,0,0.25);
  font-weight: 300;
}

/* In-article images */
.post-img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 40px 0;
}

.post-img-inner {
  width: 100%;
  aspect-ratio: 680 / 400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  border-radius: var(--radius);
}

.pi1 { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.pi2 { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.pi3 { background: linear-gradient(135deg, #1e3a1e 0%, #2d5a2d 100%); }


/* ─────────────────────────────────────────────
   29. BLOG DETAILS — CODE BLOCK & CALLOUT
───────────────────────────────────────────── */
.code-block {
  background: #1a1a2e;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.8;
  border-left: 3px solid #21759B;
}

.code-block .kw  { color: #C792EA; }
.code-block .fn  { color: #61DAFB; }
.code-block .str { color: #F78C6C; }
.code-block .cm  { color: rgba(255,255,255,0.35); }
.code-block .pl  { color: #C3E88D; }
.code-block .wh  { color: rgba(255,255,255,0.85); }

.code-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}

.code-label span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.code-label .r { background: #FF5F57; }
.code-label .y { background: #FFBD2E; }
.code-label .g { background: #28CA41; }

.callout {
  background: rgba(33,117,155,0.07);
  border-left: 3px solid #21759B;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.callout p { margin-bottom: 0; font-size: 18px; }
.callout strong { font-weight: 700; color: var(--body); }


/* ─────────────────────────────────────────────
   30. BLOG DETAILS — POST FOOTER & SHARE
───────────────────────────────────────────── */
.post-footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 64px;
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--section-gray);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s;
}
.tag:hover { background: #ebebeb; }

.share-row { display: flex; align-items: center; gap: 12px; }

.share-label {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--section-gray);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.share-btn:hover { background: #333; color: #fff; }
.share-btn--copied { background: #00B894 !important; color: #fff !important; }


/* ─────────────────────────────────────────────
   31. BLOG DETAILS — MORE FROM BLOG
───────────────────────────────────────────── */
.more-section {
  background: var(--section-gray);
  padding: 80px 40px;
}

.more-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.more-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: rgba(0,0,0,0.14) 0 1px 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}
.more-card:hover { transform: translateY(-4px); box-shadow: rgba(0,0,0,0.2) 0 8px 24px; }

.more-thumb {
  width: 100%;
  aspect-ratio: 330 / 184;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.mt1 { background: linear-gradient(135deg, #4a2c82 0%, #8e44ad 100%); }
.mt2 { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.mt3 { background: linear-gradient(135deg, #1a1a1a 0%, #333     100%); }

.more-body { padding: 16px 36px 20px 16px; position: relative; }

.more-arrow {
  position: absolute;
  top: 18px; right: 14px;
  width: 20px; height: 20px;
  color: #bbb;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.more-card:hover .more-arrow { opacity: 1; transform: translateX(0); }

.more-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--body);
  line-height: 1.3;
  margin-bottom: 4px;
}

.more-cat { font-size: 14px; font-weight: 300; color: var(--muted); }


/* ─────────────────────────────────────────────
   32. CONTACT — HERO
───────────────────────────────────────────── */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-portrait {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.portrait-placeholder {
  width: 88%;
  aspect-ratio: 0.75;
  background: linear-gradient(160deg, #e8e8e8 0%, #d0d0d0 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portrait-placeholder::after {
  content: 'Your Photo';
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-abstract {
  width: 100%;
  max-width: 360px;
  height: auto;
}


/* ─────────────────────────────────────────────
   33. CONTACT — AVAILABILITY BADGE
───────────────────────────────────────────── */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #00B894;
  background: rgba(0,184,148,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00B894;
  animation: pulse 2s infinite;
}


/* ─────────────────────────────────────────────
   34. CONTACT — SOCIAL GRID
───────────────────────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.social-item { margin-bottom: 28px; }

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 300;
  transition: opacity 0.2s;
}
.social-link:hover { opacity: 0.7; }

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-icon svg { width: 22px; height: 22px; }

.si-linkedin { background: rgb(9,130,192);  color: #fff; }
.si-github   { background: #24292e;         color: #fff; }
.si-whatsapp { background: #25D366;         color: #fff; }
.si-email    { background: #333;            color: #fff; }

.sc-linkedin { color: rgb(9,130,192);  }
.sc-github   { color: #24292e;         }
.sc-whatsapp { color: #25D366;         }
.sc-email    { color: #333;            }


/* ─────────────────────────────────────────────
   35. CONTACT — FORM
───────────────────────────────────────────── */
.form-heading {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 48px;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-left { display: flex; flex-direction: column; gap: 24px; }

.field-group { display: flex; flex-direction: column; }

.field-label {
  font-size: 17px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 10px;
  display: block;
}

input[type="text"],
input[type="email"],
select,
textarea {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 300;
  color: var(--body);
  background: var(--white);
  border: 1px solid rgb(148,148,148);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

input[type="text"],
input[type="email"],
select { height: 48px; padding: 0 16px; }

select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23757575' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

textarea {
  padding: 14px 16px;
  height: 172px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(51,51,51,0.08);
}

.form-right { display: flex; flex-direction: column; }

.msg-area { flex: 1; display: flex; flex-direction: column; }
.msg-area textarea { flex: 1; height: auto; min-height: 200px; }

.submit-row { display: flex; justify-content: flex-end; margin-top: 16px; }

.btn-submit {
  background: rgb(51,51,51);
  color: var(--white);
  border: 1px solid rgb(51,51,51);
  border-radius: var(--radius);
  height: 48px;
  padding: 0 28px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-submit:hover  { background: #111; transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.form-success .check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #00B894;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}

.form-success h3 {
  font-size: 28px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
}


/* ─────────────────────────────────────────────
   36. ANIMATIONS & KEYFRAMES
───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0);   opacity: 0.4; }
  30%           { transform: translateY(-4px); opacity: 1;   }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,184,148,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(0,184,148,0); }
}

/* Page entry animations */
.anim-fade-up { animation: fadeUp 0.6s ease both; }
.anim-fade-in { animation: fadeIn 0.5s ease both; }

/* Blog list stagger */
.blog-column article:nth-child(1) { animation: fadeUp 0.5s 0.05s ease both; }
.blog-column article:nth-child(2) { animation: fadeUp 0.5s 0.15s ease both; }
.blog-column article:nth-child(3) { animation: fadeUp 0.5s 0.25s ease both; }
.blog-column article:nth-child(4) { animation: fadeUp 0.5s 0.35s ease both; }
.blog-column article:nth-child(5) { animation: fadeUp 0.5s 0.45s ease both; }

/* Card grid stagger */
.card-grid .card:nth-child(1) { animation: fadeUp 0.5s 0.05s ease both; }
.card-grid .card:nth-child(2) { animation: fadeUp 0.5s 0.12s ease both; }
.card-grid .card:nth-child(3) { animation: fadeUp 0.5s 0.19s ease both; }
.card-grid .card:nth-child(4) { animation: fadeUp 0.5s 0.26s ease both; }
.card-grid .card:nth-child(5) { animation: fadeUp 0.5s 0.33s ease both; }
.card-grid .card:nth-child(6) { animation: fadeUp 0.5s 0.40s ease both; }
.card-grid .card:nth-child(7) { animation: fadeUp 0.5s 0.47s ease both; }
.card-grid .card:nth-child(8) { animation: fadeUp 0.5s 0.54s ease both; }
.card-grid .card:nth-child(9) { animation: fadeUp 0.5s 0.61s ease both; }

/* Hero panel entry */
.hero-panel--left  .hero-panel-inner { animation: fadeUp 0.7s 0.10s ease both; }
.hero-panel--right .hero-panel-inner { animation: fadeUp 0.7s 0.25s ease both; }


/* ─────────────────────────────────────────────
   37. LEARN — HERO VISUAL
───────────────────────────────────────────── */
.learn-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
}

/* Book / e-book mockup */
.learn-book {
  width: 180px;
  height: 240px;
  background: linear-gradient(160deg, #4a2c82 0%, #6C5CE7 100%);
  border-radius: 4px 12px 12px 4px;
  position: relative;
  box-shadow: -6px 6px 24px rgba(108,92,231,0.4), 6px 6px 24px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  z-index: 2;
  transform: rotate(-4deg);
}

.learn-book::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 14px;
  background: rgba(0,0,0,0.18);
  border-radius: 4px 0 0 4px;
}

.learn-book-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}

.learn-book-icon {
  font-size: 32px;
  margin-bottom: 8px;
  display: block;
}

.learn-book-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.learn-book-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  margin-top: 6px;
  font-weight: 400;
}

.learn-book-author {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.learn-book-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.learn-book-name {
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* Floating screen mockup behind book */
.learn-screen {
  position: absolute;
  right: 0;
  top: 20px;
  width: 260px;
  height: 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: rgba(0,0,0,0.15) 0 4px 24px;
  padding: 14px;
  z-index: 1;
  transform: rotate(2deg);
}

.learn-screen-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.learn-screen-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.learn-screen-dot.r { background: #FF5F57; }
.learn-screen-dot.y { background: #FFBD2E; }
.learn-screen-dot.g { background: #28CA41; }

.learn-screen-content { display: flex; gap: 10px; height: calc(100% - 26px); }

.learn-screen-sidebar {
  width: 70px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.learn-screen-nav-item {
  height: 7px;
  border-radius: 3px;
  background: #e8e8e8;
}
.learn-screen-nav-item.active { background: #6C5CE7; width: 80%; }

.learn-screen-main { flex: 1; display: flex; flex-direction: column; gap: 6px; }

.learn-screen-heading {
  height: 10px;
  border-radius: 3px;
  background: #222;
  width: 60%;
}

.learn-screen-line {
  height: 5px;
  border-radius: 2px;
  background: #e8e8e8;
}
.learn-screen-line.short { width: 75%; }
.learn-screen-line.medium { width: 90%; }

.learn-screen-img {
  height: 60px;
  border-radius: 4px;
  background: linear-gradient(135deg, #e8e0ff 0%, #d4c8ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   38. LEARN — RESOURCE CARD GRID
───────────────────────────────────────────── */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Thumbnail styles for learn cards */
.lt-blog    { background: linear-gradient(135deg, #1a3a5c 0%, #21759B 100%); }
.lt-guide   { background: linear-gradient(135deg, #4a2c82 0%, #6C5CE7 100%); }
.lt-n8n     { background: linear-gradient(135deg, #1a1a1a 0%, #333    100%); }
.lt-youtube { background: linear-gradient(135deg, #7c0000 0%, #c0392b 100%); }
.lt-news    { background: #f5f5f5; }
.lt-tools   { background: linear-gradient(135deg, #0a0a0a 0%, #252525 100%); }

/* Newsletter card light treatment */
.lt-news .learn-thumb-inner { color: #333; }

.learn-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blog card visual */
.lt-preview-blog {
  width: 88%;
  height: 82%;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 10px;
}
.lt-blog-line { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.25); margin-bottom: 5px; }
.lt-blog-line.short { width: 60%; }
.lt-blog-line.medium { width: 80%; }
.lt-blog-img { height: 48px; border-radius: 4px; background: rgba(255,255,255,0.15); margin-bottom: 6px; display:flex; align-items:center; justify-content:center; font-size:20px; }

/* Guide card visual (mini book) */
.lt-preview-book {
  width: 70px;
  height: 96px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px 8px 8px 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px;
  position: relative;
  box-shadow: -3px 3px 12px rgba(0,0,0,0.25);
}
.lt-preview-book::before {
  content: '';
  position: absolute;
  top:0; bottom:0; left:0;
  width: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 2px 0 0 2px;
}
.lt-book-title { font-size: 9px; font-weight: 800; color: #fff; line-height: 1.2; }
.lt-book-icon  { font-size: 20px; margin-bottom: 4px; }

/* n8n card visual */
.lt-preview-n8n { display:flex; flex-direction:column; align-items:center; gap:6px; }
.lt-n8n-row { display:flex; align-items:center; gap:5px; }
.lt-n8n-node {
  width: 28px; height: 28px; border-radius: 6px;
  display:flex; align-items:center; justify-content:center; font-size: 13px;
}
.lt-n8n-node--orange { background: #FF6B35; }
.lt-n8n-node--navy   { background: #21759B; }
.lt-n8n-node--purple { background: #6C5CE7; }
.lt-n8n-node--green  { background: #00B894; }
.lt-n8n-arrow { color:rgba(255,255,255,0.5); font-size: 11px; }
.lt-n8n-label { font-size: 9px; color:rgba(255,255,255,0.4); font-family: monospace; }

/* YouTube card visual */
.lt-preview-youtube {
  width: 90px; height: 58px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display:flex; align-items:center; justify-content:center;
  position: relative;
}
.lt-play-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display:flex; align-items:center; justify-content:center;
}
.lt-play-btn::after { content: '▶'; font-size: 10px; color: #c0392b; margin-left: 2px; }

/* Newsletter card visual */
.lt-preview-news {
  display:flex; flex-direction:column; align-items:center; gap:6px;
}
.lt-news-logo {
  display:flex; flex-direction:column; align-items:center; gap:3px;
}
.lt-news-lines { display:flex; flex-direction:column; align-items:center; gap:3px; }
.lt-news-line { height: 2px; border-radius: 1px; background: #aaa; }
.lt-news-line:nth-child(1) { width: 30px; }
.lt-news-line:nth-child(2) { width: 22px; }
.lt-news-line:nth-child(3) { width: 16px; }
.lt-news-name { font-size: 14px; font-weight: 800; color: #333; letter-spacing: 0.2em; text-transform: uppercase; }
.lt-news-sub  { font-size: 8px; font-weight: 600; color: #999; letter-spacing: 0.18em; text-transform: uppercase; }

/* Tools/resources card visual */
.lt-preview-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 80%;
  height: 80%;
  padding: 8px;
}
.lt-tool-item {
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  display:flex; align-items:center; justify-content:center;
  font-size: 16px;
}

/* ─────────────────────────────────────────────
   39. SERVICES LIST PAGE
───────────────────────────────────────────── */

/* 3-column service card grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Service card — extends .card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0,0,0,0.2) 0 10px 28px;
}

/* Icon header area */
.service-thumb {
  width: 100%;
  aspect-ratio: 330 / 200;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Service thumb gradients */
.st-wp    { background: linear-gradient(135deg, #1a6b8a 0%, #21759B 100%); }
.st-larv  { background: linear-gradient(135deg, #7c1515 0%, #FF2D20 100%); }
.st-react { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.st-ai    { background: linear-gradient(135deg, #4a2c82 0%, #6C5CE7 100%); }
.st-n8n   { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.st-bot   { background: linear-gradient(135deg, #0f4c75 0%, #1B262C 100%); }

/* Emoji icon in centre */
.service-icon {
  font-size: 56px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.12) translateY(-3px); }

/* Decorative corner tag */
.service-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* Category tag variant */
.service-tag--cat {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Featured image in service thumb */
.service-thumb.has-image {
  background: #1a1a1a;
}

.service-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card:hover .service-thumb-img {
  transform: scale(1.05);
}

.service-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Placeholder for no featured image */
.service-thumb.no-image {
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.service-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}

.service-thumb-placeholder svg {
  opacity: 0.6;
}

/* Ensure tag is above overlay */
.service-thumb .service-tag {
  z-index: 2;
}

/* Card body */
.service-card-body {
  padding: 16px 20px 18px;
  position: relative;
}

.service-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  color: #ccc;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

.service-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 4px;
  line-height: 1.3;
  padding-right: 24px;
}

.service-card-cat {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.service-card-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Mini feature list on card */
.service-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--section-gray);
  padding: 4px 10px;
  border-radius: 12px;
}

/* Service grid stagger */
.service-grid .service-card:nth-child(1) { animation: fadeUp 0.5s 0.05s ease both; }
.service-grid .service-card:nth-child(2) { animation: fadeUp 0.5s 0.13s ease both; }
.service-grid .service-card:nth-child(3) { animation: fadeUp 0.5s 0.21s ease both; }
.service-grid .service-card:nth-child(4) { animation: fadeUp 0.5s 0.29s ease both; }
.service-grid .service-card:nth-child(5) { animation: fadeUp 0.5s 0.37s ease both; }
.service-grid .service-card:nth-child(6) { animation: fadeUp 0.5s 0.45s ease both; }


/* ─────────────────────────────────────────────
   40. SERVICE DETAILS PAGE
───────────────────────────────────────────── */

/* Hero right-side visual */
.service-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-icon-wrap {
  width: 100%;
  aspect-ratio: 1 / 0.75;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  position: relative;
  overflow: hidden;
}

/* Service hero gradient variants */
.shi-wp    { background: linear-gradient(135deg, #1a6b8a 0%, #21759B 100%); }
.shi-larv  { background: linear-gradient(135deg, #7c1515 0%, #FF2D20 100%); }
.shi-react { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.shi-ai    { background: linear-gradient(135deg, #4a2c82 0%, #6C5CE7 100%); }
.shi-n8n   { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.shi-bot   { background: linear-gradient(135deg, #0f4c75 0%, #1B262C 100%); }

.service-hero-icon-wrap .service-cat-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* CTA buttons */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--nav-bg);
  color: #fff;
  border: 2px solid var(--nav-bg);
  border-radius: var(--radius);
  height: 50px;
  padding: 0 28px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover { background: #222; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--body);
  border: 2px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  height: 50px;
  padding: 0 28px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(0,0,0,0.35); background: rgba(0,0,0,0.03); }

/* ── What's included ── */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.include-item:hover {
  border-color: rgba(0,0,0,0.14);
  box-shadow: rgba(0,0,0,0.06) 0 4px 16px;
}

.include-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,184,148,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.include-check svg { width: 14px; height: 14px; color: #00B894; }

.include-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 4px;
}
.include-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

/* ── My process ── */
.process-section h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 48px;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: rgba(0,0,0,0.08);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--body);
  margin-bottom: 20px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}

.process-step:hover .step-num {
  background: var(--nav-bg);
  border-color: var(--nav-bg);
  color: #fff;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Related work ── */
.related-section h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 40px;
}

/* ── Pricing teaser ── */
.pricing-section {
  text-align: center;
}

.pricing-section h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 12px;
}

.pricing-section .lead {
  max-width: 520px;
  margin: 0 auto 40px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { border-color: rgba(0,0,0,0.2); box-shadow: rgba(0,0,0,0.08) 0 8px 24px; }
.pricing-card.featured {
  background: var(--nav-bg);
  border-color: var(--nav-bg);
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.6); }

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--body);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card.featured .pricing-price { color: #fff; }

.pricing-unit {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-card.featured .pricing-unit { color: rgba(255,255,255,0.6); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.75); }

.pricing-feature::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,184,148,0.1);
  color: #00B894;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-card.featured .pricing-feature::before {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.btn-pricing {
  width: 100%;
  height: 44px;
  border-radius: var(--radius);
  border: 2px solid rgba(0,0,0,0.15);
  background: transparent;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--body);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-pricing:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.3); }
.pricing-card.featured .btn-pricing {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.pricing-card.featured .btn-pricing:hover { background: rgba(255,255,255,0.25); }

/* ── Service CTA section ── */
.service-cta {
  text-align: center;
}

.service-cta h2 {
  font-size: 52px;
  font-weight: 800;
  color: var(--body);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.service-cta p {
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* ── Service breadcrumb (re-uses post-breadcrumb style) ── */
.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.service-breadcrumb a { color: var(--muted); transition: color 0.2s; }
.service-breadcrumb a:hover { color: var(--body); }
.service-breadcrumb .sep { color: rgba(0,0,0,0.2); }

/* ── Section heading shared for details page ── */
.section-heading {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 40px;
}


/* ─────────────────────────────────────────────
   41. SERVICES LIST — Trust Stats
───────────────────────────────────────────── */
.services-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  height: fit-content;
  margin-top: 16px;
}

.trust-item {
  padding: 36px 28px;
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.trust-item:nth-child(2n) { border-right: none; }
.trust-item:nth-child(3),
.trust-item:nth-child(4) { border-bottom: none; }

.trust-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--body);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
}


/* ─────────────────────────────────────────────
   42. BOOKING PAGE — Layout
───────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: rgba(0,0,0,0.10) 0 2px 16px;
  overflow: hidden;
}

/* Consultant info strip */
.consultant-strip {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 16px;
}

.consultant-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #222 0%, #444 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.consultant-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 2px;
}

.consultant-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.consultant-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

.consultant-badge svg { width: 13px; height: 13px; flex-shrink: 0; }

.duration-selector {
  display: flex;
  gap: 8px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.duration-btn {
  flex: 1;
  height: 40px;
  border-radius: 8px;
  border: 2px solid rgba(0,0,0,0.1);
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.duration-btn.active {
  border-color: var(--nav-bg);
  background: var(--nav-bg);
  color: #fff;
}
.duration-btn:not(.active):hover {
  border-color: rgba(0,0,0,0.25);
  color: var(--body);
}

/* ─────────────────────────────────────────────
   43. BOOKING — Calendar
───────────────────────────────────────────── */
.cal-wrap { padding: 24px 28px 28px; }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cal-month-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--body);
  letter-spacing: -0.01em;
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--body);
  transition: background 0.2s, border-color 0.2s;
}
.cal-nav-btn:hover { background: var(--section-gray); border-color: rgba(0,0,0,0.2); }
.cal-nav-btn svg { width: 16px; height: 16px; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}

.cal-weekday {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 4px 0 8px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: transparent;
  cursor: default;
  transition: background 0.15s, color 0.15s;
  position: relative;
}

.cal-day.in-month { color: rgba(0,0,0,0.25); }

.cal-day.past.in-month { color: rgba(0,0,0,0.18); }

.cal-day.weekend.in-month { color: rgba(0,0,0,0.22); }

.cal-day.available {
  color: var(--body);
  cursor: pointer;
}
.cal-day.available::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #21759B;
}
.cal-day.available:hover { background: rgba(33,117,155,0.10); }

.cal-day.today {
  outline: 2px solid var(--body);
  outline-offset: -2px;
}

.cal-day.selected {
  background: var(--nav-bg) !important;
  color: #fff !important;
}
.cal-day.selected::after { background: rgba(255,255,255,0.6); }

.cal-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.legend-dot--avail { background: #21759B; }
.legend-dot--today { border: 2px solid var(--body); }
.legend-dot--past  { background: rgba(0,0,0,0.15); }

/* ─────────────────────────────────────────────
   44. BOOKING — Right Panel
───────────────────────────────────────────── */
.booking-panel { display: flex; flex-direction: column; gap: 16px; }

/* Empty state */
.booking-empty-state {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: rgba(0,0,0,0.10) 0 2px 16px;
  padding: 56px 32px;
  text-align: center;
}

.booking-empty-icon { font-size: 48px; margin-bottom: 16px; display: block; }

.booking-empty-state h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 8px;
}

.booking-empty-state p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* Slots panel */
.slots-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: rgba(0,0,0,0.10) 0 2px 16px;
  overflow: hidden;
}

.slots-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.slots-date-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 4px;
}

.slots-timezone {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

.slots-body { padding: 20px 24px; }

.slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.slot-btn {
  height: 44px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(0,0,0,0.12);
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.slot-btn:hover:not(:disabled) {
  border-color: var(--nav-bg);
  background: rgba(17,17,17,0.04);
}
.slot-btn.selected {
  background: var(--nav-bg);
  border-color: var(--nav-bg);
  color: #fff;
}
.slot-btn.booked {
  color: rgba(0,0,0,0.25);
  border-color: rgba(0,0,0,0.07);
  background: var(--section-gray);
  cursor: not-allowed;
  text-decoration: line-through;
}

.no-slots-msg {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  padding: 20px 0;
}

/* Booking form card */
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: rgba(0,0,0,0.10) 0 2px 16px;
  overflow: hidden;
  animation: fadeUp 0.4s ease both;
}

.booking-form-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.booking-form-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 12px;
}

/* Summary pills */
.booking-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}
.summary-row svg { width: 14px; height: 14px; flex-shrink: 0; color: #21759B; }
.summary-row strong { font-weight: 600; color: var(--body); }

.booking-form-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-field { display: flex; flex-direction: column; gap: 6px; }

.booking-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  display: block;
}

.booking-label .optional {
  font-weight: 300;
  color: var(--muted);
  margin-left: 4px;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-field input,
.booking-field select { height: 44px; padding: 0 14px; }
.booking-field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23757575' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.booking-field textarea { padding: 10px 14px; height: 90px; resize: none; }
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(51,51,51,0.08);
}

.btn-book {
  width: 100%;
  height: 48px;
  background: var(--nav-bg);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.btn-book:hover  { background: #222; transform: translateY(-1px); }
.btn-book:active { transform: translateY(0); }

/* Change selection link */
.change-selection {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}
.change-selection a {
  color: var(--body);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.change-selection a:hover { opacity: 0.6; }

/* ─────────────────────────────────────────────
   45. BOOKING — Success State
───────────────────────────────────────────── */
.booking-success-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: rgba(0,0,0,0.10) 0 2px 16px;
  padding: 48px 32px;
  text-align: center;
  animation: fadeUp 0.5s ease both;
}

.success-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00B894, #00a383);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-check svg { width: 32px; height: 32px; color: #fff; }

.booking-success-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.booking-success-card > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.confirm-details {
  background: var(--section-gray);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.confirm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
}
.confirm-row svg { width: 16px; height: 16px; flex-shrink: 0; color: #21759B; }
.confirm-row strong { font-weight: 600; color: var(--body); }

.btn-add-cal {
  width: 100%;
  height: 44px;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-add-cal:hover { background: var(--section-gray); border-color: rgba(0,0,0,0.25); }



/* ─────────────────────────────────────────────
   46. TESTIMONIALS — Video Cards
───────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  display: block;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0,0,0,0.2) 0 12px 32px;
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradient variants for video thumbnails */
.vt1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.vt2 { background: linear-gradient(135deg, #0f3460 0%, #533483 100%); }
.vt3 { background: linear-gradient(135deg, #1e3a1e 0%, #2d5a2d 100%); }
.vt4 { background: linear-gradient(135deg, #4a2c82 0%, #6C5CE7 100%); }
.vt5 { background: linear-gradient(135deg, #0d4b52 0%, #1B6CA8 100%); }
.vt6 { background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%); }

.video-person-initial {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
}

.video-duration-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.2s;
}
.video-card:hover .video-overlay { background: rgba(0,0,0,0.12); }

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  z-index: 1;
}
.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 17px;
  border-color: transparent transparent transparent #111;
  margin-left: 3px;
}

.video-body {
  padding: 18px 20px 22px;
}

.video-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.video-stars span {
  color: #FBBC04;
  font-size: 13px;
}

.video-quote {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-client {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.video-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.va1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.va2 { background: linear-gradient(135deg, #0f3460, #533483); }
.va3 { background: linear-gradient(135deg, #1e3a1e, #2d5a2d); }
.va4 { background: linear-gradient(135deg, #4a2c82, #6C5CE7); }
.va5 { background: linear-gradient(135deg, #0d4b52, #1B6CA8); }
.va6 { background: linear-gradient(135deg, #2d2d2d, #4a4a4a); }

.video-client-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--body);
}
.video-client-role {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

/* ─────────────────────────────────────────────
   47. TESTIMONIALS — Google Reviews
───────────────────────────────────────────── */
.google-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

/* Left: overall rating panel */
.google-rating-panel {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--card-shadow);
  position: sticky;
  top: 112px;
}

.google-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

/* Google G logo — coloured letters */
.google-g-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
.g-b { color: #4285F4; }
.g-r { color: #EA4335; }
.g-y { color: #FBBC05; }
.g-g { color: #34A853; }

.google-logo-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
}

.google-big-num {
  font-size: 64px;
  font-weight: 800;
  color: var(--body);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.google-star-row {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 6px;
}
.google-star-row span {
  color: #FBBC04;
  font-size: 20px;
}

.google-review-count {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Star breakdown bars */
.google-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.g-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.g-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  width: 14px;
  text-align: right;
  flex-shrink: 0;
}

.g-bar-star {
  color: #FBBC04;
  font-size: 11px;
  flex-shrink: 0;
}

.g-bar-track {
  flex: 1;
  height: 7px;
  background: rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.g-bar-fill {
  height: 100%;
  background: #FBBC04;
  border-radius: 4px;
}

.g-bar-count {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  width: 20px;
  flex-shrink: 0;
}

/* Google badge */
.google-verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}
.google-verified-badge svg { width: 14px; height: 14px; color: #34A853; }

/* Right: review cards grid */
.google-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
  box-shadow: rgba(0,0,0,0.12) 0 6px 20px;
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.rav1 { background: linear-gradient(135deg, #4285F4, #357AE8); }
.rav2 { background: linear-gradient(135deg, #EA4335, #C5221F); }
.rav3 { background: linear-gradient(135deg, #34A853, #1E8E3E); }
.rav4 { background: linear-gradient(135deg, #FBBC05, #F09300); }
.rav5 { background: linear-gradient(135deg, #9C27B0, #7B1FA2); }
.rav6 { background: linear-gradient(135deg, #FF5722, #E64A19); }

.review-meta { flex: 1; min-width: 0; }

.review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 1px;
}
.review-stars-row span { color: #FBBC04; font-size: 13px; }

.review-date {
  font-size: 12px;
  font-weight: 300;
  color: rgba(0,0,0,0.35);
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

.review-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   48. TESTIMONIALS — Written Cards with Flags
───────────────────────────────────────────── */
.testimonials-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 28px 24px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0,0,0,0.05);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0,0,0,0.14) 0 8px 28px;
}

/* Large decorative quote mark */
.quote-mark {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 80px;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 900;
  user-select: none;
  pointer-events: none;
}

/* Star rating on card */
.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.t-stars span { color: #FBBC04; font-size: 14px; }

.t-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.ta1  { background: linear-gradient(135deg, #0f3460, #533483); }
.ta2  { background: linear-gradient(135deg, #1e3a1e, #2d5a2d); }
.ta3  { background: linear-gradient(135deg, #1a6b8a, #21759B); }
.ta4  { background: linear-gradient(135deg, #7c1515, #c0392b); }
.ta5  { background: linear-gradient(135deg, #4a2c82, #6C5CE7); }
.ta6  { background: linear-gradient(135deg, #0d4b52, #1B6CA8); }
.ta7  { background: linear-gradient(135deg, #2d2d2d, #555555); }
.ta8  { background: linear-gradient(135deg, #5d0000, #912020); }
.ta9  { background: linear-gradient(135deg, #003d1f, #006633); }

.t-author-info { flex: 1; min-width: 0; }

.t-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 2px;
}

.t-role {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--section-gray);
  padding: 4px 10px 4px 6px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.flag-badge .flag { font-size: 16px; line-height: 1; }

/* ─────────────────────────────────────────────
   49. TESTIMONIALS — Section Headings
───────────────────────────────────────────── */
.t-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.t-section-header h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--body);
}
.t-section-header p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 320px;
  text-align: right;
  line-height: 1.5;
}

/* Grid stagger for video cards */
.video-grid .video-card:nth-child(1) { animation: fadeUp 0.5s 0.05s ease both; }
.video-grid .video-card:nth-child(2) { animation: fadeUp 0.5s 0.13s ease both; }
.video-grid .video-card:nth-child(3) { animation: fadeUp 0.5s 0.21s ease both; }
.video-grid .video-card:nth-child(4) { animation: fadeUp 0.5s 0.29s ease both; }
.video-grid .video-card:nth-child(5) { animation: fadeUp 0.5s 0.37s ease both; }
.video-grid .video-card:nth-child(6) { animation: fadeUp 0.5s 0.45s ease both; }

/* Grid stagger for testimonial cards */
.testimonials-masonry .testimonial-card:nth-child(1) { animation: fadeUp 0.5s 0.05s ease both; }
.testimonials-masonry .testimonial-card:nth-child(2) { animation: fadeUp 0.5s 0.12s ease both; }
.testimonials-masonry .testimonial-card:nth-child(3) { animation: fadeUp 0.5s 0.19s ease both; }
.testimonials-masonry .testimonial-card:nth-child(4) { animation: fadeUp 0.5s 0.26s ease both; }
.testimonials-masonry .testimonial-card:nth-child(5) { animation: fadeUp 0.5s 0.33s ease both; }
.testimonials-masonry .testimonial-card:nth-child(6) { animation: fadeUp 0.5s 0.40s ease both; }
.testimonials-masonry .testimonial-card:nth-child(7) { animation: fadeUp 0.5s 0.47s ease both; }
.testimonials-masonry .testimonial-card:nth-child(8) { animation: fadeUp 0.5s 0.54s ease both; }
.testimonials-masonry .testimonial-card:nth-child(9) { animation: fadeUp 0.5s 0.61s ease both; }



/* ─────────────────────────────────────────────
   50. PROCESS PAGE — Hero Stats
───────────────────────────────────────────── */
.process-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mini "in progress" project card */
.process-status-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.06);
}

.psc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.psc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--body);
}

.psc-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.psc-badge--active {
  background: rgba(0,184,148,0.1);
  color: #00B894;
}
.psc-badge--done {
  background: rgba(33,117,155,0.1);
  color: #21759B;
}
.psc-badge--next {
  background: rgba(255,152,0,0.1);
  color: #FF9800;
}

.psc-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}

.psc-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.psc-step-dot--done {
  background: var(--nav-bg);
  color: #fff;
}
.psc-step-dot--active {
  background: #00B894;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(0,184,148,0.2);
}
.psc-step-dot--future {
  background: #e8e8e8;
  color: #aaa;
}

.psc-step-line {
  flex: 1;
  height: 2px;
}
.psc-step-line--done   { background: var(--nav-bg); }
.psc-step-line--active { background: linear-gradient(90deg, var(--nav-bg), #e8e8e8); }
.psc-step-line--future { background: #e8e8e8; }

.psc-progress-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 6px;
}

.psc-progress-bar {
  height: 6px;
  background: rgba(0,0,0,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.psc-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #21759B, #00B894);
}

/* Tool stack mini card */
.process-tools-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 14px;
}

.tools-card-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tools-pill-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tool-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--section-gray);
  color: var(--muted);
  border: 1px solid rgba(0,0,0,0.06);
}


/* ─────────────────────────────────────────────
   51. PROCESS — Main Steps Timeline
───────────────────────────────────────────── */
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 39px;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.1) 5%,
    rgba(0,0,0,0.1) 95%,
    rgba(0,0,0,0) 100%
  );
  z-index: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 0 0 64px;
  position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }

/* Step number bubble */
.timeline-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.timeline-step:hover .timeline-num {
  background: var(--nav-bg);
  border-color: var(--nav-bg);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(17,17,17,0.08);
}

/* Active/highlight step */
.timeline-step--active .timeline-num {
  background: var(--nav-bg);
  border-color: var(--nav-bg);
  color: #fff;
}

.timeline-content {
  padding-top: 16px;
}

.timeline-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--section-gray);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.timeline-step-tag .tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}
.tag-dot--green  { background: #00B894; }
.tag-dot--blue   { background: #21759B; }
.tag-dot--orange { background: #FF9800; }
.tag-dot--purple { background: #6C5CE7; }
.tag-dot--teal   { background: #00CEC9; }
.tag-dot--red    { background: #E17055; }

.timeline-step-title {
  font-size: 32px;
  font-weight: 300;
  color: var(--body);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.timeline-step-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 20px;
}

/* Detail list inside step */
.step-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.step-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

.step-detail-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,184,148,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.step-detail-icon svg {
  width: 10px;
  height: 10px;
  color: #00B894;
}

/* Inline mini card attached to a step */
.step-mini-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 4px;
}
.step-mini-card strong { font-weight: 700; color: var(--body); }
.step-mini-card-icon { font-size: 22px; }

/* Tools row inside step */
.step-tools-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.step-tool-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--section-gray);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 5px 12px;
  border-radius: 20px;
  transition: background 0.2s;
}
.step-tool-chip:hover { background: #ebebeb; }
.step-tool-chip .chip-icon { font-size: 14px; }


/* ─────────────────────────────────────────────
   52. PROCESS — Principles Grid
───────────────────────────────────────────── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.principle-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.principle-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0,0,0,0.12) 0 8px 24px;
}

.principle-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.principle-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 10px;
  line-height: 1.2;
}

.principle-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}


/* ─────────────────────────────────────────────
   53. PROCESS — FAQ Accordion
───────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--body);
  transition: color 0.2s;
}
.faq-question:hover { color: #000; }

.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--section-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}
.faq-chevron svg { width: 13px; height: 13px; color: var(--muted); }
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--nav-bg);
}
.faq-item.open .faq-chevron svg { color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}


/* ─────────────────────────────────────────────
   54. PROCESS — Step stagger animations
───────────────────────────────────────────── */
.timeline-step:nth-child(1) .timeline-content { animation: fadeUp 0.6s 0.05s ease both; }
.timeline-step:nth-child(2) .timeline-content { animation: fadeUp 0.6s 0.15s ease both; }
.timeline-step:nth-child(3) .timeline-content { animation: fadeUp 0.6s 0.25s ease both; }
.timeline-step:nth-child(4) .timeline-content { animation: fadeUp 0.6s 0.35s ease both; }
.timeline-step:nth-child(5) .timeline-content { animation: fadeUp 0.6s 0.45s ease both; }
.timeline-step:nth-child(6) .timeline-content { animation: fadeUp 0.6s 0.55s ease both; }

.principles-grid .principle-card:nth-child(1) { animation: fadeUp 0.5s 0.05s ease both; }
.principles-grid .principle-card:nth-child(2) { animation: fadeUp 0.5s 0.13s ease both; }
.principles-grid .principle-card:nth-child(3) { animation: fadeUp 0.5s 0.21s ease both; }
.principles-grid .principle-card:nth-child(4) { animation: fadeUp 0.5s 0.29s ease both; }
.principles-grid .principle-card:nth-child(5) { animation: fadeUp 0.5s 0.37s ease both; }
.principles-grid .principle-card:nth-child(6) { animation: fadeUp 0.5s 0.45s ease both; }



/* ─────────────────────────────────────────────
   55. QUOTE FORM — Shell & Progress
───────────────────────────────────────────── */
.quote-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 20px 96px;
}

/* Step progress bar */
.quote-progress {
  margin-bottom: 48px;
}

.qp-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}

.qp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.qp-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,0.3);
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.qp-step.active  .qp-dot {
  background: var(--nav-bg);
  border-color: var(--nav-bg);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(17,17,17,0.1);
}
.qp-step.done .qp-dot {
  background: #00B894;
  border-color: #00B894;
  color: #fff;
}

.qp-line {
  flex: 1;
  height: 2px;
  background: rgba(0,0,0,0.08);
  transition: background 0.4s;
}
.qp-line.done { background: #00B894; }

.qp-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}
.qp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.3);
  text-align: center;
  width: 36px;
  line-height: 1.4;
  transition: color 0.3s;
}
.qp-label.active { color: var(--body); }
.qp-label.done   { color: #00B894; }


/* ─────────────────────────────────────────────
   56. QUOTE FORM — Step Panels
───────────────────────────────────────────── */
.quote-step {
  display: none;
  animation: fadeUp 0.4s ease both;
}
.quote-step.active { display: block; }

.qs-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.qs-heading {
  font-size: 40px;
  font-weight: 300;
  color: var(--body);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.qs-subheading {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.5;
}

/* Conditional sub-step (hidden by default) */
.quote-sub {
  display: none;
}
.quote-sub.active { display: block; }


/* ─────────────────────────────────────────────
   57. QUOTE FORM — Service Cards (Step 1)
───────────────────────────────────────────── */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.service-select-card {
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-card);
  padding: 22px 18px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
  user-select: none;
  position: relative;
  background: var(--white);
}
.service-select-card:hover {
  border-color: rgba(0,0,0,0.25);
  transform: translateY(-2px);
  box-shadow: rgba(0,0,0,0.08) 0 6px 20px;
}
.service-select-card.selected {
  border-color: var(--nav-bg);
  background: var(--nav-bg);
  box-shadow: rgba(17,17,17,0.2) 0 6px 24px;
}

/* Check mark top-right when selected */
.service-select-card .ssc-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.service-select-card.selected .ssc-check { opacity: 1; }
.ssc-check svg { width: 10px; height: 10px; color: #fff; }

.ssc-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.2s;
}
.service-select-card:hover .ssc-icon { transform: scale(1.1); }

.ssc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.service-select-card.selected .ssc-title { color: #fff; }

.ssc-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4;
  transition: color 0.2s;
}
.service-select-card.selected .ssc-desc { color: rgba(255,255,255,0.7); }


/* ─────────────────────────────────────────────
   58. QUOTE FORM — Option Pills (Step 2)
───────────────────────────────────────────── */
.qs-field {
  margin-bottom: 28px;
}

.qs-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--body);
  display: block;
  margin-bottom: 12px;
}

.qs-label .qs-hint {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-left: 6px;
}

/* Radio-pill options */
.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-pill {
  padding: 10px 18px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  background: var(--white);
}
.option-pill:hover:not(.selected) { border-color: rgba(0,0,0,0.28); }
.option-pill.selected {
  border-color: var(--nav-bg);
  background: var(--nav-bg);
  color: #fff;
}

/* Checkbox-style multi-select pills */
.option-pill.multi.selected {
  border-color: #21759B;
  background: #21759B;
  color: #fff;
}

/* Yes/No toggle */
.yn-toggle {
  display: flex;
  gap: 10px;
}

.yn-btn {
  width: 80px;
  height: 44px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
  color: var(--body);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.yn-btn:hover:not(.selected) { border-color: rgba(0,0,0,0.28); }
.yn-btn.selected {
  border-color: var(--nav-bg);
  background: var(--nav-bg);
  color: #fff;
}


/* ─────────────────────────────────────────────
   59. QUOTE FORM — Text inputs, select, textarea
───────────────────────────────────────────── */
.qs-input,
.qs-select,
.qs-textarea {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  color: var(--body);
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.qs-input,
.qs-select { height: 52px; padding: 0 18px; }
.qs-textarea { padding: 16px 18px; min-height: 120px; resize: vertical; }
.qs-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23757575' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.qs-input:focus,
.qs-select:focus,
.qs-textarea:focus {
  border-color: var(--nav-bg);
  box-shadow: 0 0 0 4px rgba(17,17,17,0.07);
}

.qs-input.error,
.qs-textarea.error { border-color: #e74c3c; }

/* Two-col grid for name/email etc */
.qs-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


/* ─────────────────────────────────────────────
   60. QUOTE FORM — Budget Slider
───────────────────────────────────────────── */
.budget-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.budget-card {
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 16px 12px;
  cursor: pointer;
  text-align: center;
  user-select: none;
  transition: border-color 0.18s, background 0.18s, color 0.18s, transform 0.18s;
  background: var(--white);
}
.budget-card:hover:not(.selected) {
  border-color: rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
.budget-card.selected {
  border-color: var(--nav-bg);
  background: var(--nav-bg);
}

.budget-card-amount {
  font-size: 17px;
  font-weight: 800;
  color: var(--body);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
  transition: color 0.18s;
}
.budget-card.selected .budget-card-amount { color: #fff; }

.budget-card-label {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.3;
  transition: color 0.18s;
}
.budget-card.selected .budget-card-label { color: rgba(255,255,255,0.7); }


/* ─────────────────────────────────────────────
   61. QUOTE FORM — Review Summary (Step 5)
───────────────────────────────────────────── */
.review-card {
  background: var(--section-gray);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  margin-bottom: 28px;
}

.review-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.review-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}
.review-row:last-child { margin-bottom: 0; }

.review-key {
  font-weight: 600;
  color: var(--muted);
  min-width: 140px;
  flex-shrink: 0;
}

.review-val {
  font-weight: 300;
  color: var(--body);
  line-height: 1.5;
}

.review-edit-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  float: right;
  transition: color 0.2s;
}
.review-edit-link:hover { color: var(--body); }

/* Final submit button */
.btn-submit-quote {
  width: 100%;
  height: 56px;
  background: var(--nav-bg);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-submit-quote:hover { background: #222; transform: translateY(-1px); }

/* Success card */
.quote-success {
  display: none;
  text-align: center;
  padding: 80px 32px;
  animation: fadeUp 0.5s ease both;
}
.quote-success.visible { display: block; }

.quote-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00B894, #00a383);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.quote-success-icon svg { width: 36px; height: 36px; color: #fff; }

.quote-success h2 {
  font-size: 40px;
  font-weight: 300;
  color: var(--body);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.quote-success p {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
   62. QUOTE FORM — Nav Buttons
───────────────────────────────────────────── */
.qs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.btn-qs-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.btn-qs-back:hover { color: var(--body); }
.btn-qs-back svg { width: 18px; height: 18px; }

.btn-qs-next {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--nav-bg);
  border: none;
  border-radius: var(--radius);
  height: 50px;
  padding: 0 28px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-qs-next:hover { background: #222; transform: translateY(-1px); }
.btn-qs-next:disabled {
  background: rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.3);
  cursor: not-allowed;
  transform: none;
}
.btn-qs-next svg { width: 18px; height: 18px; }

/* Step counter label */
.qs-step-count {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}



/* ─────────────────────────────────────────────
   63. TEMPLATES — Filter Tabs
───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 18px;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.1);
  background: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  user-select: none;
}
.filter-btn:hover:not(.active) {
  border-color: rgba(0,0,0,0.25);
  color: var(--body);
}
.filter-btn.active {
  background: var(--nav-bg);
  border-color: var(--nav-bg);
  color: #fff;
}

.filter-count {
  font-size: 11px;
  font-weight: 800;
  background: rgba(255,255,255,0.2);
  padding: 1px 7px;
  border-radius: 20px;
  line-height: 1.6;
}
.filter-btn:not(.active) .filter-count {
  background: rgba(0,0,0,0.07);
  color: var(--muted);
}

/* Results count */
.results-count {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 8px;
}
.results-count strong { font-weight: 700; color: var(--body); }

/* ─────────────────────────────────────────────
   64. TEMPLATES — Section header row
───────────────────────────────────────────── */
.templates-section {
  padding: 72px 0 0;
}
.templates-section:last-of-type {
  padding-bottom: 96px;
}

.ts-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.ts-header-left h2 {
  font-size: 30px;
  font-weight: 300;
  color: var(--body);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.ts-header-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
}

.ts-view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.ts-view-all:hover { color: var(--body); }

/* ─────────────────────────────────────────────
   65. TEMPLATES — Template Card
───────────────────────────────────────────── */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Hide/show filtered items */
.tpl-card[data-hidden="true"] {
  display: none;
}

.tpl-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.tpl-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0,0,0,0.18) 0 12px 32px;
}

/* Thumbnail area */
.tpl-thumb {
  width: 100%;
  aspect-ratio: 4 / 2.8;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.tpl-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14px;
  position: relative;
}

/* Badge on thumbnail */
.tpl-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.tpl-badge--new      { background: #00B894; color: #fff; }
.tpl-badge--popular  { background: #FF9800; color: #fff; }
.tpl-badge--free     { background: #21759B; color: #fff; }
.tpl-badge--featured { background: #6C5CE7; color: #fff; }
.tpl-badge--pro      { background: #E17055; color: #fff; }

/* Price tag */
.tpl-price {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.tpl-price--free { background: rgba(0,184,148,0.85); }

/* Hover overlay with buttons */
.tpl-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s;
  z-index: 3;
}
.tpl-card:hover .tpl-overlay { background: rgba(0,0,0,0.45); }

.tpl-overlay-btn {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  height: 38px;
  padding: 0 18px;
  border-radius: 50px;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.tpl-card:hover .tpl-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}
.tpl-card:hover .tpl-overlay-btn:nth-child(2) { transition-delay: 0.05s; }

.tpl-overlay-btn--preview {
  background: rgba(255,255,255,0.95);
  color: var(--body);
}
.tpl-overlay-btn--buy {
  background: var(--nav-bg);
  color: #fff;
}
.tpl-overlay-btn--free-dl {
  background: #00B894;
  color: #fff;
}
.tpl-overlay-btn svg { width: 13px; height: 13px; }

/* Card body */
.tpl-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tpl-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.tpl-cat-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}
.cat-html  { background: rgba(255,152,0,0.1);  color: #FF9800; }
.cat-wp    { background: rgba(33,117,155,0.1);  color: #21759B; }
.cat-3d    { background: rgba(108,92,231,0.1);  color: #6C5CE7; }
.cat-plugin{ background: rgba(0,184,148,0.1);   color: #00B894; }

.tpl-stack {
  font-size: 11px;
  font-weight: 300;
  color: rgba(0,0,0,0.3);
}

.tpl-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 5px;
  line-height: 1.3;
}

.tpl-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}

.tpl-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.tpl-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(0,0,0,0.35);
}
.tpl-stat svg { width: 13px; height: 13px; }

.tpl-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.tpl-stars span { font-size: 11px; color: #FBBC04; }
.tpl-stars .rating-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 2px;
}

/* ─────────────────────────────────────────────
   66. TEMPLATES — Thumbnail Gradients
───────────────────────────────────────────── */
/* HTML templates */
.tt-h1  { background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%); }
.tt-h2  { background: linear-gradient(145deg, #0f3460 0%, #533483 100%); }
.tt-h3  { background: linear-gradient(145deg, #1e3a1e 0%, #2d5a2d 100%); }
.tt-h4  { background: linear-gradient(145deg, #4a1942 0%, #8e3b7a 100%); }
.tt-h5  { background: linear-gradient(145deg, #0d1b2a 0%, #1a3a5c 100%); }
.tt-h6  { background: linear-gradient(145deg, #2a1a0a 0%, #6b3a1a 100%); }

/* WordPress themes */
.tt-wp1 { background: linear-gradient(145deg, #1a2a6c 0%, #b21f1f 70%, #fdbb2d 100%); }
.tt-wp2 { background: linear-gradient(145deg, #134e5e 0%, #71b280 100%); }
.tt-wp3 { background: linear-gradient(145deg, #232526 0%, #414345 100%); }
.tt-wp4 { background: linear-gradient(145deg, #3a1c71 0%, #d76d77 60%, #ffaf7b 100%); }
.tt-wp5 { background: linear-gradient(145deg, #0a0a0a 0%, #252525 100%); }
.tt-wp6 { background: linear-gradient(145deg, #005c97 0%, #363795 100%); }

/* 3D animated */
.tt-3d1 { background: radial-gradient(ellipse at 30% 40%, #7B2FBE 0%, #0f0f1a 60%); }
.tt-3d2 { background: radial-gradient(ellipse at 70% 30%, #00d4ff 0%, #0a0a1a 60%); }
.tt-3d3 { background: radial-gradient(ellipse at 50% 50%, #ff6b6b 0%, #1a0a0a 60%); }
.tt-3d4 { background: radial-gradient(ellipse at 20% 60%, #00f5a0 0%, #0a1a0f 65%); }

/* Plugins */
.tt-p1  { background: linear-gradient(145deg, #1a3a1e 0%, #2d5a2d 100%); }
.tt-p2  { background: linear-gradient(145deg, #1a1a2e 0%, #21759B 100%); }
.tt-p3  { background: linear-gradient(145deg, #2a1a0a 0%, #d4580e 100%); }
.tt-p4  { background: linear-gradient(145deg, #4a2c82 0%, #6C5CE7 100%); }
.tt-p5  { background: linear-gradient(145deg, #0d3b4f 0%, #0984e3 100%); }
.tt-p6  { background: linear-gradient(145deg, #3a1a1a 0%, #c0392b 100%); }

/* ─────────────────────────────────────────────
   67. TEMPLATES — Browser Mockup (inside cards)
───────────────────────────────────────────── */
.browser-mock {
  width: 88%;
  background: var(--white);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  overflow: hidden;
}

.bm-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #f0f0f0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.bm-dot { width: 7px; height: 7px; border-radius: 50%; }
.bm-dot.r { background: #FF5F57; }
.bm-dot.y { background: #FFBD2E; }
.bm-dot.g { background: #28CA41; }
.bm-url {
  flex: 1;
  background: #e0e0e0;
  height: 6px;
  border-radius: 3px;
  margin-left: 5px;
}

.bm-body { padding: 8px; }

/* Content rows inside browser mock */
.bm-hero-block {
  height: 52px;
  border-radius: 4px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}

.bm-row { display: flex; gap: 5px; margin-bottom: 5px; }

.bm-block {
  height: 6px;
  border-radius: 2px;
  background: rgba(0,0,0,0.1);
}
.bm-block.w30 { width: 30%; }
.bm-block.w50 { width: 50%; }
.bm-block.w70 { width: 70%; }
.bm-block.w100 { width: 100%; }
.bm-block.accent { background: rgba(0,0,0,0.2); }

.bm-card-row { display: flex; gap: 5px; margin-top: 6px; }
.bm-mini-card {
  flex: 1;
  height: 28px;
  border-radius: 4px;
  background: rgba(0,0,0,0.07);
}
.bm-nav {
  display: flex;
  justify-content: space-between;
  padding: 5px 2px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.bm-nav-dot {
  width: 28px;
  height: 5px;
  border-radius: 2px;
  background: rgba(0,0,0,0.12);
}
.bm-nav-dot.active { background: rgba(0,0,0,0.3); }

/* ─────────────────────────────────────────────
   68. TEMPLATES — 3D Card Visuals
───────────────────────────────────────────── */
/* Floating sphere */
.sphere-3d {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  animation: float3d 3s ease-in-out infinite;
}
.sphere-3d--violet {
  background: radial-gradient(circle at 35% 35%, #d4a8ff, #7B2FBE 55%, #3a0f6b);
  box-shadow: 0 20px 60px rgba(123,47,190,0.6), inset -10px -10px 20px rgba(0,0,0,0.3);
}
.sphere-3d--cyan {
  background: radial-gradient(circle at 35% 35%, #b8f5ff, #00d4ff 55%, #003d52);
  box-shadow: 0 20px 60px rgba(0,212,255,0.5), inset -10px -10px 20px rgba(0,0,0,0.3);
}
.sphere-3d--red {
  background: radial-gradient(circle at 35% 35%, #ffb8b8, #ff6b6b 55%, #8b0000);
  box-shadow: 0 20px 60px rgba(255,107,107,0.5), inset -10px -10px 20px rgba(0,0,0,0.3);
}
.sphere-3d--green {
  background: radial-gradient(circle at 35% 35%, #b8ffde, #00f5a0 55%, #00301e);
  box-shadow: 0 20px 60px rgba(0,245,160,0.4), inset -10px -10px 20px rgba(0,0,0,0.3);
}

/* Ring around sphere */
.ring-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 30px;
  border-radius: 50%;
  transform: translate(-50%, -10%) rotateX(75deg);
}
.ring-3d--violet { border: 3px solid rgba(212,168,255,0.5); }
.ring-3d--cyan   { border: 3px solid rgba(184,245,255,0.5); }
.ring-3d--red    { border: 3px solid rgba(255,184,184,0.5); }
.ring-3d--green  { border: 3px solid rgba(184,255,222,0.5); }

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}
.p1 { width: 6px;  height: 6px;  top: 20%; left: 15%; animation-delay: 0s; }
.p2 { width: 4px;  height: 4px;  top: 60%; left: 80%; animation-delay: 0.8s; }
.p3 { width: 8px;  height: 8px;  top: 75%; left: 20%; animation-delay: 1.6s; }
.p4 { width: 5px;  height: 5px;  top: 30%; left: 70%; animation-delay: 0.4s; }

.particle--violet { background: rgba(212,168,255,0.7); }
.particle--cyan   { background: rgba(184,245,255,0.7); }
.particle--red    { background: rgba(255,184,184,0.7); }
.particle--green  { background: rgba(184,255,222,0.7); }

/* Grid floor lines */
.grid-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Tech label overlay */
.tech-label-3d {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@keyframes float3d {
  0%, 100% { transform: translate(-50%, -55%); }
  50%       { transform: translate(-50%, -62%); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50%       { transform: translateY(-8px) scale(1.2); opacity: 1; }
}

/* ─────────────────────────────────────────────
   69. TEMPLATES — Plugin Card Visuals
───────────────────────────────────────────── */
.plugin-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.plugin-icon-bg {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.tpl-card:hover .plugin-icon-bg { transform: scale(1.12) translateY(-4px); }

/* Plugin demo miniatures */
.plugin-demo {
  width: 82%;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Tabs plugin */
.plug-tabs-nav {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.plug-tab {
  flex: 1;
  height: 20px;
  border-radius: 4px 4px 0 0;
  background: rgba(255,255,255,0.08);
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
}
.plug-tab.active {
  background: rgba(255,255,255,0.9);
  color: #333;
}
.plug-tab-content {
  background: rgba(255,255,255,0.05);
  border-radius: 0 4px 4px 4px;
  padding: 6px;
}

/* Modal plugin */
.plug-modal-backdrop {
  background: rgba(0,0,0,0.3);
  border-radius: 5px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plug-modal-box {
  background: var(--white);
  border-radius: 5px;
  padding: 8px;
  width: 80%;
}
.plug-modal-title { height: 5px; background: #333; border-radius: 2px; width: 60%; margin-bottom: 6px; }
.plug-modal-line  { height: 3px; background: #e0e0e0; border-radius: 2px; margin-bottom: 3px; }
.plug-modal-btn   { height: 12px; background: #111; border-radius: 3px; width: 40%; margin-top: 6px; }

/* Slider plugin */
.plug-slider {
  position: relative;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
}
.plug-slide {
  position: absolute;
  inset: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}
.plug-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  z-index: 1;
}
.plug-slide-arrow.l { left: 5px; }
.plug-slide-arrow.r { right: 5px; }
.plug-slider-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 5px;
}
.plug-sdot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.plug-sdot.active { background: rgba(255,255,255,0.8); }

/* Form validator */
.plug-form { display: flex; flex-direction: column; gap: 5px; }
.plug-field { height: 12px; border-radius: 3px; background: rgba(255,255,255,0.1); position: relative; }
.plug-field.ok::after  { content: '✓'; position:absolute; right: 4px; top: -1px; font-size: 8px; color: #00B894; }
.plug-field.err::after { content: '✕'; position:absolute; right: 4px; top: -1px; font-size: 8px; color: #e74c3c; }
.plug-field.err { border: 1px solid rgba(231,76,60,0.5); }
.plug-submit { height: 14px; background: #111; border-radius: 3px; margin-top: 2px; }

/* ─────────────────────────────────────────────
   70. TEMPLATES — Card grid stagger
───────────────────────────────────────────── */
.templates-grid .tpl-card:nth-child(1) { animation: fadeUp 0.5s 0.04s ease both; }
.templates-grid .tpl-card:nth-child(2) { animation: fadeUp 0.5s 0.10s ease both; }
.templates-grid .tpl-card:nth-child(3) { animation: fadeUp 0.5s 0.16s ease both; }
.templates-grid .tpl-card:nth-child(4) { animation: fadeUp 0.5s 0.22s ease both; }
.templates-grid .tpl-card:nth-child(5) { animation: fadeUp 0.5s 0.28s ease both; }
.templates-grid .tpl-card:nth-child(6) { animation: fadeUp 0.5s 0.34s ease both; }


/* ─────────────────────────────────────────────
   71. PRICING — Billing Toggle
───────────────────────────────────────────── */
.billing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  padding: 5px;
  box-shadow: rgba(0,0,0,0.06) 0 2px 8px;
}

.billing-option {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  user-select: none;
  white-space: nowrap;
}
.billing-option.active {
  background: var(--nav-bg);
  color: #fff;
}

.billing-save-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #00B894;
  background: rgba(0,184,148,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,184,148,0.2);
  display: none;
}
.billing-save-badge.visible { display: inline-block; }

/* ─────────────────────────────────────────────
   72. PRICING — Service Tabs
───────────────────────────────────────────── */
.pricing-tabs-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.pricing-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 20px;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.1);
  background: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.pricing-tab:hover:not(.active) {
  border-color: rgba(0,0,0,0.22);
  color: var(--body);
}
.pricing-tab.active {
  background: var(--nav-bg);
  border-color: var(--nav-bg);
  color: #fff;
}
.pricing-tab-icon { font-size: 16px; }

/* ─────────────────────────────────────────────
   73. PRICING — Tier Cards Grid
───────────────────────────────────────────── */
.pricing-panel { display: none; }
.pricing-panel.active {
  display: block;
  animation: fadeUp 0.4s ease both;
}

.pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-tier-card {
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  border: 2px solid rgba(0,0,0,0.08);
  background: var(--white);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pricing-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0,0,0,0.12) 0 12px 32px;
}

/* Featured / recommended card */
.pricing-tier-card.featured {
  background: var(--nav-bg);
  border-color: var(--nav-bg);
  transform: scale(1.03);
  box-shadow: rgba(17,17,17,0.28) 0 16px 40px;
  z-index: 1;
}
.pricing-tier-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: rgba(17,17,17,0.35) 0 20px 48px;
}

.ptc-recommended {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00B894, #00a383);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.ptc-tier-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.pricing-tier-card.featured .ptc-tier-name { color: rgba(255,255,255,0.55); }

.ptc-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 4px;
}

.ptc-currency {
  font-size: 22px;
  font-weight: 800;
  color: var(--body);
  line-height: 1.3;
  margin-bottom: 4px;
}
.pricing-tier-card.featured .ptc-currency { color: rgba(255,255,255,0.75); }

.ptc-amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--body);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-tier-card.featured .ptc-amount { color: #fff; }

.ptc-period {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  padding-bottom: 8px;
}
.pricing-tier-card.featured .ptc-period { color: rgba(255,255,255,0.5); }

.ptc-original-price {
  font-size: 15px;
  font-weight: 300;
  color: rgba(0,0,0,0.3);
  text-decoration: line-through;
  margin-bottom: 8px;
  min-height: 22px;
}
.pricing-tier-card.featured .ptc-original-price { color: rgba(255,255,255,0.35); }

.ptc-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  min-height: 68px;
}
.pricing-tier-card.featured .ptc-subtitle { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }

/* Feature list */
.ptc-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.ptc-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.45;
}
.pricing-tier-card.featured .ptc-feature { color: rgba(255,255,255,0.85); }

.ptc-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,184,148,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ptc-check svg { width: 9px; height: 9px; color: #00B894; }
.pricing-tier-card.featured .ptc-check {
  background: rgba(255,255,255,0.15);
}
.pricing-tier-card.featured .ptc-check svg { color: #fff; }

.ptc-feature.muted-feature { opacity: 0.35; }

/* CTA button */
.ptc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
  border: 2px solid rgba(0,0,0,0.12);
  background: transparent;
  color: var(--body);
}
.ptc-cta:hover { border-color: rgba(0,0,0,0.28); background: rgba(0,0,0,0.03); transform: translateY(-1px); }

.pricing-tier-card.featured .ptc-cta {
  background: #fff;
  border-color: #fff;
  color: var(--nav-bg);
}
.pricing-tier-card.featured .ptc-cta:hover { background: rgba(255,255,255,0.9); }

/* Timeline chip inside card */
.ptc-timeline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 14px;
  justify-content: center;
}
.ptc-timeline svg { width: 13px; height: 13px; flex-shrink: 0; }
.pricing-tier-card.featured .ptc-timeline { color: rgba(255,255,255,0.5); }

/* ─────────────────────────────────────────────
   74. PRICING — Comparison Table
───────────────────────────────────────────── */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.07);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 640px;
}

.comparison-table thead tr {
  border-bottom: 2px solid rgba(0,0,0,0.08);
}

.ct-header-cell {
  padding: 24px 20px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--body);
  vertical-align: bottom;
}
.ct-header-cell:first-child {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  width: 42%;
}

.ct-header-tier {
  font-size: 20px;
  font-weight: 800;
  color: var(--body);
  display: block;
  margin-bottom: 2px;
}

.ct-header-price {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

.ct-header-cell.featured-col {
  background: var(--nav-bg);
  color: #fff;
}
.ct-header-cell.featured-col .ct-header-tier { color: #fff; }
.ct-header-cell.featured-col .ct-header-price { color: rgba(255,255,255,0.55); }

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.15s;
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(0,0,0,0.015); }

.ct-section-row td {
  padding: 16px 20px 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--section-gray);
}

.ct-feature-cell {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.45;
}

.ct-val-cell {
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
}
.ct-val-cell.featured-col {
  background: rgba(17,17,17,0.03);
}

.ct-yes { color: #00B894; font-size: 18px; }
.ct-no  { color: rgba(0,0,0,0.2); font-size: 18px; }
.ct-txt {
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
}
.ct-txt-muted {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

/* ─────────────────────────────────────────────
   75. PRICING — Always Included
───────────────────────────────────────────── */
.always-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.always-item {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.always-item:hover {
  transform: translateY(-2px);
  box-shadow: rgba(0,0,0,0.08) 0 6px 20px;
}

.always-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.always-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 6px;
}

.always-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   76. PRICING — Enterprise Band
───────────────────────────────────────────── */
.enterprise-band {
  border-radius: var(--radius-card);
  background: var(--nav-bg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.enterprise-band h2 {
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.enterprise-band p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  max-width: 480px;
}

.enterprise-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.btn-enterprise-primary {
  height: 50px;
  padding: 0 32px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--nav-bg);
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-enterprise-primary:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

.btn-enterprise-ghost {
  height: 50px;
  padding: 0 32px;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.2);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-enterprise-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ─────────────────────────────────────────────
   77. PRICING — Trust Row
───────────────────────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-row-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}
.trust-row-item svg { width: 18px; height: 18px; color: #00B894; }


/* ═══════════════════════════════════════════════════════════════════════════
   WORDPRESS OVERRIDES
   Added for WordPress theme integration
═══════════════════════════════════════════════════════════════════════════ */

/* Active menu item highlighting */
.nav-links .current-menu-item > a,
.nav-links .current-page-ancestor > a,
.nav-links a.active {
    color: #fff;
}

.footer-nav .current-menu-item > a,
.footer-nav .current-page-ancestor > a {
    color: var(--body);
}

/* Page transition overlay */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    background: #111;
    opacity: 1;
    z-index: 9999;
    pointer-events: none;
}

/* ─────────────────────────────────────────────
   PORTFOLIO CAROUSEL (Homepage)
───────────────────────────────────────────── */
.portfolio-carousel-section {
    padding: 96px 0;
    background: var(--white);
}

.portfolio-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    padding-left: 16px;
    border-left: 3px solid var(--body);
}

.portfolio-carousel-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--body);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.portfolio-carousel-nav {
    display: flex;
    gap: 12px;
}

.portfolio-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body);
    transition: all 0.2s ease;
}

.portfolio-nav-btn:hover {
    background: var(--body);
    border-color: var(--body);
    color: var(--white);
}

.portfolio-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.portfolio-nav-btn:disabled:hover {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--body);
}

.portfolio-carousel-wrapper {
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.portfolio-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    cursor: grab;
}

.portfolio-carousel-track:active {
    cursor: grabbing;
}

.portfolio-carousel-track.is-dragging {
    transition: none;
}

/* Portfolio Card */
.portfolio-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    display: block;
    text-decoration: none;
}

.portfolio-card-image {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
}

.portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card-img {
    transform: scale(1.05);
}

.portfolio-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f0ff 100%);
    color: var(--muted);
}

.portfolio-placeholder-1 { background: linear-gradient(135deg, #e8ffe8 0%, #c8ffc8 100%); }
.portfolio-placeholder-2 { background: linear-gradient(135deg, #fff0e8 0%, #ffe0c8 100%); }
.portfolio-placeholder-3 { background: linear-gradient(135deg, #f0e8ff 0%, #e0c8ff 100%); }
.portfolio-placeholder-4 { background: linear-gradient(135deg, #e8f0ff 0%, #c8e0ff 100%); }

.portfolio-card-tags {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tag {
    background: rgba(255, 255, 255, 0.95);
    color: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.portfolio-card-content {
    padding: 20px 0 0;
}

.portfolio-card-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.portfolio-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--body);
    line-height: 1.4;
    transition: color 0.2s;
}

.portfolio-card:hover .portfolio-card-title {
    color: #666;
}

/* View All Button */
.portfolio-carousel-section .view-all-wrap {
    margin-top: 48px;
    text-align: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid var(--body);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--body);
    background: transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--body);
    color: var(--white);
}

/* Portfolio Carousel Responsive */
@media (max-width: 1024px) {
    .portfolio-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .portfolio-carousel-section {
        padding: 64px 0;
    }

    .portfolio-carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding-left: 12px;
    }

    .portfolio-carousel-nav {
        align-self: flex-end;
    }

    .portfolio-card {
        flex: 0 0 calc(85% - 12px);
        min-width: 260px;
    }

    .portfolio-card-title {
        font-size: 16px;
    }

    .portfolio-tag {
        font-size: 10px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .portfolio-card {
        flex: 0 0 100%;
        min-width: auto;
    }

    .portfolio-nav-btn {
        width: 42px;
        height: 42px;
    }
}

/* ─────────────────────────────────────────────
   SINGLE PORTFOLIO PAGE
───────────────────────────────────────────── */

/* Project Hero */
.project-hero {
    padding: 120px 0 64px;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.project-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.project-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--body);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 800px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.project-tag {
    background: var(--section-gray);
    color: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-meta-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.project-meta-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--body);
}

.project-live-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--body);
    transition: opacity 0.2s;
}

.project-live-link:hover {
    opacity: 0.7;
}

/* Project Gallery Hero */
.project-gallery-hero {
    padding: 64px 0;
    background: var(--section-gray);
}

.inner-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Scroll-on-Hover Gallery Grid */
.gallery-scroll-grid {
    display: grid;
    gap: 24px;
}

.gallery-cols-1 {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-cols-4 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-scroll-item {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.gallery-scroll-window {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.gallery-cols-1 .gallery-scroll-window {
    height: 500px;
}

.gallery-scroll-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 10s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: translateY(0);
}

.gallery-scroll-window:hover .gallery-scroll-img {
    transform: translateY(calc(-100% + 400px));
}

.gallery-cols-1 .gallery-scroll-window:hover .gallery-scroll-img {
    transform: translateY(calc(-100% + 500px));
}

/* Zoom Icon on Gallery Items */
.gallery-scroll-item {
    cursor: pointer;
}

.gallery-zoom-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.gallery-zoom-icon svg {
    stroke: var(--body);
}

.gallery-scroll-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* Legacy gallery classes (keep for backward compatibility) */
.project-gallery-grid {
    display: grid;
    gap: 24px;
}

.project-gallery-single {
    grid-template-columns: 1fr;
}

.project-gallery-multi {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
}

.project-gallery-item {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-gallery-item-0 {
    grid-column: span 2;
}

/* Project Content */
.project-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

.project-section {
    margin-bottom: 48px;
}

.project-section:last-child {
    margin-bottom: 0;
}

.project-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--body);
    margin-bottom: 20px;
    text-transform: lowercase;
}

.project-section-content {
    font-size: 17px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

.project-section-content p {
    margin-bottom: 16px;
}

.project-section-content p:last-child {
    margin-bottom: 0;
}

.project-section-content ul,
.project-section-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.project-section-content li {
    margin-bottom: 8px;
    list-style: disc;
}

/* Project Content Headings */
.project-section-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--body);
    margin: 40px 0 20px 0;
    text-transform: lowercase;
}

.project-section-content h2:first-child {
    margin-top: 0;
}

.project-section-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--body);
    margin: 32px 0 16px 0;
}

.project-section-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--body);
    margin: 24px 0 12px 0;
}

.project-section-content strong {
    font-weight: 600;
    color: var(--body);
}

.project-section-content a {
    color: var(--body);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.project-section-content a:hover {
    opacity: 0.7;
}

.project-section-content blockquote {
    border-left: 3px solid var(--body);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--muted);
}

/* Project Sidebar - White Card Style (similar to Solution Sidebar) */
.project-sidebar {
    position: sticky;
    top: 110px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.project-sidebar .sidebar-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.project-sidebar .sidebar-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-sidebar .sidebar-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--body);
    line-height: 1.5;
    margin: 0;
}

.project-sidebar .sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    text-decoration: none;
    transition: color 0.2s;
}

.project-sidebar .sidebar-link:hover {
    color: #0066cc;
}

.project-sidebar .sidebar-link svg {
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.2s;
}

.project-sidebar .sidebar-link:hover svg {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Legacy glance styles - kept for backwards compatibility */
.project-glance {
    background: var(--section-gray);
    border-radius: var(--radius-card);
    padding: 32px;
}

.project-glance-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--body);
    margin-bottom: 24px;
    text-transform: lowercase;
}

.project-glance-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-glance-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.project-glance-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.project-glance-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.project-glance-content {
    font-size: 15px;
    font-weight: 400;
    color: var(--body);
    line-height: 1.5;
}

/* More Gallery Images */
.project-gallery-grid-more {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.project-gallery-more-item {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-gallery-more-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.project-gallery-more-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.project-gallery-more-item:hover img {
    transform: scale(1.03);
}

.gallery-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-more-overlay svg {
    stroke: #fff;
    width: 32px;
    height: 32px;
}

.project-gallery-more-item:hover .gallery-more-overlay {
    opacity: 1;
}

/* Project FAQs */
.project-faqs-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--body);
    margin-bottom: 32px;
    text-transform: lowercase;
}

.project-faqs-list {
    max-width: 800px;
}

.project-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.project-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.project-faq-question span {
    font-size: 17px;
    font-weight: 600;
    color: var(--body);
    line-height: 1.4;
}

.project-faq-question .faq-chevron {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.3s ease;
}

.project-faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.project-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.project-faq-item.active .project-faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.project-faq-answer p {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
}

/* Project CTA */
.project-cta-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.project-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--body);
    margin-bottom: 16px;
    text-transform: lowercase;
}

.project-cta-text {
    font-size: 17px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.project-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Related Projects */
.project-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Single Portfolio Responsive */
@media (max-width: 1024px) {
    .project-content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .project-sidebar {
        position: static;
    }

    .project-gallery-multi {
        grid-template-columns: 1fr;
    }

    .project-gallery-item-0 {
        grid-column: span 1;
    }

    .project-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery scroll responsive */
    .gallery-cols-3,
    .gallery-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-scroll-window {
        height: 350px;
    }

    .gallery-scroll-window:hover .gallery-scroll-img {
        transform: translateY(calc(-100% + 350px));
    }
}

@media (max-width: 768px) {
    .project-hero {
        padding: 100px 0 48px;
    }

    .project-title {
        font-size: 28px;
    }

    .project-meta {
        gap: 24px;
    }

    .project-gallery-hero {
        padding: 40px 0;
    }

    .inner-wide {
        padding: 0 20px;
    }

    .project-gallery-grid-more {
        grid-template-columns: 1fr;
    }

    .project-cta-title {
        font-size: 28px;
    }

    .project-related-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery scroll mobile */
    .gallery-cols-2,
    .gallery-cols-3,
    .gallery-cols-4 {
        grid-template-columns: 1fr;
    }

    .gallery-scroll-window {
        height: 300px;
    }

    .gallery-scroll-window:hover .gallery-scroll-img {
        transform: translateY(calc(-100% + 300px));
    }

    .gallery-cols-1 .gallery-scroll-window {
        height: 350px;
    }

    .gallery-cols-1 .gallery-scroll-window:hover .gallery-scroll-img {
        transform: translateY(calc(-100% + 350px));
    }
}

@media (max-width: 480px) {
    .project-tags {
        gap: 8px;
    }

    .project-tag {
        font-size: 11px;
        padding: 6px 10px;
    }

    .project-cta-buttons {
        flex-direction: column;
    }

    .project-cta-buttons .btn-primary,
    .project-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ─────────────────────────────────────────────
   PORTFOLIO ARCHIVE PAGE
───────────────────────────────────────────── */
.portfolio-section .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--body);
}

.filter-btn.active {
    background: var(--body);
    border-color: var(--body);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-card-large {
    display: block;
    text-decoration: none;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-card-large.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.portfolio-card-large .portfolio-card-image {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.portfolio-card-large .portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card-large:hover .portfolio-card-img {
    transform: scale(1.05);
}

.portfolio-card-large .portfolio-card-content {
    padding: 20px 0 0;
}

.portfolio-card-large .portfolio-card-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 6px;
    line-height: 1.4;
}

.portfolio-card-large .portfolio-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--body);
    line-height: 1.3;
    transition: color 0.2s;
}

.portfolio-card-large:hover .portfolio-card-title {
    color: #555;
}

/* Portfolio Archive Responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .portfolio-section .filter-bar {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .portfolio-card-large .portfolio-card-title {
        font-size: 18px;
    }
}

/* Portfolio Pagination */
.portfolio-pagination {
    margin-top: 64px;
    display: flex;
    justify-content: center;
}

.portfolio-pagination ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-pagination li {
    margin: 0;
}

.portfolio-pagination a,
.portfolio-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #e5e5e5;
    text-decoration: none;
    transition: all 0.2s ease;
}

.portfolio-pagination a:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

.portfolio-pagination .current {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

.portfolio-pagination .prev,
.portfolio-pagination .next {
    padding: 12px 24px;
}

.portfolio-pagination .prev svg,
.portfolio-pagination .next svg {
    width: 16px;
    height: 16px;
}

.portfolio-pagination .dots {
    border: none;
    background: transparent;
    padding: 12px 8px;
}

@media (max-width: 768px) {
    .portfolio-pagination {
        margin-top: 48px;
    }

    .portfolio-pagination ul {
        flex-wrap: wrap;
        gap: 6px;
    }

    .portfolio-pagination a,
    .portfolio-pagination span {
        padding: 10px 14px;
        font-size: 13px;
    }

    .portfolio-pagination .prev,
    .portfolio-pagination .next {
        padding: 10px 16px;
    }
}

/* Available Frameworks Section */
.frameworks-section {
    background: linear-gradient(135deg, #f5f0ff 0%, #e8f4ff 100%);
    padding: 80px 0;
}

.frameworks-title {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 48px;
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.framework-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.framework-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.framework-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.framework-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    text-align: center;
    white-space: nowrap;
}

/* Frameworks responsive */
@media (max-width: 1024px) {
    .frameworks-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .frameworks-section {
        padding: 60px 20px;
    }

    .frameworks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .framework-card {
        padding: 16px 12px;
    }

    .framework-logo {
        width: 36px;
        height: 36px;
    }

    .framework-name {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .frameworks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* WordPress admin bar spacing fix */
body.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

/* WordPress pagination styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 48px 0;
}

.pagination .nav-links {
    display: flex;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--body);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: var(--section-gray);
    border-color: rgba(0, 0, 0, 0.12);
}

.pagination .current {
    background: var(--body);
    color: var(--white);
    border-color: var(--body);
}

/* WordPress image alignment */
.alignleft {
    float: left;
    margin: 0 1.5em 1em 0;
}

.alignright {
    float: right;
    margin: 0 0 1em 1.5em;
}

.aligncenter {
    display: block;
    margin: 1em auto;
}

/* WordPress caption */
.wp-caption {
    max-width: 100%;
    margin-bottom: 1em;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
    margin-top: 0.5em;
}

/* Screen reader text (accessibility) */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* WordPress block editor styles */
.wp-block-image {
    margin-bottom: 1.5em;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.wp-block-quote {
    border-left: 4px solid var(--body);
    padding-left: 1.5em;
    margin: 1.5em 0;
    font-style: italic;
}

.wp-block-quote cite {
    display: block;
    margin-top: 0.5em;
    font-size: 14px;
    font-style: normal;
    color: var(--muted);
}

.wp-block-code {
    background: var(--section-gray);
    padding: 1.5em;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 14px;
}

.wp-block-separator {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 2em 0;
}

.wp-block-table {
    width: 100%;
    margin-bottom: 1.5em;
    border-collapse: collapse;
}

.wp-block-table td,
.wp-block-table th {
    padding: 0.75em 1em;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
}

.wp-block-table th {
    background: var(--section-gray);
    font-weight: 600;
}

/* ─────────────────────────────────────────────
   ADDITIONAL STYLES — Content Update
───────────────────────────────────────────── */

/* Hero CTA Center */
.hero-cta-center {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    pointer-events: auto;
}
.hero-cta-center a.btn-primary {
    padding: 5px 10px;
}
/* Form Footer Notes */
.form-footer-note {
    text-align: center;
    margin-top: 32px;
}

.form-response-time {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 8px;
}

.form-booking-link {
    font-size: 15px;
    color: var(--muted);
}

.form-booking-link a {
    font-weight: 600;
    text-decoration: underline;
}

/* Portfolio card filtering */
.card[data-hidden="true"] {
    display: none;
}

/* Portfolio filter bar spacing */
.portfolio-section .filter-bar {
    margin-bottom: 32px;
}

/* Services page single-column hero */
.page-hero-grid--single {
    grid-template-columns: 1fr;
    max-width: 680px;
}

/* ─────────────────────────────────────────────
   VIDEO TESTIMONIALS SECTION
───────────────────────────────────────────── */

.video-testimonials-section {
    padding: 80px 0;
    background: var(--gray-bg);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}

/* Large video card (left) */
.video-card-large {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.video-card-large img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.video-card-question {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.video-play-btn-large {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.video-play-btn-large svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.video-card-large:hover .video-play-btn-large {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

/* Small video cards grid (right) */
.video-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.video-card-small {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.video-card-small img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.video-play-btn-small {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #ef4444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    transition: transform 0.2s;
}

.video-play-btn-small svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.video-card-small:hover .video-play-btn-small {
    transform: scale(1.1);
}

/* Video Popup Modal */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.video-popup-overlay.active {
    display: flex;
}

.video-popup-content {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.video-popup-close:hover {
    opacity: 1;
}

.video-popup-iframe {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-popup-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-card-large {
        max-width: 400px;
        margin: 0 auto;
    }

    .video-card-question {
        font-size: 22px;
    }

    .video-popup-overlay {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .video-testimonials-section {
        padding: 60px 0;
    }

    .video-cards-grid {
        gap: 12px;
    }

    .video-card-question {
        font-size: 18px;
    }

    .video-play-btn-large {
        width: 52px;
        height: 52px;
    }

    .video-play-btn-large svg {
        width: 22px;
        height: 22px;
    }
}

/* ─────────────────────────────────────────────
   REVIEW CAROUSEL (Infinite Scroll)
───────────────────────────────────────────── */

.review-carousel-wrapper {
    margin-top: 60px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.review-carousel-wrapper::before,
.review-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.review-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-bg) 0%, transparent 100%);
}

.review-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-bg) 0%, transparent 100%);
}

.review-carousel-row {
    display: flex;
    margin-bottom: 16px;
    overflow: hidden;
}

.review-carousel-row:last-child {
    margin-bottom: 0;
}

.review-carousel-track {
    display: flex;
    gap: 16px;
    animation: scrollLeft 40s linear infinite;
    width: max-content;
}

.review-carousel-row[data-direction="right"] .review-carousel-track {
    animation: scrollRight 40s linear infinite;
}

/* Pause animation on hover */
.review-carousel-row:hover .review-carousel-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Review Card Mini */
.review-card-mini {
    flex-shrink: 0;
    width: 340px;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.review-quote-icon {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.review-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

/* Avatar colors */
.review-card-avatar.rca-blue { background: #4285f4; }
.review-card-avatar.rca-red { background: #ea4335; }
.review-card-avatar.rca-green { background: #34a853; }
.review-card-avatar.rca-yellow { background: #fbbc04; color: #333; }
.review-card-avatar.rca-purple { background: #673ab7; }
.review-card-avatar.rca-orange { background: #ff7043; }
.review-card-avatar.rca-pink { background: #e91e63; }
.review-card-avatar.rca-teal { background: #009688; }
.review-card-avatar.rca-indigo { background: #3f51b5; }
.review-card-avatar.rca-cyan { background: #00bcd4; }
.review-card-avatar.rca-lime { background: #8bc34a; }
.review-card-avatar.rca-rose { background: #f06292; }

.review-card-info {
    flex: 1;
    min-width: 0;
}

.review-card-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--body);
    line-height: 1.3;
}

.review-card-role {
    display: block;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.3;
}

.review-source-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .review-card-mini {
        width: 280px;
        padding: 20px;
    }

    .review-carousel-wrapper::before,
    .review-carousel-wrapper::after {
        width: 40px;
    }

    .review-carousel-track {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .review-card-mini {
        width: 260px;
        padding: 16px;
    }

    .review-quote-icon {
        font-size: 36px;
    }

    .review-card-text {
        font-size: 13px;
    }
}


/* ─────────────────────────────────────────────
   SOLUTION SINGLE PAGE — Additional Styles
───────────────────────────────────────────── */

/* Solution Single Page */
.single-solution .section--hero {
    padding: 50px 0 40px;
}

.single-solution .section {
    padding: 50px 0;
}

.solution-hero {
    width: 100%;
}

.solution-hero .section-cat-label {
    margin-bottom: 8px;
}

.solution-hero .page-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}

.solution-hero .lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 700px;
}

.solution-hero .hero-cta-row {
    margin-top: 20px;
}

.solution-hero .btn-primary,
.solution-hero .btn-ghost {
    height: 44px;
    font-size: 14px;
    padding: 0 20px;
}

.single-solution .section-heading {
    font-size: 24px;
    margin-bottom: 24px;
}

/* Breadcrumb */
.service-breadcrumb {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 16px;
}

.service-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.service-breadcrumb a:hover {
    color: var(--body);
}

.service-breadcrumb .sep {
    margin: 0 10px;
    opacity: 0.5;
}

/* Solution Content Layout with Sidebar */
.solution-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

@media (max-width: 900px) {
    .solution-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.solution-content {
    min-width: 0;
}

/* Solution Sidebar */
.solution-sidebar {
    position: sticky;
    top: 110px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sidebar-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 10px;
}

.sidebar-cat-btn {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, #333 0%, #111 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sidebar-cat-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--body);
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-tag:hover {
    border-color: var(--body);
    background: var(--body);
    color: #fff;
    transform: translateY(-1px);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    font-size: 13px;
    color: var(--body);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
}

.sidebar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00B894;
    font-size: 11px;
    font-weight: 700;
}

.sidebar-cta {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    padding: 18px;
    border-radius: 10px;
    text-align: center;
}

.sidebar-cta p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.sidebar-cta .btn-primary {
    background: #fff;
    color: #111;
    border-color: #fff;
    font-size: 13px;
    height: 42px;
    padding: 0 20px;
}

.sidebar-cta .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

.sidebar-cta .btn-primary svg {
    stroke: #111;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.solution-content-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--body);
}

.solution-content-text p {
    margin-bottom: 0.85em;
}

.solution-content-text p:last-child {
    margin-bottom: 0;
}

.solution-content-text h2,
.solution-content-text h3,
.solution-content-text h4 {
    margin-top: 1.1em;
    margin-bottom: 0.35em;
    font-weight: 700;
    color: var(--body);
}

.solution-content-text h2 {
    font-size: 18px;
}

.solution-content-text h3 {
    font-size: 16px;
}

.solution-content-text h4 {
    font-size: 14px;
}

.solution-content-text ul,
.solution-content-text ol {
    margin: 0.5em 0;
    padding-left: 1.1em;
}

.solution-content-text li {
    margin-bottom: 0.3em;
    line-height: 1.55;
}

.solution-content-text li:last-child {
    margin-bottom: 0;
}

.solution-content-text strong {
    font-weight: 700;
    color: var(--body);
}

.solution-content-text a {
    color: var(--body);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.solution-content-text a:hover {
    color: var(--muted);
}


/* Includes Grid */
.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .includes-grid {
        grid-template-columns: 1fr;
    }
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.07);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.include-item:hover {
    border-color: rgba(0,0,0,0.14);
    box-shadow: rgba(0,0,0,0.06) 0 4px 16px;
}

.include-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,184,148,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.include-check svg {
    width: 14px;
    height: 14px;
    color: #00B894;
    stroke: #00B894;
}

.include-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--body);
    margin: 0 0 4px 0;
}

.include-text p {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* Process Section */
.process-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--body);
    margin-bottom: 32px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 14px);
    right: calc(12.5% + 14px);
    height: 2px;
    background: rgba(0,0,0,0.08);
    z-index: 0;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--body);
    margin-bottom: 20px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    position: relative;
    z-index: 1;
}

.process-step:hover .step-num {
    background: var(--nav-bg);
    border-color: var(--nav-bg);
    color: #fff;
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--body);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
}

/* Related Section */
.related-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Service CTA Section */
.service-cta {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    padding: 20px 0;
}

.service-cta h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-cta p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Fix page-hero-grid for solution pages */
.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-hero-visual {
        order: -1;
    }
}

/* Section Heading */
.section-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

/* WordPress Block Content Fixes */
.solution-content-text .wp-block-list {
    list-style: disc;
    padding-left: 1.5em;
}

.solution-content-text .wp-block-list li {
    margin-bottom: 0.75em;
}

/* Strip Gutenberg wrapper margins */
.solution-content-text > .wp-block-group,
.solution-content-text > .wp-block-columns {
    margin-bottom: 1.5em;
}

/* Ensure proper list styling */
.solution-content-text ul {
    list-style-type: disc;
}

.solution-content-text ol {
    list-style-type: decimal;
}

.solution-content-text ul ul {
    list-style-type: circle;
}

.solution-content-text ul ul ul {
    list-style-type: square;
}


/* ─────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close svg {
    stroke: #fff;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-nav svg {
    stroke: #fff;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-content {
    max-width: calc(100vw - 160px);
    max-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: default;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-content img.is-zoomed {
    cursor: grab;
}

.lightbox-content img.is-panning {
    cursor: grabbing;
}

.gallery-lightbox.active .lightbox-content img {
    transform: scale(1);
    opacity: 1;
}

/* Lightbox Zoom Controls */
.lightbox-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.lightbox-zoom-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.lightbox-zoom-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-zoom-btn:active {
    transform: scale(0.95);
}

.lightbox-zoom-btn svg {
    stroke: #fff;
}

.lightbox-zoom-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-zoom-level {
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    min-width: 60px;
    justify-content: center;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: calc(100vw - 40px);
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .lightbox-controls {
        bottom: 16px;
        right: 16px;
        gap: 6px;
    }

    .lightbox-zoom-btn {
        width: 38px;
        height: 38px;
    }

    .lightbox-zoom-level {
        padding: 0 10px;
        font-size: 12px;
        min-width: 50px;
    }

    .lightbox-counter {
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .lightbox-controls {
        display: none;
    }
}
