/*
Theme Name: Francis Ariole Portfolio
Theme URI: https://francisariole.com
Author: Francis Ariole
Author URI: https://francisariole.com
Description: Professional portfolio theme for Francis Ariole — WordPress Developer & Elementor Expert
Version: 1.0.2
License: Private
Text Domain: francis-ariole
Tags: portfolio, one-page, responsive, custom-header, custom-logo
*/
:root {
  --blue: #4353ff;
  --blue-dk: #2c3ee0;
  --text: #111118;
  --mid: #444;
  --muted: #888;
  --border: #e4e4e4;
  --off: #f6f6f4;
  --white: #fff;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "Roboto Mono", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --v1: #8b5cf6;
  --v2: #7c3aed;
  --p1: #ec4899;
  --o1: #f97316;
  --b1: #60a5fa;
  --lav: #f0eeff;
  --lav2: #e6e1fa;
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::after,
  ::before {
    transition-duration: NaNs !important;
    animation-duration: NaNs !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
[data-reveal="left"] {
  transform: translateX(-28px);
}
[data-reveal="right"] {
  transform: translateX(28px);
}
[data-reveal].on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s !important;
}
.d2 {
  transition-delay: 0.16s !important;
}
.d3 {
  transition-delay: 0.24s !important;
}
.mono-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  padding: 13px 26px;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
  border-radius: 10px;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  border: none;
}
.btn-blue:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(67, 83, 255, 0.28);
}
.btn-ghost {
  background: 0 0;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: var(--off);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  border: 1.5px solid rgba(139, 92, 246, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.85);
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s,
    border-color 0.3s,
    padding 0.3s;
}
.nav.stuck {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
  padding: 13px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-logo sup {
  font-size: 9px;
  color: var(--blue);
  vertical-align: super;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: 0 0;
  border: none;
  cursor: pointer;
}
.hbg span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hbg.open span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.hbg.open span:nth-child(2) {
  opacity: 0;
}
.hbg.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mob-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-top: 14px;
  padding: 6px 0 4px;
}
.mob-nav.open {
  display: flex;
}
.mob-nav a {
  padding: 13px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
}
.mob-nav a:last-child {
  border-bottom: none;
  color: var(--blue);
}
@media (max-width: 900px) {
  .nav .btn,
  .nav-links {
    display: none;
  }
  .hbg {
    display: flex;
  }
  /* Always show solid background on mobile — gradient hero makes transparent nav unreadable */
  .nav {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: var(--border);
    padding: 13px 0;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-blobs {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.b1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.7) 0,
    rgba(109, 40, 217, 0.38) 60%,
    transparent 80%
  );
  filter: blur(80px);
  top: -10%;
  right: -2%;
}
.b2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.65) 0,
    rgba(234, 88, 12, 0.38) 60%,
    transparent 80%
  );
  filter: blur(72px);
  top: 35%;
  right: 8%;
}
.b3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.58) 0,
    rgba(190, 24, 93, 0.32) 60%,
    transparent 80%
  );
  filter: blur(80px);
  bottom: -5%;
  right: -4%;
}
.b4 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.55) 0,
    rgba(37, 99, 235, 0.28) 60%,
    transparent 80%
  );
  filter: blur(70px);
  top: 5%;
  right: 48%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
}
.hero-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
}
.avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}
.hero-ticker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-h1 {
  font-size: clamp(44px, 5.8vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
  color: var(--text);
}
.hero-h1 .reg {
  font-size: 0.42em;
  vertical-align: super;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0;
}
.hero-h1 .l2 {
  display: block;
  color: var(--muted);
  font-weight: 300;
}
.hero-h1 .l3 {
  display: block;
  color: var(--text);
}
.hero-desc {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.8) 0,
    rgba(238, 233, 255, 0.66) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 28px 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 8px 48px rgba(139, 92, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.hc-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.hc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hc-stat-num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
}
.hc-stat-num em {
  font-style: normal;
  color: var(--blue);
}
.hc-stat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-card-sm {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.8) 0,
    rgba(238, 233, 255, 0.66) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 4px 28px rgba(139, 92, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--v1), var(--o1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.hc-review-meta {
  flex: 1;
  min-width: 0;
}
.hc-review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.hc-review-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.hc-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
}
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-card {
    flex: 1 1 280px;
  }
  .hero-card-sm {
    flex: 1 1 240px;
  }
}
@media (max-width: 600px) {
  .hero-right {
    display: none;
  }
}
/* Mobile hero: gradient background makes muted text invisible — boost contrast */
@media (max-width: 900px) {
  .avail-badge {
    color: #333;
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero-ticker {
    color: #333;
  }
  .hero-ticker b,
  .hero-ticker span {
    color: #333;
  }
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--text), transparent);
  animation: scrollAnim 1.9s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.marquee-wrap {
  overflow: hidden;
  padding: 18px 0;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.m-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.m-item b {
  color: var(--text);
  font-weight: 600;
}
.m-star {
  color: var(--blue);
  font-size: 14px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.tagline-sec {
  padding: 110px 0;
  border-bottom: 1px solid var(--border);
}
.tagline-inner {
  max-width: 900px;
}
.tagline-eyebrow {
  margin-bottom: 28px;
}
.tagline-txt {
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}
.tagline-txt em {
  font-style: normal;
  color: var(--blue);
}
.about-sec {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.about-sticky {
  position: sticky;
  top: 110px;
}
.about-eyebrow {
  margin-bottom: 20px;
}
.about-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 5px rgba(139, 92, 246, 0.18),
    0 6px 28px rgba(0, 0, 0, 0.13);
  margin-bottom: 24px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.about-since {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 18px;
}
.about-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
}
.stat-num em {
  font-style: normal;
  color: var(--blue);
}
.stat-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-count {
  display: inline;
}
.about-right {
  display: flex;
  flex-direction: column;
}
.about-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.about-block:first-child {
  border-top: 1px solid var(--border);
}
.about-block p {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.8;
}
.about-block p strong {
  color: var(--text);
  font-weight: 600;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-sticky {
    position: static;
  }
}
.expertise-sec {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f2ff 0, #ebe6fd 45%, #f5f2ff 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
}
.expertise-sec::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 550px;
  height: 550px;
  filter: blur(80px);
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.22) 0,
    transparent 65%
  );
  top: -140px;
  right: -130px;
}
.expertise-sec::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 440px;
  height: 440px;
  filter: blur(80px);
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.16) 0,
    transparent 65%
  );
  bottom: -110px;
  left: -110px;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.exp-heading {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text);
}
.exp-heading em {
  font-style: normal;
  color: var(--blue);
}
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.82) 0,
    rgba(237, 232, 255, 0.65) 100%
  );
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 40px;
  box-shadow:
    0 8px 48px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(99, 102, 241, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.glass-card-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.glass-card p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
}
.glass-card p strong {
  color: var(--text);
  font-weight: 600;
}
.skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.skill {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85) 0,
    rgba(245, 242, 255, 0.75) 100%
  );
  border: 1px solid rgba(139, 92, 246, 0.22);
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}
.skill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: linear-gradient(
    135deg,
    rgba(67, 83, 255, 0.08),
    rgba(139, 92, 246, 0.06)
  );
}
@media (max-width: 860px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.services-sec {
  padding: 120px 0;
  background: linear-gradient(135deg, #fdfcff 0, #f3efff 50%, #fdfcff 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
  position: relative;
  overflow: hidden;
}
.svc-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.sb1 {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.55) 0,
    rgba(109, 40, 217, 0.28) 60%,
    transparent 80%
  );
  filter: blur(88px);
  top: -10%;
  right: -5%;
}
.sb2 {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.5) 0,
    rgba(234, 88, 12, 0.28) 60%,
    transparent 80%
  );
  filter: blur(80px);
  bottom: -5%;
  right: 10%;
}
.sb3 {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.45) 0,
    rgba(37, 99, 235, 0.22) 60%,
    transparent 80%
  );
  filter: blur(76px);
  top: 20%;
  left: -8%;
}
.sec-head {
  margin-bottom: 72px;
}
.sec-eyebrow {
  margin-bottom: 14px;
}
.sec-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.svc-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.8) 0,
    rgba(240, 236, 255, 0.62) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s,
    border-color 0.28s;
  box-shadow:
    0 4px 28px rgba(99, 102, 241, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.28);
  box-shadow:
    0 22px 60px rgba(99, 102, 241, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.svc-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.nb1 {
  background: linear-gradient(135deg, #8b5cf6, #4353ff);
}
.nb2 {
  background: linear-gradient(135deg, #4353ff, #06b6d4);
}
.nb3 {
  background: linear-gradient(135deg, #ec4899, #f97316);
}
.nb4 {
  background: linear-gradient(135deg, #f97316, #eab308);
}
.svc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.svc-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--text);
}
.svc-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.svc-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.74;
  flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s;
  margin-top: auto;
}
.svc-card:hover .svc-link {
  opacity: 1;
  transform: translateX(0);
  color: var(--blue);
}
@media (max-width: 700px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.works-sec {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.sec-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
  flex-wrap: wrap;
}
.works-list {
  display: flex;
  flex-direction: column;
}
.work-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: gap 0.3s var(--ease);
}
.work-row:last-child {
  border-bottom: 1px solid var(--border);
}
.work-row:hover {
  gap: 48px;
}
.work-row:hover .work-title {
  color: var(--blue);
}
.work-row:hover .work-arr {
  opacity: 1;
  transform: translateX(0);
}
.work-n {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.work-title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.work-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.work-preview {
  width: 110px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.35s var(--ease);
}
.work-row:hover .work-preview {
  opacity: 1;
  transform: scale(1);
}
.work-prev-inner {
  width: 100%;
  height: 100%;
}
.wp1 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.wp2 {
  background: linear-gradient(135deg, #059669, #10b981);
}
.wp3 {
  background: linear-gradient(135deg, #f97316, #eab308);
}
.wp4 {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}
.work-arr {
  font-size: 20px;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .work-row {
    grid-template-columns: 44px 1fr;
  }
  .work-arr,
  .work-preview {
    display: none;
  }
}
.testi-sec {
  padding: 120px 0;
  background: linear-gradient(135deg, #eceaff 0, #e4e0fa 40%, #edeaff 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
}
.testi-sec::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  filter: blur(90px);
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.28) 0,
    transparent 65%
  );
  top: -160px;
  left: -120px;
}
.testi-sec::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 500px;
  height: 500px;
  filter: blur(90px);
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.22) 0,
    transparent 65%
  );
  bottom: -130px;
  right: -100px;
}
.testi-head {
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.testi-carousel-clip {
  overflow: hidden;
  padding: 36px 0;
  margin: -36px 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.testi-carousel {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.testi-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.testi-card {
  flex-shrink: 0;
  min-width: 280px;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(237, 232, 255, 0.7)
  );
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(14px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  transition: all 0.22s;
  font-size: 18px;
  line-height: 1;
}
.testi-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(67, 83, 255, 0.15);
}
.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testi-counter {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  min-width: 80px;
  text-align: center;
}
.testi-counter strong {
  color: var(--blue);
  font-weight: 700;
}
.testi-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.78) 0,
    rgba(237, 232, 255, 0.65) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s,
    border-color 0.28s,
    background 0.28s;
  box-shadow:
    0 4px 24px rgba(139, 92, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}
.testi-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.88) 0,
    rgba(237, 232, 255, 0.76) 100%
  );
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 48px rgba(139, 92, 246, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 1px;
}
.testi-quote {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(139, 92, 246, 0.12);
  padding-top: 20px;
}
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.av1 {
  background: linear-gradient(135deg, #4353ff, #8b5cf6);
}
.av2 {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}
.av3 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.av4 {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}
.av5 {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
}
.av6 {
  background: linear-gradient(135deg, #10b981, #4353ff);
}
.av7 {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}
.testi-name {
  font-weight: 700;
  font-size: 14px;
}
.testi-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 600px) and (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.pricing-sec {
  padding: 120px 0;
  background: linear-gradient(180deg, #fff 0, #f4f1ff 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}
.pricing-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}
.pricing-head .sec-h2 {
  margin-top: 14px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pricing-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.82) 0,
    rgba(241, 237, 255, 0.64) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s,
    border-color 0.28s;
  box-shadow:
    0 4px 24px rgba(99, 102, 241, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow:
    0 22px 60px rgba(99, 102, 241, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.88) 0,
    rgba(228, 222, 255, 0.72) 100%
  );
}
.pricing-card.featured:hover {
  box-shadow:
    0 22px 60px rgba(67, 83, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.pricing-top {
  padding: 34px 32px 26px;
}
.p-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.p-badge.featured {
  background: var(--blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}
.p-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.p-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
}
.p-price-wrap {
  margin-bottom: 4px;
}
.p-price-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.p-price-label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background: var(--blue);
  border-radius: 2px;
}
.p-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.p-price .cur {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
}
.p-price .amt {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.p-price-range {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.pricing-div {
  height: 1px;
  background: var(--border);
  margin: 0 32px;
}
.pricing-card.featured .pricing-div {
  background: rgba(67, 83, 255, 0.2);
}
.pricing-feats {
  padding: 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.p-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
}
.p-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ck-blue {
  background: rgba(67, 83, 255, 0.12);
}
.ck-blue svg {
  stroke: var(--blue);
}
.ck-green {
  background: rgba(16, 185, 129, 0.12);
}
.ck-green svg {
  stroke: #10b981;
}
.p-delivery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 20px;
}
.p-delivery::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}
.pricing-foot {
  padding: 22px 32px 34px;
}
.pricing-foot .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}
.grad-interactive {
  position: relative;
  overflow: hidden;
}
.grad-spot {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.16) 0,
    rgba(99, 102, 241, 0.06) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
  transition:
    left 0.25s ease,
    top 0.25s ease;
  opacity: 0;
}
.cta-sec {
  padding: 140px 0;
  background: linear-gradient(
    135deg,
    #edeaff 0,
    #e4dffc 35%,
    #fdf4ff 65%,
    #f2eeff 100%
  );
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}
.cta-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.cb1 {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.52) 0,
    rgba(109, 40, 217, 0.25) 60%,
    transparent 80%
  );
  filter: blur(90px);
  top: -20%;
  left: -8%;
}
.cb2 {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.45) 0,
    rgba(190, 24, 93, 0.22) 60%,
    transparent 80%
  );
  filter: blur(80px);
  bottom: -10%;
  right: -6%;
}
.cb3 {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.4) 0,
    rgba(234, 88, 12, 0.18) 60%,
    transparent 80%
  );
  filter: blur(72px);
  top: 30%;
  right: 15%;
}
.cta-inner-wrap {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-label {
  margin-bottom: 26px;
}
.cta-h2 {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 24px;
  color: var(--text);
}
.cta-h2 em {
  font-style: normal;
  color: var(--blue);
}
.cta-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.76;
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.footer {
  background: #0c0c16;
  padding: 72px 0 48px;
  color: #fff;
  transition: background 0.08s ease;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.f-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.f-logo sup {
  font-size: 9px;
  color: var(--blue);
  vertical-align: super;
}
.f-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.72;
  max-width: 230px;
}
.f-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.f-soc {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.2s;
}
.f-soc:hover {
  border-color: var(--blue);
  color: #fff;
  background: rgba(67, 83, 255, 0.2);
}
.f-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}
.f-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.f-col a:hover {
  color: #fff;
}
.f-avail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #22c55e;
  margin-top: 14px;
}
.f-avail::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
.footer-bottom {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.24);
}
.footer-bottom a {
  color: var(--blue);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fy0 {
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) 0.15s forwards;
}
.fy1 {
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) 0.3s forwards;
}
.fy2 {
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) 0.45s forwards;
}
.fy3 {
  opacity: 0;
  animation: fadeIn 0.7s ease 0.6s forwards;
}
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #4353ff, #8b5cf6);
  z-index: 9999;
  transition: width 0.1s linear;
}
.blog-post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}
.post-header {
  margin-bottom: 48px;
}
.post-category-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4353ff;
  background: rgba(67, 83, 255, 0.08);
  border: 1px solid rgba(67, 83, 255, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.post-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.post-featured-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.2);
  margin-bottom: 52px;
}
.post-featured-img img {
  width: 100%;
  display: block;
}
.post-content {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.8;
}
.post-content h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 48px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--v1);
}
.post-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 12px;
}
.post-content p {
  margin-bottom: 24px;
}
.post-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(67, 83, 255, 0.3);
}
.post-content a:hover {
  text-decoration-color: var(--blue);
}
.post-content ol,
.post-content ul {
  padding-left: 24px;
  margin-bottom: 24px;
}
.post-content li {
  margin-bottom: 8px;
}
.post-content blockquote {
  border-left: 4px solid var(--v1);
  padding: 16px 24px;
  background: var(--lav);
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
  font-style: italic;
  color: var(--mid);
}
.post-content code,
.post-content pre {
  font-family: var(--mono);
  font-size: 14px;
  background: #f6f5ff;
  border-radius: 6px;
}
.post-content pre {
  border-left: 3px solid var(--v1);
  padding: 20px 24px;
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 0 10px 10px 0;
}
.post-content code {
  padding: 2px 6px;
}
.post-content img {
  border-radius: 12px;
  margin: 32px 0;
}
.author-bio-box {
  margin-top: 72px;
  padding: 36px;
  background: linear-gradient(145deg, #f5f2ff, #ede9ff);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 22px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--v1), var(--o1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}
.author-bio-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.author-bio-title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}
.author-bio-text {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}
@media (max-width: 560px) {
  .author-bio-box {
    flex-direction: column;
  }
}
.related-posts {
  margin-top: 80px;
}
.related-posts h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}
.related-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.82) 0,
    rgba(241, 237, 255, 0.64) 100%
  );
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(99, 102, 241, 0.14);
}
.related-card-img {
  height: 140px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-card-body {
  padding: 20px;
  flex: 1;
}
.related-card-cat {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.related-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}
.archive-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}
@media (max-width: 768px) {
  .archive-wrap {
    padding: 100px 20px 60px;
  }
}
.archive-header {
  margin-bottom: 64px;
}
.archive-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}
.archive-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.82) 0,
    rgba(241, 237, 255, 0.64) 100%
  );
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 22px;
  overflow: hidden;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.06);
}
.archive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(99, 102, 241, 0.14);
  border-color: rgba(139, 92, 246, 0.25);
}
.archive-card-img {
  height: 200px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  overflow: hidden;
}
.archive-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.archive-card:hover .archive-card-img img {
  transform: scale(1.04);
}
.archive-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.archive-card-cat {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.archive-card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}
.archive-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.archive-card-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  gap: 12px;
}
.error-404-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}
.error-404-code {
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--lav2);
  line-height: 1;
}
.error-404-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.error-404-desc {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}
/* ── Client Reviews ── */
.cr-sec {
  padding: 120px 0;
  background: linear-gradient(180deg, #f0eeff 0%, #e8e3ff 100%);
  border-bottom: 1px solid rgba(99, 83, 255, 0.08);
  position: relative;
}
.cr-sec > .wrap {
  position: relative;
  z-index: 1;
}
.cr-head {
  text-align: center;
  margin-bottom: 56px;
}
.cr-head .mono-tag {
  margin-bottom: 14px;
  display: inline-block;
}
.cr-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.5px;
}

/* 3-column static grid */
.cr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.cr-card {
  background: #fff;
  border: 1px solid #e8e3f5;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 18px rgba(67, 83, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.28s ease,
    border-color 0.25s ease;
  cursor: default;
}
.cr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(67, 83, 255, 0.14);
  border-color: rgba(99, 83, 255, 0.32);
}

/* Stars */
.cr-stars {
  display: flex;
  gap: 3px;
}
.cr-stars svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
}

/* Quote — always fully visible */
.cr-quote {
  font-size: 15px;
  line-height: 1.72;
  color: #2d2d3a;
  font-style: italic;
  flex: 1 1 auto;
  margin: 0;
}

/* Author row */
.cr-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0ecfc;
  margin-top: auto;
}
.cr-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.cav-blue   { background: linear-gradient(135deg, #4353ff, #6875ff); }
.cav-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.cav-green  { background: linear-gradient(135deg, #059669, #10b981); }
.cav-orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.cav-teal   { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.cav-pink   { background: linear-gradient(135deg, #db2777, #ec4899); }
.cav-red    { background: linear-gradient(135deg, #dc2626, #ef4444); }
.cav-indigo { background: linear-gradient(135deg, #4f46e5, #818cf8); }
.cav-amber  { background: linear-gradient(135deg, #d97706, #f59e0b); }
.cr-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cr-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.cr-role {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Responsive */
@media (max-width: 900px) {
  .cr-sec {
    padding: 90px 0;
  }
  .cr-head {
    margin-bottom: 40px;
  }
  .cr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 580px) {
  .cr-sec {
    padding: 64px 0;
  }
  .cr-head {
    margin-bottom: 32px;
  }
  .cr-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cr-card {
    padding: 22px 20px 20px;
    border-radius: 14px;
    gap: 14px;
  }
  .cr-quote {
    font-size: 14px;
    line-height: 1.7;
  }
}
