/* =========================================================
   Joel Computech — vibrant, energetic, centric-inspired
   ========================================================= */

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f9f9f7;
  --bg-grey: #eeeeee;
  --ink: #303841;
  --ink-deep: #1a1f26;
  --ink-soft: #4a5460;
  --muted: #6b7480;
  --line: #e5e5e2;
  --line-soft: #f0efeb;

  /* Brand: trustworthy emerald green + subtle gold accent */
  --green-1: #0f5132;       /* deep emerald (trust) */
  --green-2: #157347;       /* main green — primary brand */
  --green-3: #1a8a55;       /* fresh action gresen */
  --green-4: #34a96b;       /* hover/highlight */
  --green-soft: #e8f3ed;    /* subtle background tint */
  --gold-1: #b8893d;        /* deep gold (rare accent) */
  --gold-2: #d4a44c;        /* warm gold */
  --gold-3: #e8c478;        /* light gold (highlights) */
  --orange-1: #157347;       /* alias = brand green */
  --orange-2: #1a8a55;
  --orange-3: #34a96b;
  --orange-4: #d4a44c;
  --orange-5: #e8c478;
  --grad-orange: linear-gradient(135deg, #0f5132 0%, #157347 50%, #1a8a55 100%);
  --grad-orange-h: linear-gradient(90deg, #0f5132, #157347, #1a8a55, #34a96b);
  --grad-green: linear-gradient(135deg, #0f5132 0%, #1a8a55 100%);
  --grad-gold: linear-gradient(135deg, #b8893d 0%, #e8c478 100%);

  --primary: #157347;
  --primary-hover: #0f5132;

  --radius: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(14,77,43,0.06);
  --shadow-md: 0 12px 32px -8px rgba(14,77,43,0.15);
  --shadow-lg: 0 30px 80px -20px rgba(14,77,43,0.3);
  --shadow-orange: 0 14px 30px -8px rgba(14,77,43,0.35);
  --shadow-gold: 0 14px 30px -8px rgba(196,151,42,0.35);

  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

::selection { background: var(--orange-1); color: var(--white); }

h1, h2, h3, h4 {
  font-family: 'Urbanist', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; }

p { color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

/* =========================================================
   AMBIENT BACKGROUND PATTERNS (dotted grids, blobs)
   ========================================================= */
.dot-grid {
  background-image: radial-gradient(rgba(21,115,71,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
  transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
nav.is-scrolled {
  padding: 12px 56px;
  box-shadow: 0 4px 24px rgba(48,56,65,0.06);
}
.nav-logo img {
  height: 70px; width: auto; display: block;
  transition: transform 0.4s var(--ease), height 0.4s var(--ease);
}
nav.is-scrolled .nav-logo img { height: 54px; }
.nav-logo:hover img { transform: scale(1.04) rotate(-2deg); }

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  color: var(--ink); font-size: 0.95rem; font-weight: 600;
  position: relative; padding: 8px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px; background: var(--grad-orange-h);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--orange-1); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--grad-orange);
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-orange);
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f5132, #1a8a55);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(21,115,71,0.55);
}
.nav-cta:hover::before { opacity: 1; }

/* =========================================================
   LAYOUT
   ========================================================= */
section {
  padding: 110px 56px;
  max-width: var(--container);
  margin: 0 auto;
}
.section-full {
  max-width: 100%;
  padding-left: 0; padding-right: 0;
}

/* =========================================================
   ANIMATED TECH BACKGROUND (constellation network)
   ========================================================= */
.tech-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.tech-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.85;
}

/* Layer of circuit-like SVG patterns */
.tech-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    /* horizontal circuit lines */
    linear-gradient(90deg, transparent 0, transparent 40%, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0.08) 41%, transparent 41%),
    /* vertical circuit lines */
    linear-gradient(0deg, transparent 0, transparent 60%, rgba(255,255,255,0.06) 60%, rgba(255,255,255,0.06) 61%, transparent 61%),
    /* dotted nodes */
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 1.5px, transparent 2px),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,0.4) 1.5px, transparent 2px),
    radial-gradient(circle at 45% 85%, rgba(255,255,255,0.4) 1.5px, transparent 2px),
    radial-gradient(circle at 90% 15%, rgba(255,255,255,0.4) 1.5px, transparent 2px);
  background-size: 200px 200px, 180px 180px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  opacity: 0.5;
  animation: jcCircuitDrift 30s linear infinite;
}

@keyframes jcCircuitDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 200px 0, 0 200px, 0 0, 0 0, 0 0, 0 0; }
}

/* Pulse dots floating around */
.tech-pulse {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  animation: jcDotPulse 3s ease-in-out infinite;
}
.tech-pulse.p1 { top: 20%; left: 12%; animation-delay: 0s; }
.tech-pulse.p2 { top: 65%; left: 78%; animation-delay: 0.8s; }
.tech-pulse.p3 { top: 35%; left: 88%; animation-delay: 1.6s; }
.tech-pulse.p4 { top: 80%; left: 22%; animation-delay: 2.2s; }
.tech-pulse.p5 { top: 50%; left: 50%; animation-delay: 1.2s; width: 5px; height: 5px; }

@keyframes jcDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); opacity: 1; }
  50% { box-shadow: 0 0 0 18px rgba(255,255,255,0); opacity: 0.7; }
}

/* Floating tech badges (binary, hex, code symbols) */
.tech-glyph {
  position: absolute;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  color: rgba(255,255,255,0.18);
  font-weight: 600;
  font-size: 0.85rem;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
  animation: jcGlyphFloat 14s ease-in-out infinite alternate;
}
.tech-glyph.g1 { top: 18%; right: 8%; animation-delay: 0s; font-size: 1.1rem; }
.tech-glyph.g2 { top: 72%; left: 10%; animation-delay: 2s; }
.tech-glyph.g3 { top: 40%; left: 6%; animation-delay: 4s; font-size: 0.75rem; }
.tech-glyph.g4 { bottom: 15%; right: 14%; animation-delay: 1s; }

@keyframes jcGlyphFloat {
  0% { transform: translate(0,0); opacity: 0.18; }
  50% { opacity: 0.32; }
  100% { transform: translate(15px, -20px); opacity: 0.12; }
}

/* =========================================================
   HERO — vibrant orange gradient bandeau
   ========================================================= */
.hero {
  position: relative;
  background: var(--grad-orange);
  color: var(--white);
  padding: 100px 56px 120px;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: ""; position: absolute;
  top: -200px; right: -150px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: jcFloat 12s ease-in-out infinite alternate;
}
@keyframes jcFloat {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px, 60px) scale(1.1); }
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; width: 8px; height: 8px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
  animation: jcPulse 2s ease-in-out infinite;
}
@keyframes jcPulse {
  50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}
.hero h1 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(255,255,255,0.3) 60%);
  padding: 0 6px;
  border-radius: 4px;
}
.hero p.lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-illustration {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-illustration img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.3);
}
/* Floating tags around illustration */
.float-tag {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
  z-index: 3;
}
.float-tag .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange-1);
}
.float-tag.t1 { top: 24px; left: -16px; animation: jcFloatA 5s ease-in-out infinite alternate; }
.float-tag.t2 { bottom: 80px; right: -20px; animation: jcFloatB 6s ease-in-out infinite alternate; }
.float-tag.t3 { bottom: 20px; left: 30px; animation: jcFloatA 7s ease-in-out infinite alternate; }
@keyframes jcFloatA { 100% { transform: translateY(-12px); } }
@keyframes jcFloatB { 100% { transform: translateY(14px); } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.92rem;
  font-family: 'Urbanist', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "→";
  display: inline-block;
  font-size: 1.1em;
  transition: transform 0.4s var(--ease);
}
.btn:hover::after { transform: translateX(6px); }

.btn-primary {
  background: var(--white);
  color: var(--orange-1);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background: var(--ink-deep);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.btn-orange {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -6px rgba(21,115,71,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--ink-deep);
  border-color: var(--white);
}
.btn-dark {
  background: var(--ink-deep);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--orange-1);
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.section-head .pill {
  display: inline-block;
  background: rgba(21,115,71,0.1);
  color: var(--orange-1);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.section-head h2 {
  margin-bottom: 18px;
  color: var(--ink);
}
.section-head h2 em {
  font-style: normal;
  background: var(--grad-orange-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--muted);
}

/* =========================================================
   SERVICE CARDS — icon style like centrictech
   ========================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  text-align: center;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-orange-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 22px;
  background: rgba(21,115,71,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--orange-1);
  transition: all 0.5s var(--ease);
  position: relative;
}
.svc-card:hover .svc-icon {
  background: var(--grad-orange);
  color: var(--white);
  transform: rotate(-8deg) scale(1.05);
  box-shadow: var(--shadow-orange);
}
.svc-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.svc-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-1);
  padding: 10px 22px;
  background: rgba(21,115,71,0.08);
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--ease);
}
.svc-link:hover {
  background: var(--grad-orange);
  color: var(--white);
  gap: 10px;
}

/* =========================================================
   ABOUT SPLIT
   ========================================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-split .pill { display: inline-block; background: rgba(21,115,71,0.1); color: var(--orange-1); padding: 8px 20px; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 22px; }
.about-split h2 { margin-bottom: 22px; }
.about-split h2 em { font-style: normal; background: var(--grad-orange-h); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.about-split p { margin-bottom: 18px; font-size: 1.02rem; }

.about-image {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about-image:hover img { transform: scale(1.06); }
.about-image::after {
  content: "";
  position: absolute;
  bottom: -30px; right: -30px;
  width: 220px; height: 220px;
  background: var(--grad-orange);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.about-badge .num {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--grad-orange-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 110px;
}

/* =========================================================
   PROCESS — horizontal steps
   ========================================================= */
.process-section {
  background: var(--bg-soft);
  position: relative;
}
.process-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,115,71,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative; z-index: 1;
}
.process-step {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.5s var(--ease);
}
.process-step::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius-md);
  background: var(--grad-orange);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s var(--ease);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.process-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--grad-orange-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.process-step p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* =========================================================
   STATS BANDEAU (light)
   ========================================================= */
.stats-section {
  background: var(--white);
  padding: 80px 56px;
}
.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 24px;
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease);
}
.stat-item:hover {
  background: var(--bg-soft);
  transform: translateY(-4px);
}
.stat-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  background: var(--grad-orange-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-lbl {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
}

/* =========================================================
   TESTIMONIAL — orange band
   ========================================================= */
.testi-section {
  background: var(--grad-orange);
  color: var(--white);
  padding: 110px 56px;
  position: relative;
  overflow: hidden;
}
.testi-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.25;
  z-index: 1;
}
.testi-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.testi-section h2 { color: var(--white); margin-bottom: 14px; }
.testi-section .pill {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.3);
}
.testi-section .lead { color: rgba(255,255,255,0.9); font-size: 1.05rem; }

.testi-card {
  background: var(--white);
  color: var(--ink);
  padding: 44px;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  position: relative;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -10px; left: 30px;
  font-family: 'Urbanist', serif;
  font-size: 6rem;
  color: var(--orange-1);
  line-height: 1;
  font-weight: 900;
}
.testi-card blockquote {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 30px 0 26px;
  font-weight: 500;
}
.testi-card figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange-1);
  flex-shrink: 0;
}
.testi-name { font-weight: 800; font-family: 'Urbanist', sans-serif; color: var(--ink); }
.testi-role { font-size: 0.85rem; color: var(--muted); }

/* =========================================================
   TECH PILLS / PARTNERS
   ========================================================= */
.tech-section { background: var(--bg-soft); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-cat {
  background: var(--white);
  padding: 30px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease);
}
.tech-cat:hover {
  border-color: var(--orange-1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tech-cat h4 {
  color: var(--orange-1);
  margin-bottom: 18px;
}
.tech-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tech-pills span {
  padding: 8px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.tech-cat:hover .tech-pills span:hover {
  background: var(--grad-orange);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.industry-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-deep);
}
.industry-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: all 0.6s var(--ease);
}
.industry-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(48,56,65,0.95));
  pointer-events: none;
}
.industry-card:hover img {
  opacity: 0.5;
  transform: scale(1.08);
}
.industry-label {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  z-index: 2;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  display: flex; justify-content: space-between; align-items: center;
}
.industry-label .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform 0.4s var(--ease);
}
.industry-card:hover .industry-label .arrow {
  transform: rotate(-45deg) scale(1.1);
}

/* =========================================================
   CTA BAND (orange final)
   ========================================================= */
.cta-band {
  background: var(--grad-orange);
  padding: 90px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.3;
  z-index: 1;
}
.cta-band::after {
  content: ""; position: absolute;
  top: -100px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  position: relative; z-index: 2;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: left;
  margin: 0;
  line-height: 1.15;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.65);
  padding: 90px 56px 40px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
}
.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}
footer h3 { color: var(--white); font-size: 1.15rem; font-weight: 800; }
footer h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.footer-links a:hover {
  color: var(--orange-3);
  padding-left: 6px;
}
.footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 0.95rem; }
.footer-contact div { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.75); }
.footer-contact .ico {
  width: 36px; height: 36px;
  background: rgba(21,115,71,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-3);
  flex-shrink: 0;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 70px;
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   FORMS
   ========================================================= */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  font-family: 'Urbanist', sans-serif;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange-1);
  box-shadow: 0 0 0 4px rgba(21,115,71,0.12);
}

iframe {
  display: block;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
}

.responsive-img {
  width: 100%; height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* =========================================================
   PAGE HERO (sub-pages: services, portfolio, blog, pricing)
   ========================================================= */
.page-hero {
  background: var(--grad-orange);
  padding: 90px 56px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.3;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.page-hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative; z-index: 2;
  text-decoration: none;
}
.breadcrumb a {
  color: var(--gold-3);
  transition: color 0.3s var(--ease);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.6; color: var(--white); }
.breadcrumb span:not(.sep) { color: var(--white); }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.filter-btn:hover { border-color: var(--orange-1); color: var(--orange-1); }
.filter-btn.active {
  background: var(--grad-orange);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.portfolio-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.portfolio-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.portfolio-card:hover .portfolio-img img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(48,56,65,0.85));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  display: flex; align-items: flex-end; padding: 24px;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .visit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.portfolio-info { padding: 26px 24px; }
.portfolio-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--orange-1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.portfolio-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.portfolio-info p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.portfolio-meta {
  display: flex; gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.portfolio-meta span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 26px 24px; }
.blog-meta {
  display: flex; gap: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.blog-meta .cat { color: var(--orange-1); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; }
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.blog-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange-1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-readmore::after { content: "→"; transition: transform 0.3s var(--ease); }
.blog-readmore:hover::after { transform: translateX(4px); }

.blog-sidebar { display: flex; flex-direction: column; gap: 30px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.sidebar-card h4 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.85rem;
}
.sidebar-search input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
}
.sidebar-search input:focus {
  outline: none; border-color: var(--orange-1);
}
.recent-post {
  display: flex; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
}
.recent-post:last-child { border-bottom: none; }
.recent-post img {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  object-fit: cover; flex-shrink: 0;
}
.recent-post .info { display: flex; flex-direction: column; gap: 4px; }
.recent-post .ttl {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.recent-post:hover .ttl { color: var(--orange-1); }
.recent-post .date { font-size: 0.75rem; color: var(--muted); }

/* =========================================================
   ARTICLE / POST PAGE
   ========================================================= */
.post-hero {
  background: var(--grad-orange);
  padding: 90px 56px 110px;
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.3;
  z-index: 1;
}
.post-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative; z-index: 2;
  text-align: center;
}
.post-hero .post-cat {
  display: inline-block;
  background: var(--white);
  color: var(--green-1);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.post-hero h1 {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.post-hero .post-meta {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex; gap: 24px;
  justify-content: center; flex-wrap: wrap;
}
.post-hero .post-meta span { display: inline-flex; align-items: center; gap: 8px; }

.post-cover {
  max-width: var(--container);
  margin: -60px auto 0;
  padding: 0 56px;
  position: relative;
  z-index: 2;
}
.post-cover img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 56px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink);
}
.post-body > * + * { margin-top: 1.4em; }
.post-body h2 {
  font-size: 1.8rem;
  margin-top: 2.2em;
  margin-bottom: 0.6em;
  color: var(--green-1);
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 22px;
}
.post-body h2::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 4px;
  background: var(--grad-orange-h);
  border-radius: 4px;
}
.post-body h3 {
  font-size: 1.3rem;
  margin-top: 1.8em;
  margin-bottom: 0.4em;
  color: var(--ink);
}
.post-body p { color: var(--ink-soft); }
.post-body strong { color: var(--ink); font-weight: 700; }
.post-body em { color: var(--green-2); font-style: italic; font-weight: 500; }
.post-body a {
  color: var(--green-2);
  font-weight: 600;
  border-bottom: 1.5px solid var(--green-3);
  transition: all 0.3s var(--ease);
}
.post-body a:hover {
  color: var(--green-1);
  border-bottom-color: var(--green-1);
}
.post-body ul, .post-body ol {
  padding-left: 24px;
  color: var(--ink-soft);
}
.post-body ul li, .post-body ol li {
  margin-bottom: 10px;
  padding-left: 8px;
}
.post-body ul li::marker { color: var(--green-3); }
.post-body ol li::marker { color: var(--green-2); font-weight: 700; }

.post-body blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  background: var(--green-soft);
  border-left: 5px solid var(--green-2);
  border-radius: var(--radius);
  font-family: 'Urbanist', sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green-1);
  font-weight: 500;
  line-height: 1.5;
}

.post-body pre {
  background: var(--ink-deep);
  color: #c8e6c9;
  padding: 22px 26px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 1.6em 0;
}
.post-body code {
  background: var(--green-soft);
  color: var(--green-1);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-size: 0.92em;
  font-weight: 600;
}
.post-body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.post-body .callout {
  background: var(--white);
  border: 2px solid var(--green-2);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 2em 0;
  position: relative;
}
.post-body .callout::before {
  content: "💡";
  position: absolute;
  top: -16px; left: 24px;
  background: var(--white);
  padding: 0 10px;
  font-size: 1.4rem;
}
.post-body .callout strong {
  color: var(--green-1);
  display: block;
  margin-bottom: 6px;
}

.post-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.post-tags span {
  padding: 8px 16px;
  background: var(--green-soft);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-1);
}

.post-author {
  display: flex; gap: 18px;
  align-items: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
}
.post-author img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-3);
  flex-shrink: 0;
}
.post-author .name {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
}
.post-author .role {
  font-size: 0.88rem;
  color: var(--muted);
}

.post-related {
  background: var(--bg-soft);
  padding: 80px 56px;
}
.post-related-inner {
  max-width: var(--container);
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .post-cover { padding: 0 28px; margin-top: -40px; }
  .post-body { padding: 60px 28px; font-size: 1rem; }
  .post-body h2 { font-size: 1.5rem; }
  .post-body h3 { font-size: 1.15rem; }
  .post-related { padding: 60px 28px; }
}
@media (max-width: 768px) {
  .post-cover { padding: 0 20px; }
  .post-body { padding: 50px 20px; }
  .post-related { padding: 50px 20px; }
}

/* =========================================================
   PRICING TIERS
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.5s var(--ease);
}
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  background: var(--grad-orange);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
  transform: translateY(-12px);
}
.price-card.featured:hover { transform: translateY(-18px); }
.price-card.featured h3,
.price-card.featured .price-amount { color: var(--white); }
.price-card.featured p { color: rgba(255,255,255,0.9); }
.price-card.featured .price-features li { color: rgba(255,255,255,0.9); }
.price-card.featured .price-features li::before { color: var(--white); }
.price-badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--ink-deep);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price-card.featured .price-badge {
  background: var(--white);
  color: var(--orange-1);
}
.price-tier {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange-1);
  margin-bottom: 14px;
}
.price-card.featured .price-tier { color: var(--white); }
.price-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.price-amount {
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1;
  margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 6px;
}
.price-amount .currency { font-size: 1.4rem; font-weight: 700; }
.price-amount .period { font-size: 0.95rem; color: var(--muted); font-weight: 500; margin-left: 4px; }
.price-card.featured .price-amount .period { color: rgba(255,255,255,0.8); }
.price-desc {
  font-size: 0.95rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.price-card.featured .price-desc { border-bottom-color: rgba(255,255,255,0.2); }
.price-features {
  list-style: none;
  padding: 0;
  flex: 1;
  margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.price-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.price-features li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(21,115,71,0.12);
  color: var(--orange-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.price-card.featured .price-features li::before {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* =========================================================
   PORTFOLIO FEATURED CARDS (Guidy / Tsaloys highlight)
   ========================================================= */
.case-study {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.case-study:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}
.case-study:nth-child(even) .case-image { order: 2; }
.case-study:nth-child(even) .case-info { order: 1; }
.case-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.case-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.case-image:hover img { transform: scale(1.05); }
.case-info .pill {
  display: inline-block; background: rgba(21,115,71,0.1); color: var(--orange-1); padding: 6px 16px; border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px;
}
.case-info h2 { margin-bottom: 16px; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.case-info p { margin-bottom: 22px; font-size: 1.02rem; }
.case-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.case-tags span {
  padding: 6px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

/* =========================================================
   ANIMATIONS — scroll reveal, custom cursor, etc.
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  body, a, button, .btn, .svc-card, .industry-card, .testi-card {
    cursor: none !important;
  }
}

.jc-cursor {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid var(--orange-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.4s var(--ease), height 0.4s var(--ease),
              background 0.4s var(--ease), border-color 0.3s var(--ease),
              opacity 0.3s var(--ease), border-radius 0.4s var(--ease);
  will-change: transform;
  display: flex; align-items: center; justify-content: center;
}
.jc-cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--orange-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: opacity 0.25s var(--ease), background 0.25s var(--ease);
  will-change: transform;
}
.jc-cursor-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.jc-cursor.is-link {
  width: 56px; height: 56px;
  background: rgba(21,115,71,0.1);
  border-color: var(--orange-1);
}
.jc-cursor.is-button {
  width: 90px; height: 90px;
  background: var(--grad-orange);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}
.jc-cursor.is-button .jc-cursor-label { opacity: 1; transform: scale(1); }
.jc-cursor.is-button ~ .jc-cursor-dot { opacity: 0; }
.jc-cursor.is-card {
  width: 110px; height: 110px;
  background: rgba(48,56,65,0.95);
  border-color: transparent;
  backdrop-filter: blur(2px);
}
.jc-cursor.is-card .jc-cursor-label {
  opacity: 1; transform: scale(1); color: var(--orange-3);
}
.jc-cursor.is-text {
  width: 4px; height: 28px;
  background: var(--orange-1);
  border: none; border-radius: 2px;
  animation: jcBlink 1s steps(2) infinite;
}
@keyframes jcBlink { to { opacity: 0.3; } }
.jc-cursor.is-nav {
  width: 14px; height: 14px;
  background: var(--orange-1);
  border-color: transparent;
}
.jc-cursor-trail {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--orange-3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  will-change: transform;
}
@media (hover: none) {
  .jc-cursor, .jc-cursor-dot, .jc-cursor-trail { display: none !important; }
}

/* Scroll reveal */
.jc-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.jc-reveal-in { opacity: 1; transform: translateY(0); }

/* Word reveal */
.jc-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  animation: jcWordIn 0.9s var(--ease) forwards;
}
@keyframes jcWordIn {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  nav, nav.is-scrolled { padding: 16px 28px; }
  section { padding: 80px 28px; }
  .hero { padding: 70px 28px 90px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-inner { grid-template-columns: 1fr; gap: 40px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-split { grid-template-columns: 1fr; gap: 50px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-band h2 { text-align: center; }
  .stats-section, .testi-section, .cta-band { padding-left: 28px; padding-right: 28px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .case-study, .case-study:nth-child(even) { grid-template-columns: 1fr; gap: 32px; }
  .case-study:nth-child(even) .case-image { order: unset; }
}

@media (max-width: 768px) {
  nav, nav.is-scrolled {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .nav-links a { font-size: 0.88rem; }
  .nav-logo img, nav.is-scrolled .nav-logo img { height: 50px; }
  section { padding: 60px 20px; }
  .hero { padding: 50px 20px 70px; }
  .hero p.lead { font-size: 1rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-num { font-size: 2.8rem; }
  .tech-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-logo { height: 60px; }
  iframe { padding: 0 20px; }
  .testi-card { padding: 30px 24px; }
  .testi-card blockquote { font-size: 1rem; }
  .stats-section, .testi-section, .cta-band { padding-left: 20px; padding-right: 20px; }
  .cta-band { padding: 70px 20px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 20px 70px; }
}

@media (prefers-reduced-motion: reduce) {
  .jc-reveal { opacity: 1; transform: none; }
  .jc-word { opacity: 1; transform: none; animation: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
