/* ==========================================================================
   Akyana Theme — Main Stylesheet
   Dark-mode premium agency design
   ========================================================================== */

/* ---------- 0. CSS Variables ---------- */
:root {
  --bg:       #0A0A12;
  --bg2:      #0F0F1A;
  --bg3:      #141424;
  --surface:  rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.14);
  --text:     #F0EFF8;
  --text2:    #9896B0;
  --text3:    #807E96;
  --violet:   #613F92;
  --violet2:  #9670C7;
  --green:    #D4A574;
  --green2:   #C4956A;
  --mono:     'JetBrains Mono', monospace;
  --sans:     'Outfit', system-ui, sans-serif;
}

/* Custom Cursor */
*, *::before, *::after {
  cursor: none !important;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(212, 165, 116, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--green);
  background: rgba(212, 165, 116, 0.06);
}

.cursor-ring.click {
  transform: translate(-50%, -50%) scale(0.8);
}

@media (max-width: 1100px) {
  .cursor-dot, .cursor-ring { display: none; }
  *, *::before, *::after { cursor: auto !important; }
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  *, *::before, *::after { cursor: auto !important; }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  min-height: 100vh;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

/* Skip to content link (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10001;
  padding: 12px 24px;
  background: var(--green);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ---------- 2. Mesh Background & Noise ---------- */
.mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 600px at 20% 20%, rgba(97, 63, 146, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 75% 60%, rgba(212, 165, 116, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 50% 90%, rgba(123, 82, 173, 0.10) 0%, transparent 70%);
  animation: meshDrift 20s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0% {
    background-position: 0% 0%, 100% 50%, 50% 100%;
  }
  50% {
    background-position: 30% 10%, 70% 40%, 40% 80%;
  }
  100% {
    background-position: 10% 30%, 80% 70%, 60% 60%;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ---------- 3. Navigation ---------- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

#nav::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), rgba(123, 82, 173, 0.3), transparent);
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--violet2), var(--green2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-logo-text {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Nav Dropdown */
.nav-links li {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: rgba(15, 15, 26, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.nav-links li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--text2) !important;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  letter-spacing: 0 !important;
}

.nav-dropdown a:hover {
  background: var(--surface2);
  color: var(--text) !important;
  padding-left: 20px;
}

.nav-dropdown a::after {
  display: none !important;
}

.nav-dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.nav-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown-text span:first-child {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.nav-dropdown-text span:last-child {
  font-size: 12px;
  color: var(--text3);
}

/* Dropdown bridge (prevents gap hover loss) */
.nav-links li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  display: none;
}

.nav-links li:hover::after {
  display: block;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bg);
  background: var(--green);
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 24px rgba(212, 165, 116, 0.35), 0 0 8px rgba(212, 165, 116, 0.2);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(212, 165, 116, 0.5), 0 0 12px rgba(212, 165, 116, 0.3);
}

/* Hamburger */
/* ---------- Hamburger — ring morph ---------- */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
  outline: none;
}

.ham-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ham-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.ham-lines span:nth-child(1) { width: 100%; }
.ham-lines span:nth-child(2) { width: 70%; transition-delay: 0.05s; }
.ham-lines span:nth-child(3) { width: 50%; transition-delay: 0.1s; }

.ham-ring {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.ham-ring circle {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Open state */
.hamburger.open .ham-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 100%;
}

.hamburger.open .ham-lines span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open .ham-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 100%;
}

.hamburger.open .ham-ring {
  opacity: 1;
}

.hamburger.open .ham-ring circle {
  stroke-dashoffset: 0;
}

/* ---------- Mobile Menu — full-screen premium ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: stretch;
  pointer-events: none;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu.open .mobile-menu-bg {
  opacity: 0.98;
}

/* Decorative orbs */
.mobile-menu-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
  opacity: 0;
}

.mobile-menu-orb--1 {
  width: 300px;
  height: 300px;
  background: rgba(97, 63, 146, 0.2);
  top: -80px;
  right: -60px;
}

.mobile-menu-orb--2 {
  width: 250px;
  height: 250px;
  background: rgba(212, 165, 116, 0.12);
  bottom: -50px;
  left: -40px;
}

.mobile-menu.open .mobile-menu-orb {
  opacity: 1;
}

.mobile-menu.open .mobile-menu-orb--1 {
  transform: translate(-20px, 40px);
}

.mobile-menu.open .mobile-menu-orb--2 {
  transform: translate(20px, -30px);
}

/* Decorative lines */
.mobile-menu-line {
  position: absolute;
  background: var(--border);
  opacity: 0;
  transition: opacity 0.6s ease 0.3s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.mobile-menu-line--1 {
  width: 1px;
  height: 100%;
  left: 72px;
  top: 0;
  transform: scaleY(0);
  transform-origin: top;
}

.mobile-menu-line--2 {
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 160px;
  transform: scaleX(0);
  transform-origin: left;
}

.mobile-menu.open .mobile-menu-line {
  opacity: 0.3;
  transform: scale(1);
}

/* Inner layout */
.mobile-menu-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 100%;
  padding: 100px 32px 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.15s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.mobile-menu.open .mobile-menu-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation links */
.mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-link-item {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open .mobile-link-item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open .mobile-link-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link-item:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-link-item:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-link-item:nth-child(4) { transition-delay: 0.34s; }

.mobile-link-main {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: clamp(24px, 7vw, 38px);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.mobile-link-main:hover {
  color: var(--green);
}

.mobile-link-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--green);
  opacity: 0.6;
  min-width: 24px;
}

/* Sub-service links */
.mobile-sub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 20px 40px;
}

.mobile-sub-links a {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--text3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.mobile-sub-links a:hover {
  color: var(--green);
  border-color: rgba(212, 165, 116, 0.3);
  background: rgba(212, 165, 116, 0.06);
}

/* CTA mobile */
.mobile-cta-wrap {
  padding: 24px 0 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease 0.4s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.mobile-menu.open .mobile-cta-wrap {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px 32px;
}

/* Footer mobile */
.mobile-menu-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}

.mobile-menu.open .mobile-menu-footer {
  opacity: 1;
}

.mobile-footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobile-footer-contact:hover {
  color: var(--green);
}

.mobile-footer-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  opacity: 0.4;
  letter-spacing: 2px;
  margin-left: auto;
}

/* ---------- 4. Hero Section ---------- */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text2);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(212, 165, 116, 0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--green), var(--violet2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.word {
  display: inline-block;
  overflow: hidden;
}

.word span {
  display: inline-block;
  animation: wordUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes wordUp {
  from {
    transform: translateY(110%) skewY(6deg);
    opacity: 0;
  }
  to {
    transform: translateY(0) skewY(0deg);
    opacity: 1;
  }
}

.word:nth-child(1) span { animation-delay: 0.0s; }
.word:nth-child(2) span { animation-delay: 0.06s; }
.word:nth-child(3) span { animation-delay: 0.12s; }
.word:nth-child(4) span { animation-delay: 0.18s; }
.word:nth-child(5) span { animation-delay: 0.24s; }
.word:nth-child(6) span { animation-delay: 0.30s; }
.word:nth-child(7) span { animation-delay: 0.36s; }
.word:nth-child(8) span { animation-delay: 0.42s; }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  background: var(--green);
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 30px rgba(212, 165, 116, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(212, 165, 116, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 100px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.btn-ghost:hover {
  border-color: var(--text2);
  background: var(--surface);
}

/* Hero Visual / Browser Mock */
.hero-visual {
  position: relative;
}

.browser-mock {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border);
}

.browser-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}

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

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface2);
}

.browser-dots span:first-child { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-url {
  flex: 1;
  height: 28px;
  background: var(--surface);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text3);
}

.browser-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 280px;
}

.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.mini-card-title {
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.mini-card-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.mini-card-bar {
  width: 100%;
  height: 4px;
  background: var(--surface2);
  border-radius: 4px;
  margin-top: 10px;
  overflow: hidden;
}

.mini-card-bar span {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--violet2), var(--green));
}

.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-box-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.stat-box-label {
  font-size: 12px;
  color: var(--text3);
  font-family: var(--mono);
}

.stat-box-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

/* Float Badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite alternate;
  z-index: 2;
}

.float-badge:nth-child(1) {
  top: 20px;
  right: -20px;
}

.float-badge:nth-child(2) {
  bottom: 40px;
  left: -30px;
  animation-delay: -1.5s;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.float-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* ---------- 5. Clients Marquee ---------- */
/* Logo Carousel */
.logo-carousel-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.logo-carousel-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.logo-carousel-fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

/* When inside bg2 section, fades match bg2 */
[style*="background:var(--bg2)"] .logo-carousel-fade--left,
.logo-carousel-section[style*="background:var(--bg2)"] .logo-carousel-fade--left {
  background: linear-gradient(90deg, var(--bg2) 0%, transparent 100%);
}

[style*="background:var(--bg2)"] .logo-carousel-fade--right,
.logo-carousel-section[style*="background:var(--bg2)"] .logo-carousel-fade--right {
  background: linear-gradient(270deg, var(--bg2) 0%, transparent 100%);
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logoScroll 35s linear infinite;
}

.logo-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-carousel-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  opacity: 0.35;
  transition: opacity 0.4s ease;
  filter: brightness(0) invert(1);
}

.logo-carousel-item:hover {
  opacity: 0.8;
}

.logo-carousel-item img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Legacy marquee classes (backward compat) */
.marquee-wrap { display: none; }

/* ---------- 6. Services Grid ---------- */
.services {
  padding: 140px 40px;
  position: relative;
}

.s-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.s-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 16px;
}

.s-title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.s-desc {
  max-width: 400px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.svc {
  background: var(--bg2);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
  cursor: pointer;
}

.svc:hover {
  background: var(--bg3);
}

/* Scan line effect on hover */
.svc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(212, 165, 116, 0.015) 2px,
    rgba(212, 165, 116, 0.015) 4px
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.svc:hover::after {
  opacity: 1;
}

.svc-highlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet2), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc:hover .svc-highlight {
  transform: scaleX(1);
}

.svc-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 28px;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.svc:hover .svc-icon {
  background: rgba(212, 165, 116, 0.1);
  border-color: rgba(212, 165, 116, 0.3);
}

.svc-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.svc-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.svc-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--green);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.svc:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- 7. Dashboard Section (Notre Approche) ---------- */
.dashboard-section {
  padding: 140px 40px;
}

.dash-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.dash-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dash-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 20px;
}

.dash-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.dash-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.dash-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.dash-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 12px;
}

.dash-right {
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* Dashboard UI Mockup */
.dashboard-ui {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.dash-ui-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.dash-ui-topbar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.dash-ui-topbar-badge {
  font-size: 12px;
  font-family: var(--mono);
  color: var(--green);
  background: rgba(212, 165, 116, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.dash-ui-body {
  padding: 20px;
}

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-bottom: 20px;
  padding: 0 4px;
}

.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--violet2), var(--green2));
  min-height: 12px;
  animation: barGrow 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

.dash-bar:nth-child(1)  { height: 45%; animation-delay: 0.05s; }
.dash-bar:nth-child(2)  { height: 65%; animation-delay: 0.10s; }
.dash-bar:nth-child(3)  { height: 40%; animation-delay: 0.15s; }
.dash-bar:nth-child(4)  { height: 80%; animation-delay: 0.20s; }
.dash-bar:nth-child(5)  { height: 55%; animation-delay: 0.25s; }
.dash-bar:nth-child(6)  { height: 90%; animation-delay: 0.30s; }
.dash-bar:nth-child(7)  { height: 70%; animation-delay: 0.35s; }
.dash-bar:nth-child(8)  { height: 95%; animation-delay: 0.40s; }
.dash-bar:nth-child(9)  { height: 60%; animation-delay: 0.45s; }
.dash-bar:nth-child(10) { height: 85%; animation-delay: 0.50s; }
.dash-bar:nth-child(11) { height: 50%; animation-delay: 0.55s; }
.dash-bar:nth-child(12) { height: 75%; animation-delay: 0.60s; }

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dash-kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.dash-kpi-num {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--mono);
  color: var(--text);
  margin-bottom: 2px;
}

.dash-kpi-label {
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- 8. Testimonials ---------- */
.testi {
  padding: 140px 40px;
}

.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.testi-header-left .s-eyebrow {
  margin-bottom: 16px;
}

.testi-header-left .s-title {
  margin-bottom: 0;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  flex-shrink: 0;
}

.google-badge-icon {
  width: 24px;
  height: 24px;
}

.google-badge-stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 14px;
}

.google-badge-rating {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.google-badge-count {
  font-size: 12px;
  color: var(--text3);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: var(--border2);
}

.testi-quote {
  font-size: 32px;
  color: var(--violet2);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: #FBBC04;
  font-size: 14px;
  margin-bottom: 16px;
}

.testi-body {
  font-size: 15px;
  font-style: italic;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
}

.testi-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testi-author-role {
  font-size: 12px;
  color: var(--text3);
}

/* ---------- 9. CTA Section ---------- */
.cta {
  padding: 80px 40px;
}

.cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1030 0%, #0a1a18 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(97, 63, 146, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 540px;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--bg);
  background: var(--green);
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 40px rgba(212, 165, 116, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(212, 165, 116, 0.4);
}

/* ---------- 10. Footer ---------- */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--violet) 30%, var(--green) 70%, transparent 95%);
  opacity: 0.4;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.footer-contact-link:hover {
  color: var(--text);
}

.footer-contact-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.footer-col {
  padding-left: 32px;
  border-left: 1px solid var(--border);
}

.footer-col:first-of-type {
  padding-left: 0;
  border-left: none;
}

.footer-col-title,
.footer-col h5 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text3);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text2);
  padding: 6px 0;
  transition: color 0.3s ease, padding-left 0.3s ease, letter-spacing 0.3s ease;
}

.footer-col a:hover {
  color: var(--text);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text3);
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: var(--text2);
}

/* ---------- 11. Service Pages ---------- */
.service-hero {
  padding: 160px 40px 80px;
  text-align: center;
  position: relative;
}

.service-hero .s-eyebrow {
  margin-bottom: 20px;
}

.service-hero-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero-desc {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.service-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
}

.service-section {
  padding: 80px 0;
}

.service-section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.service-section-text {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 40px;
}

/* Service Features Grid */
.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.service-feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.service-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 250px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 165, 116, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-feature-card:hover::before {
  opacity: 1;
}

.service-feature-card:hover {
  border-color: rgba(212, 165, 116, 0.2);
  transform: translateY(-3px);
  background: var(--bg3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.service-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.service-feature-card:hover .service-feature-icon {
  background: rgba(212, 165, 116, 0.1);
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.15);
}

.service-feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.service-feature-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* Pack Digital - Split Layout */
.pack-digital {
  padding: 120px 0;
}

.pack-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px;
}

.pack-info .s-eyebrow {
  margin-bottom: 16px;
}

.pack-info .s-title {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 20px;
}

.pack-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 36px;
}

.pack-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pack-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.pack-feature-item:first-child {
  padding-top: 0;
}

.pack-feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pack-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pack-feature-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.pack-feature-item span {
  display: block;
  font-size: 13px;
  color: var(--text3);
  line-height: 1.5;
}

/* Service Process Steps */
.service-process {
  padding: 80px 0;
}

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

.service-process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), var(--border2), transparent);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  position: relative;
  z-index: 1;
}

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

.process-step-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* Service FAQ */
.service-faq {
  padding: 80px 0;
  max-width: 800px;
}

.faq-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  cursor: none;
  transition: color 0.25s;
}

.faq-question:hover {
  color: var(--green);
}

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

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text2);
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--green);
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  max-width: 680px;
}

/* ---------- 12. About Page ---------- */
.about-values,
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.about-value-card,
.value-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-value-card:hover,
.value-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.about-value-num {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet2), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

.value-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--violet2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.12;
  line-height: 1;
}

.about-value-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.about-value-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

.about-clients {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-clients-title {
  font-size: 14px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text3);
  text-align: center;
  margin-bottom: 40px;
}

.about-clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.about-client-logo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.about-client-logo:hover {
  opacity: 0.8;
}

.about-client-logo img,
.about-client-logo svg {
  max-width: 100px;
  max-height: 32px;
}

.about-testimonials {
  padding: 80px 40px;
}

/* ---------- 13. Contact Page ---------- */
.contact-section {
  padding: 80px 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-info-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-color: var(--border2);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text3);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.contact-card-value a {
  transition: color 0.25s ease;
}

.contact-card-value a:hover {
  color: var(--green);
}

/* Contact Form */
.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
}

.contact-form-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form-desc {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 32px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg3);
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.12), 0 0 20px rgba(212, 165, 116, 0.08);
  background: rgba(20, 20, 36, 0.8);
}

.contact-form label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%239896B0' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 16px 32px;
  background: var(--green);
  color: var(--bg);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(212, 165, 116, 0.2);
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(212, 165, 116, 0.35);
}

/* Radio button cards for audit form */
.contact-form label:has(input[type="radio"]) {
  cursor: pointer;
}

.contact-form label:has(input[type="radio"]:checked) {
  border-color: var(--green);
  background: rgba(212, 165, 116, 0.04);
}

.contact-form label:has(input[type="radio"]:checked) span {
  border-color: var(--green);
  background: var(--green);
  box-shadow: inset 0 0 0 3px var(--bg);
}

/* Audit score card responsive */
@media (max-width: 768px) {
  .audit-split-grid {
    grid-template-columns: 1fr !important;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  font-family: var(--mono);
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(212, 165, 116, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1), 0 0 16px rgba(212, 165, 116, 0.06);
  background: rgba(20, 20, 36, 0.8);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text3);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

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

.form-select option {
  background: var(--bg2);
  color: var(--text);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border2);
  border-radius: 4px;
  background: var(--surface);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox-text {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.5;
}

.form-checkbox-text a {
  color: var(--text2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  background: var(--green);
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 30px rgba(212, 165, 116, 0.2);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(212, 165, 116, 0.35);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------- 14. Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Featured post card (full width on archive) */
.blog-card--featured {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
}

.blog-card--featured .blog-card-img-wrap {
  aspect-ratio: auto;
  min-height: 360px;
}

.blog-card--featured .blog-card-img-wrap img {
  height: 100%;
  aspect-ratio: auto;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 165, 116, 0.05);
}

.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.blog-card-img-wrap img,
.blog-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text3);
  margin-bottom: 14px;
}

.blog-card-cat {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212, 165, 116, 0.1);
  color: var(--green);
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.blog-card-date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
}

.blog-card-date::before {
  content: '\00b7';
  margin-right: 12px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 8px;
  transition: color 0.25s ease;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card:hover .blog-card-title {
  color: var(--green);
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--green);
  margin-top: auto;
  padding-top: 16px;
  transition: gap 0.3s ease;
}

.blog-card-link:hover {
  gap: 12px;
}

.blog-card-link svg,
.blog-card-link .arrow {
  transition: transform 0.3s ease;
}

.blog-card-link:hover svg,
.blog-card-link:hover .arrow {
  transform: translateX(3px);
}

/* ---------- Blog Archive — Featured + 2-col grid ---------- */

/* Featured article */
.blog-featured-section {
  padding: 0 0 80px;
}

.blog-featured {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-featured-img-wrap {
  display: block;
  position: relative;
  line-height: 0;
}

.blog-featured-img {
  width: 100%;
  max-width: none;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-featured:hover .blog-featured-img {
  transform: scale(1.03);
}

.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 18, 0.95) 0%, rgba(10, 10, 18, 0.5) 40%, transparent 70%);
  pointer-events: none;
}

.blog-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 56px;
  z-index: 2;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.blog-featured-meta time,
.blog-featured-meta span {
  background: rgba(10, 10, 18, 0.6);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 6px;
}

.blog-featured-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 700px;
}

.blog-featured-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-featured-title a:hover {
  color: var(--green);
}

.blog-featured-excerpt {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 8px;
}

/* Archive grid — 2 columns with horizontal cards */
.blog-archive-section {
  padding: 80px 0 100px;
  background: var(--bg2);
}

.blog-archive-header {
  margin-bottom: 48px;
}

.blog-grid-2col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Horizontal blog card */
.blog-card-hz {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.blog-card-hz:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 165, 116, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.blog-card-hz-img-wrap {
  display: block;
  overflow: hidden;
  line-height: 0;
}

.blog-card-hz-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card-hz:hover .blog-card-hz-img {
  transform: scale(1.04);
}

.blog-card-hz-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.blog-card-hz-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 4px;
}

.blog-card-hz-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 4px;
}

.blog-card-hz-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-card-hz:hover .blog-card-hz-title a {
  color: var(--green);
}

.blog-card-hz-excerpt {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1100px) {
  .blog-featured-img {
    height: 400px;
  }
  .blog-featured-content {
    padding: 40px;
  }
  .blog-card-hz {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 640px) {
  .blog-featured-img {
    height: 320px;
  }
  .blog-featured-content {
    padding: 28px;
  }
  .blog-featured-title {
    font-size: clamp(20px, 6vw, 28px);
  }
  .blog-featured-excerpt {
    display: none;
  }
  .blog-card-hz {
    grid-template-columns: 1fr;
  }
  .blog-card-hz-img {
    min-height: 200px;
    max-height: 220px;
  }
  .blog-card-hz-body {
    padding: 24px;
  }
  .blog-archive-section {
    padding: 60px 0 80px;
  }
}

/* ---------- Single Post ---------- */

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}

.reading-progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--violet2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* Article hero */
.single-hero {
  padding: 140px 0 48px;
}

.single-hero .container {
  max-width: 1180px;
}

.single-hero .breadcrumbs {
  margin-bottom: 32px;
}

.single-hero-content {
  max-width: 1100px;
}

.single-hero-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.single-hero-cats .blog-card-cat {
  font-size: 11px;
  padding: 4px 12px;
}

.single-hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 32px;
  color: var(--text);
}

.single-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.single-hero-meta-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.single-hero-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--mono);
  color: #fff;
  flex-shrink: 0;
}

.single-hero-author-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.single-hero-author-role {
  display: block;
  font-size: 13px;
  color: var(--text3);
  font-family: var(--mono);
}

.single-hero-meta-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--text3);
}

.single-hero-meta-info time,
.single-hero-reading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.single-hero-meta-info svg {
  opacity: 0.6;
}

/* Featured image */
.single-featured {
  padding: 0 40px;
  margin-bottom: 64px;
}

.single-featured-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

.single-featured-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

/* Article body */
article.single-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px 0;
}

/* Content typography */
.single-post-content {
  margin-bottom: 56px;
}

.single-post-content > *:first-child {
  margin-top: 0;
}

.single-post-content h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 56px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  position: relative;
  color: var(--text);
}

.single-post-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--violet2));
  border-radius: 2px;
}

.single-post-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--text);
}

.single-post-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.single-post-content p {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: 22px;
}

.single-post-content > p:first-of-type {
  font-size: 19px;
  color: var(--text);
  line-height: 1.75;
}

.single-post-content > p:first-of-type::first-letter {
  font-size: 3.2em;
  float: left;
  line-height: 0.85;
  margin-right: 10px;
  margin-top: 6px;
  font-weight: 700;
  color: var(--green);
}

.single-post-content a {
  color: var(--green);
  text-decoration: none;
  background-image: linear-gradient(var(--green), var(--green));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.3s ease;
}

.single-post-content a:hover {
  background-size: 100% 1px;
}

/* Restyle inline CTA buttons from old content to match theme */
.single-post-content a[style*="display:inline-block"][style*="padding"] {
  background: var(--green) !important;
  color: var(--bg) !important;
  border-radius: 100px !important;
  padding: 14px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: var(--mono) !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background-image: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.single-post-content a[style*="display:inline-block"][style*="padding"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.25) !important;
  background-size: 0 !important;
}

/* Restyle CTA wrapper boxes from old content */
.single-post-content > div[style*="background:#0a0a0a"],
.single-post-content > div[style*="background: #0a0a0a"],
.single-post-content > div[style*="background:#111"],
.single-post-content > div[style*="background:#1a1a"] {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  padding: 36px !important;
}

.single-post-content strong {
  color: var(--text);
  font-weight: 600;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 22px;
  padding-left: 0;
}

.single-post-content ul {
  list-style: none;
}

.single-post-content ol {
  list-style: none;
  counter-reset: ol-counter;
}

.single-post-content ol li {
  counter-increment: ol-counter;
}

.single-post-content ol li::before {
  content: counter(ol-counter) '.';
  font-family: var(--mono);
  font-weight: 600;
  color: var(--green);
  margin-right: 12px;
  min-width: 24px;
  display: inline-block;
}

.single-post-content ul li {
  position: relative;
  padding-left: 24px;
}

.single-post-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.single-post-content li {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 10px;
}

.single-post-content blockquote {
  border-left: 3px solid var(--green);
  padding: 28px 32px;
  margin: 36px 0;
  background: var(--surface);
  border-radius: 0 16px 16px 0;
  position: relative;
}

.single-post-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
}

.single-post-content blockquote p {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.7;
}

.single-post-content pre {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  overflow-x: auto;
  margin: 28px 0;
  position: relative;
}

.single-post-content pre::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #28c840;
}

.single-post-content code {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--green);
  background: rgba(212, 165, 116, 0.08);
  padding: 2px 7px;
  border-radius: 5px;
}

.single-post-content pre code {
  color: var(--text2);
  background: none;
  padding: 0;
  border-radius: 0;
}

.single-post-content img {
  border-radius: 14px;
  border: 1px solid var(--border);
  margin: 36px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.single-post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* Override inline styles from old Elementor/light-theme content */
.single-post-content p,
.single-post-content span,
.single-post-content div,
.single-post-content li,
.single-post-content td,
.single-post-content th {
  color: var(--text2) !important;
}

.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
  color: var(--text) !important;
}

.single-post-content a {
  color: var(--green) !important;
}

.single-post-content table td,
.single-post-content table th {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}

.single-post-content [style*="background"] {
  background-color: var(--surface) !important;
}

.single-post-content [style*="border-top: 3px solid"] td {
  border-top-color: var(--violet) !important;
}

.single-post-content [style*="height:1px"][style*="background"] {
  background: var(--border) !important;
}

.single-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}

.single-post-content table th {
  background: var(--surface);
  font-weight: 600;
  color: var(--text);
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-post-content table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  color: var(--text2);
}

.single-post-content table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

/* Tags */
.single-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.single-tags > svg {
  color: var(--text3);
  margin-right: 4px;
}

.single-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--surface);
  color: var(--text2);
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--mono);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
  border: 1px solid var(--border);
}

.single-tag:hover {
  background: rgba(212, 165, 116, 0.1);
  color: var(--green);
  border-color: rgba(212, 165, 116, 0.2);
}

/* Share */
.single-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.single-share-label {
  font-size: 14px;
  font-family: var(--mono);
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-share-links {
  display: flex;
  gap: 10px;
}

.single-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text2);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.single-share-btn:hover {
  background: rgba(212, 165, 116, 0.1);
  color: var(--green);
  border-color: rgba(212, 165, 116, 0.2);
  transform: translateY(-2px);
}

.single-share-btn.copied {
  background: rgba(212, 165, 116, 0.15);
  color: var(--green);
  border-color: var(--green);
}

/* Divider */
.single-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.single-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.single-divider-icon {
  opacity: 0.5;
  display: flex;
}

/* Author box */
.single-author-box {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 80px;
  transition: border-color 0.3s ease;
}

.single-author-box:hover {
  border-color: rgba(212, 165, 116, 0.15);
}

.single-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--mono);
  color: #fff;
  flex-shrink: 0;
}

.single-author-info {
  flex: 1;
}

.single-author-label {
  display: block;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.single-author-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.single-author-bio {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 12px;
}

.single-author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--green);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.single-author-link:hover {
  gap: 10px;
}

/* Post navigation */
.single-nav-section {
  padding: 0 0 80px;
}

.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.single-nav-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.single-nav-card:hover {
  border-color: rgba(212, 165, 116, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.single-nav-next {
  text-align: right;
}

.single-nav-direction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-nav-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-nav-next .single-nav-direction {
  justify-content: flex-end;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--mono);
  color: var(--text2);
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.pagination a:hover {
  border-color: var(--border2);
  color: var(--text);
  text-decoration: none;
}

.pagination a::after {
  display: none !important;
}

.pagination .current {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
  font-weight: 600;
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 16px;
  font-size: 13px;
}

.pagination .dots {
  background: none;
  border: none;
  color: var(--text3);
}

/* ---------- 15. Utility ---------- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 140px 40px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
  padding: 0;
  margin: 0 auto 24px;
  max-width: 1400px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.breadcrumbs a {
  color: var(--text2);
  transition: color 0.25s ease;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.breadcrumbs .sep {
  color: var(--text2);
  opacity: 0.5;
}

.breadcrumbs .current {
  color: var(--text);
}

/* Page Hero (inner pages, smaller than home) */
.page-hero {
  padding: 120px 40px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 30% 40%, rgba(97, 63, 146, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 350px at 70% 60%, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .s-eyebrow {
  margin-bottom: 16px;
}

.page-hero .s-title {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 900px;
  margin: 0 auto 20px;
}

.page-hero-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--green), var(--violet2));
  border-radius: 2px;
}

.page-hero-desc {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Reveal Animations (for IntersectionObserver)
   Content is visible by default. Only hidden when JS adds .js-ready to <html>.
   This prevents invisible content when IntersectionObserver fails or JS is off. */

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1, .reveal-delay-1 { transition-delay: 0.1s; }
.reveal.d2, .reveal-delay-2 { transition-delay: 0.2s; }
.reveal.d3, .reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

html.js-ready .reveal-left {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .reveal-left.in {
  opacity: 1;
  transform: translateX(0);
}

html.js-ready .reveal-right {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .reveal-right.in {
  opacity: 1;
  transform: translateX(0);
}

html.js-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}

/* Gradient Text Utility */
.gradient-text {
  background: linear-gradient(135deg, var(--green), var(--violet2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 16. 404 Page ---------- */
.error-404 {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  text-align: center;
}

.error-404-inner {
  max-width: 560px;
}

.error-404-code {
  font-family: var(--mono);
  font-size: clamp(100px, 15vw, 200px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--violet2), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  opacity: 0.6;
}

.error-404-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.error-404-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.error-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- 17. Micro-Animations ---------- */

/* Gradient border animation on service cards */
/* Gradient border removed - too aggressive. Keeping subtle hover from original maquette. */

/* Floating animation for decorative elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

/* Pulse glow for CTA buttons */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 165, 116, 0.2); }
  50% { box-shadow: 0 0 40px rgba(212, 165, 116, 0.4); }
}

.btn-primary,
.nav-cta,
.btn-cta-main {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Gradient text shimmer for section eyebrows */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.s-eyebrow {
  background: linear-gradient(90deg, var(--green), var(--violet2), var(--green));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

/* Spotlight cursor effect for cards (CSS custom props set via JS) */
.svc,
.service-feature-card,
.testi-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  background-image: radial-gradient(circle 200px at var(--mouse-x) var(--mouse-y), rgba(212, 165, 116, 0.04), transparent);
}

/* Page hero title — word-by-word fade in on inner pages */
.page-hero .s-title .word-anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wordFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Gradient line that draws itself on scroll */
.line-draw {
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-ready .line-draw.in {
  transform: scaleX(1);
}

/* Counter number scale-in */
@keyframes countPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

[data-count].counted {
  animation: countPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Card lift on hover — lightweight GPU-only */
.tilt-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tilt-card:hover {
  transform: translateY(-3px) translateZ(0);
}

/* Gradient border glow on hover — static, no animation loop */
.sweep-border {
  position: relative;
}

.sweep-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--violet), var(--green));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.sweep-border:hover::before {
  opacity: 0.6;
}

/* Split visual hover lift — GPU only */
.split-visual > *:first-child {
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-visual:hover > *:first-child {
  transform: translateY(-4px) translateZ(0);
}

/* Number ticker animation */
@keyframes tickerSlide {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Section divider gradient line */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--green), var(--violet), transparent);
  opacity: 0.3;
  max-width: 1400px;
  margin: 0 auto;
}

/* Typewriter cursor blink for mono text */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.cursor-blink::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--green);
  margin-left: 2px;
}

/* Staggered list items from left */
.stagger-left > * {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

html.js-ready .stagger-left.in > * {
  opacity: 1;
  transform: translateX(0);
}

/* Progress bar fill animation */
.bar-fill-anim {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-ready .bar-fill-anim.in {
  transform: scaleX(1);
}

/* text-glow removed — was causing repaint jank on scroll */

/* Icon rotate on hover */
.icon-spin:hover svg {
  transform: rotate(12deg);
  transition: transform 0.3s ease;
}

/* Value card number gradient shine */
.value-num {
  background: linear-gradient(135deg, var(--green), var(--violet2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- 18. Decorative Elements ---------- */

/* Glow orbs for ambient decoration */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb--green {
  background: rgba(212, 165, 116, 0.12);
}

.glow-orb--violet {
  background: rgba(97, 63, 146, 0.15);
}

/* ---------- 18a-bis. Photo/Video Bento Section ---------- */
.pv-bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.pv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.pv-card:hover {
  border-color: rgba(212, 165, 116, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pv-card--video {
  grid-column: 1;
  grid-row: 1 / 3;
}

.pv-card--gallery {
  grid-column: 2;
  grid-row: 1;
}

.pv-card--packshot {
  grid-column: 2;
  grid-row: 2;
}

.pv-card--retouche {
  grid-column: 1 / -1;
}

.pv-card-label {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pv-card-label svg {
  margin-bottom: 4px;
}

.pv-card-label strong {
  font-size: 15px;
  color: var(--text);
}

.pv-card-label span {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.5;
}

/* Video mockup */
.pv-video-mockup {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 1;
  min-height: 300px;
}

.pv-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
}

.pv-video-embed {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #000;
}

.pv-video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.pv-card--video.is-playing .pv-play,
.pv-card--video.is-playing .pv-video-info,
.pv-card--video.is-playing .pv-timeline,
.pv-card--video.is-playing .pv-video-poster,
.pv-card--video.is-playing .pv-video-bg {
  display: none;
}

.pv-video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0a1a 0%, #1a0f2e 30%, #0a1a14 70%, #0f0f1a 100%);
  z-index: 0;
}

.pv-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 50%, rgba(97, 63, 146, 0.15), transparent),
    radial-gradient(ellipse 50% 50% at 70% 40%, rgba(212, 165, 116, 0.1), transparent);
  animation: pvPulse 6s ease-in-out infinite alternate;
}

@keyframes pvPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.pv-play {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  outline: none;
}

.pv-card--video:hover .pv-play {
  transform: scale(1.12);
  background: rgba(212, 165, 116, 0.15);
  box-shadow: 0 0 40px rgba(212, 165, 116, 0.2);
}

.pv-play svg {
  opacity: 0.9;
}

.pv-video-info {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pv-timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.pv-timeline-fill {
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--violet2));
  border-radius: 0 2px 2px 0;
  animation: pvTimeline 8s linear infinite;
}

@keyframes pvTimeline {
  0% { width: 0%; }
  100% { width: 100%; }
}

.pv-badge {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pv-badge--gold {
  background: rgba(212, 165, 116, 0.15);
  color: var(--green);
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.pv-badge--violet {
  background: rgba(123, 82, 173, 0.15);
  color: var(--violet2);
  border: 1px solid rgba(123, 82, 173, 0.3);
}

/* Gallery card */
.pv-card--gallery {
  position: relative;
}

.pv-gallery-stack {
  position: relative;
  height: 180px;
  margin: 24px 24px 16px;
}

.pv-gallery-slide {
  position: absolute;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pv-gallery-slide--1 {
  inset: 0 0 0 0;
  z-index: 3;
}

.pv-gallery-slide--2 {
  inset: 8px -6px -8px 6px;
  z-index: 2;
  opacity: 0.6;
}

.pv-gallery-slide--3 {
  inset: 16px -12px -16px 12px;
  z-index: 1;
  opacity: 0.3;
}

.pv-card--gallery:hover .pv-gallery-slide--1 {
  transform: translateY(-6px) rotate(-1deg);
}

.pv-card--gallery:hover .pv-gallery-slide--2 {
  transform: translateY(-3px) rotate(0.5deg);
}

.pv-gallery-counter {
  position: absolute;
  top: 36px;
  right: 36px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(10, 10, 18, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  border: 1px solid rgba(212, 165, 116, 0.15);
}

/* Packshot card */
.pv-packshot-display {
  position: relative;
  padding: 24px;
}

.pv-packshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  aspect-ratio: 3 / 1.2;
}

.pv-packshot-item {
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.pv-card--packshot:hover .pv-packshot-item:nth-child(1) {
  transform: translateY(-4px) rotate(-1deg);
}
.pv-card--packshot:hover .pv-packshot-item:nth-child(2) {
  transform: translateY(-6px);
}
.pv-card--packshot:hover .pv-packshot-item:nth-child(3) {
  transform: translateY(-4px) rotate(1deg);
}

/* Retouche card (full-width) */
.pv-card--retouche {
  flex-direction: row;
  align-items: stretch;
}

.pv-card--retouche .pv-card-label {
  flex: 1;
  justify-content: center;
  padding: 28px 32px;
}

.pv-retouche-display {
  position: relative;
  width: 50%;
  min-height: 160px;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
}

.pv-retouche-before {
  flex: 1;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  position: relative;
}

.pv-retouche-after {
  flex: 1;
  background: linear-gradient(135deg, #1a1a2e, #2a1f3d);
  position: relative;
}

.pv-retouche-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--green);
  z-index: 2;
  box-shadow: 0 0 12px rgba(212, 165, 116, 0.4);
}

.pv-retouche-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--bg);
}

.pv-retouche-divider::after {
  content: '\2194';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: var(--bg);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1100px) {
  .pv-bento {
    grid-template-columns: 1fr 1fr;
  }
  .pv-card--video {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .pv-bento {
    grid-template-columns: 1fr;
  }
  .pv-card--video,
  .pv-card--gallery,
  .pv-card--packshot,
  .pv-card--retouche {
    grid-column: auto;
    grid-row: auto;
  }
  .pv-video-mockup {
    min-height: 220px;
  }
  .pv-card--retouche {
    flex-direction: column;
  }
  .pv-retouche-display {
    width: 100%;
    min-height: 140px;
  }
}

/* ---------- 18b. Split Layout for service pages ---------- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
}

.split-layout--reverse {
  direction: rtl;
}

.split-layout--reverse > * {
  direction: ltr;
}

.split-content {
  max-width: 560px;
}

.split-visual {
  position: relative;
}

/* ---------- 18c. Bento Feature Grid ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.bento-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.bento-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.bento-card--large {
  grid-column: span 2;
  padding: 40px;
}

.bento-card--tall {
  grid-row: span 2;
}

.bento-card-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.bento-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}

.bento-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ---------- 18d. Process Timeline ---------- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 100px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(40px + 28px);
  right: calc(40px + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--green));
  opacity: 0.3;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green);
  transition: border-color 0.3s, background 0.3s;
}

.timeline-step:hover .timeline-dot {
  border-color: var(--green);
  background: rgba(212, 165, 116, 0.08);
}

.timeline-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.6;
}

/* ---------- 18e. Trust Indicators Row ---------- */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 165, 116, 0.08);
  border: 1px solid rgba(212, 165, 116, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

/* ---------- 18f. Mini CRM Table mockup ---------- */
.mini-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 12px;
}

.mini-table th {
  padding: 10px 14px;
  text-align: left;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}

.mini-table td {
  padding: 10px 14px;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}

.mini-table .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.mini-table .status-dot--green { background: var(--green); }
.mini-table .status-dot--violet { background: var(--violet2); }
.mini-table .status-dot--amber { background: #F59E0B; }

/* Animated status dots for server dashboard */
@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-dot-animated {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot-animated--green { background: var(--green); }
.status-dot-animated--amber { background: #F59E0B; }

/* Bento card gradient accent */
.bento-card--accent-green {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.06) 0%, var(--bg2) 60%);
}

.bento-card--accent-violet {
  background: linear-gradient(135deg, rgba(123, 82, 173, 0.08) 0%, var(--bg2) 60%);
}

/* ---------- Section Spacing Utilities ---------- */
.section-gap {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-gap--sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-header {
  margin-bottom: 60px;
}

.page-hero + .split-layout,
.page-hero + .service-content,
.page-hero + section {
  padding-top: 80px;
}

section + section {
  margin-top: 20px;
}

/* ---------- 19. Responsive Breakpoints ---------- */

/* Tablet / Small Desktop */
@media (max-width: 1100px) {
  .nav-inner {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .pack-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 32px;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 120px 24px 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 540px;
    margin: 0 auto;
  }

  .float-badge:nth-child(1) {
    right: 0;
  }

  .float-badge:nth-child(2) {
    left: 0;
  }

  /* Services */
  .services {
    padding: 100px 24px;
  }

  .s-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

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

  /* Dashboard */
  .dashboard-section {
    padding: 100px 24px;
  }

  .dash-inner {
    grid-template-columns: 1fr;
  }

  .dash-left {
    padding: 60px 40px;
  }

  .dash-right {
    padding: 40px;
  }

  /* Testimonials */
  .testi {
    padding: 100px 24px;
  }

  .testi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* CTA */
  .cta {
    padding: 40px 24px;
  }

  .cta-inner {
    padding: 60px 40px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .cta-desc {
    margin: 0 auto;
  }

  .btn-cta-main {
    margin: 0 auto;
  }

  /* Footer */
  .footer-inner {
    padding: 60px 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  /* Service Pages */
  .service-hero {
    padding: 140px 24px 60px;
  }

  .service-content {
    padding: 0 24px;
  }

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

  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .service-process-grid::before {
    display: none;
  }

  /* About */
  .about-values,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px 60px;
  }

  .about-clients {
    padding: 60px 24px;
  }

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

  /* Contact */
  .contact-section {
    padding: 60px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px 60px;
  }

  .blog-card--featured {
    grid-template-columns: 1fr 1fr;
  }

  article.single-post {
    padding: 0 24px 0;
  }

  .single-hero {
    padding: 120px 0 36px;
  }

  .single-featured {
    padding: 0 24px;
    margin-bottom: 48px;
  }

  .single-featured-img {
    aspect-ratio: 16 / 9;
  }

  .single-nav {
    gap: 16px;
  }

  .single-nav-card {
    padding: 24px;
  }

  /* Breadcrumbs */
  .breadcrumbs {
    padding: 0;
  }

  /* Page Hero */
  .page-hero {
    padding: 100px 24px 48px;
  }

  /* Footer column borders */
  .footer-col {
    padding-left: 0;
    border-left: none;
  }

  /* Utilities */
  .container {
    padding: 0 24px;
  }

  .section-padding {
    padding: 100px 24px;
  }

  /* Split / Bento / Timeline responsive — tablet */
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }
  .split-layout--reverse { direction: ltr; }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px 60px;
  }
  .bento-card--large { grid-column: span 2; }
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px 60px;
  }
  .process-timeline::before { display: none; }
  .trust-row { flex-wrap: wrap; gap: 24px; }

  /* Stats 4-col → 2x2 on tablet */
  .svc-stats-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-inner {
    padding: 0 16px;
  }

  #nav {
    height: 60px;
  }

  .pack-grid {
    padding: 28px 20px;
  }

  /* Hero */
  .hero {
    padding: 100px 16px 48px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(36px, 9vw, 48px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    max-width: 100%;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }

  .float-badge {
    display: none;
  }

  .browser-body {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    min-height: auto;
  }

  .browser-mock {
    border-radius: 12px;
  }

  /* Services */
  .services {
    padding: 80px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc {
    padding: 32px 24px;
  }

  /* ── Global mobile grid collapse ── */
  /* Any element with .mob-stack or key service page grids → 1 column */
  .mob-stack,
  .svc-card-grid,
  .svc-pair-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 16px !important;
  }

  .mob-stack > [style*="border-right"],
  .mob-stack > [style*="border-left"],
  .svc-card-grid > [style*="border-left"],
  .svc-card-grid > [style*="border-right"] {
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid var(--border) !important;
  }

  /* Complex mockups: make scrollable horizontally on mobile */
  .mob-mockup {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .mob-mockup > * {
    min-width: 600px;
  }

  /* Stats rows → 2x2 */
  .svc-stats-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  /* Pack digital */
  .pack-card {
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .pack-features {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .pack-grid {
    grid-template-columns: 1fr !important;
  }

  /* All inline 2-col/3-col grids inside .section-gap and .split-layout → 1 col */
  .section-gap > .container > [style*="grid-template-columns:1fr 1fr"],
  .section-gap > .container > .reveal[style*="grid-template-columns"],
  .section-gap > .container > div > [style*="grid-template-columns:1fr 1fr"][style*="gap:60px"],
  .section-gap > .container > div > [style*="grid-template-columns:1fr 1fr"][style*="gap:40px"],
  .split-layout > .split-visual > [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* 3-col feature grids → 1 col */
  [style*="grid-template-columns:repeat(3,1fr)"][style*="gap:20px"],
  .section-gap [style*="grid-template-columns:repeat(4,1fr)"][style*="gap:12px"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Inline grid containers padding reduction */
  .section-gap [style*="padding:48px"] {
    padding: 28px 20px !important;
  }

  .s-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  /* Dashboard */
  .dashboard-section {
    padding: 80px 16px;
  }

  .dash-left {
    padding: 40px 24px;
  }

  .dash-right {
    padding: 24px;
  }

  .dash-kpis {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testi {
    padding: 80px 16px;
  }

  .testi-card {
    padding: 28px;
  }

  /* CTA */
  .cta {
    padding: 24px 16px;
  }

  .cta-inner {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .cta-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  /* Footer */
  .footer-inner {
    padding: 48px 16px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
  }

  /* Service Pages */
  .service-hero {
    padding: 120px 16px 48px;
  }

  .service-hero-title {
    font-size: clamp(32px, 7vw, 48px);
  }

  .service-content {
    padding: 0 16px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .service-feature-card {
    padding: 28px;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-faq {
    padding: 48px 0;
  }

  /* About */
  .about-values,
  .values-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 48px;
  }

  .about-value-card,
  .value-card {
    padding: 28px;
  }

  .about-clients {
    padding: 48px 16px;
  }

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

  /* Contact */
  .contact-section {
    padding: 48px 16px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 14px;
  }

  .contact-form-card .contact-form {
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 48px;
  }

  .blog-card--featured {
    grid-template-columns: 1fr;
  }

  .blog-card--featured .blog-card-img-wrap {
    min-height: 220px;
  }

  .blog-card-body {
    padding: 20px;
  }

  article.single-post {
    padding: 0 16px 0;
  }

  .single-hero {
    padding: 100px 0 28px;
  }

  .single-hero-title {
    font-size: clamp(26px, 7vw, 38px);
  }

  .single-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .single-hero-meta-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .single-featured {
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .single-featured-img {
    aspect-ratio: 4 / 3;
  }

  .single-post-content h2 {
    font-size: 22px;
    margin-top: 36px;
  }

  .single-post-content h3 {
    font-size: 18px;
    margin-top: 28px;
  }

  .single-post-content p,
  .single-post-content li {
    font-size: 15px;
  }

  .single-post-content > p:first-of-type {
    font-size: 17px;
  }

  .single-post-content > p:first-of-type::first-letter {
    font-size: 2.8em;
  }

  .single-post-content blockquote {
    padding: 20px 24px;
    margin: 28px 0;
  }

  .single-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .single-author-box {
    flex-direction: column;
    padding: 24px;
    text-align: center;
    align-items: center;
  }

  .single-author-link {
    justify-content: center;
  }

  .single-nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .single-nav-next {
    text-align: left;
  }

  .single-nav-next .single-nav-direction {
    justify-content: flex-start;
  }

  .single-nav-card {
    padding: 20px 24px;
  }

  .single-nav-section {
    padding: 0 16px 60px;
  }

  /* Pagination */
  .pagination {
    padding: 24px 16px;
    gap: 6px;
  }

  .pagination a,
  .pagination span {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  /* Breadcrumbs */
  .breadcrumbs {
    padding: 0 0 12px;
    font-size: 11px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  /* Remove form card wrapper on mobile — form lives directly in container */
  .contact-form-card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }

  /* Submit button sizing on mobile */
  .contact-form button[type="submit"],
  .btn-primary[style*="width:100%"] {
    padding: 14px 24px !important;
    font-size: 15px !important;
  }

  /* Page Hero */
  .page-hero {
    padding: 88px 16px 36px;
  }

  .page-hero-title {
    font-size: clamp(28px, 7vw, 44px);
  }

  /* Utilities */
  .container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 80px 16px;
  }

  /* 404 */
  .error-404 {
    padding: 100px 16px;
  }

  .error-404-actions {
    flex-direction: column;
  }

  .error-404-actions .btn-primary,
  .error-404-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* Marquee */
  .logo-carousel-section {
    padding: 40px 0;
  }

  .logo-carousel-fade {
    width: 60px;
  }

  .logo-carousel-track {
    gap: 40px;
  }

  .logo-carousel-item img {
    max-height: 32px;
    max-width: 100px;
  }

  /* Mobile menu links */
  .mobile-links a {
    font-size: 22px;
  }

  /* Split / Bento / Timeline responsive — mobile */
  .split-layout { padding: 60px 16px; }
  .bento-grid { grid-template-columns: 1fr; padding: 0 16px 40px; }
  .bento-card--large { grid-column: span 1; }
  .process-timeline { grid-template-columns: 1fr; padding: 0 16px 40px; }
  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 32px 16px;
    margin-top: 40px;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 12px;
  }
}

/* Very Small Screens */
@media (max-width: 380px) {
  .hero-title {
    font-size: 32px;
  }

  .cta-title {
    font-size: 22px;
  }

  .page-hero-title {
    font-size: 26px;
  }

  .service-hero-title {
    font-size: 28px;
  }

  .dash-title {
    font-size: 26px;
  }

  .s-title {
    font-size: 24px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none;
  }

  html.js-ready .reveal,
  html.js-ready .reveal-left,
  html.js-ready .reveal-right,
  html.js-ready .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .word span {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .s-eyebrow {
    animation: none;
  }

  .btn-primary,
  .nav-cta,
  .btn-cta-main {
    animation: none;
  }

  .float-anim {
    animation: none;
  }
}

/* Floating elements for geo pages */
.photo-card-float {
  position: relative;
}

.photo-card-float .float-tag {
  position: absolute;
  padding: 8px 16px;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.photo-card-float .float-tag--top-right {
  top: -12px;
  right: -12px;
}

.photo-card-float .float-tag--bottom-left {
  bottom: -12px;
  left: -12px;
}

.photo-card-float .float-tag--top-left {
  top: -12px;
  left: -12px;
}

.float-tag .float-tag-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
  box-shadow: 0 0 6px var(--green);
}

/* Photo overlap layout */
.photo-overlap {
  position: relative;
  padding: 40px 0 40px 40px;
}

.photo-overlap-main {
  width: 85%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.photo-overlap-main img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-overlap-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Photo with gradient overlay text */
.photo-hero-overlay {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.photo-hero-overlay img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.photo-hero-overlay .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(10, 10, 18, 0.92));
}

@media (max-width: 1100px) {
  .photo-overlap { padding: 20px 0 20px 20px; }
  .photo-overlap-main { width: 100%; }
  .photo-overlap-accent { position: static; width: 100%; margin-top: 16px; }
  .photo-hero-overlay img { height: 250px; }
}

@media (max-width: 640px) {
  .photo-card-float .float-tag { font-size: 11px; padding: 6px 12px; }
  .photo-card-float .float-tag--top-right { top: -8px; right: -8px; }
  .photo-card-float .float-tag--bottom-left { bottom: -8px; left: -8px; }

  /* Mobile menu inner padding */
  .mobile-menu-inner { padding: 80px 20px 28px; }
  .mobile-link-main { font-size: clamp(22px, 6.5vw, 32px); padding: 16px 0; }
  .mobile-sub-links { padding-left: 28px; gap: 6px; padding-bottom: 14px; }
  .mobile-sub-links a { font-size: 12px; padding: 5px 12px; }
  .mobile-menu-footer { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Blockquote decorative quote */
  .single-post-content blockquote::before { font-size: 48px; }

  /* Hero grid gap */
  .hero-grid { gap: 32px; }
}
