/*
Theme Name: Acai Labs
Theme URI: https://www.acailabs.com/
Author: Acai Labs
Description: Lightweight custom WordPress theme for Acai Labs.
Version: 1.0.0
Text Domain: acailabs
*/

:root {
  --bg: #07120f;
  --panel: #0d201a;
  --panel-dark: #0a1713;
  --line: rgba(255, 255, 255, 0.11);
  --border: rgba(255, 255, 255, 0.11);
  --white: #f5f7f3;
  --muted: #a6b2aa;
  --muted-dark: #68766e;
  --green: #42e477;
  --green-dark: #159345;
  --max-width: 1240px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

p {
  margin-top: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.site-main {
  overflow: hidden;
}

.section {
  padding: 120px 0;
}

.dark-panel {
  background: var(--panel-dark);
  border-block: 1px solid var(--line);
}

.light {
  background: #f2f5f1;
  color: var(--bg);
}


/* =========================================================
ACCESSIBILITY
========================================================= */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--white);
  color: var(--bg);
  z-index: 99999;
}


/* =========================================================
HEADER
========================================================= */

.site-header {
  height: 86px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 18, 15, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header Logo */

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  line-height: 1;
}

.logo img {
  display: block;
  width: 72px;
  height: auto;
}

.logo small {
  display: block;
  margin-top: 4px;
  color: #718077;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 700;
  white-space: nowrap;
}

/* Primary Navigation */

.primary-navigation {
  display: flex;
  align-items: center;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: #bac5be;
}

.primary-menu li {
  margin: 0;
  padding: 0;
}

.primary-menu a {
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
  color: var(--green);
}

/* Let's Talk Button */

.primary-menu .menu-item-button a,
nav .nav-btn a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 11px 18px;
  border: 1px solid rgba(66, 228, 119, 0.55);
  border-radius: 7px;
  color: var(--green) !important;
}

.primary-menu .menu-item-button a::after,
nav .nav-btn a::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.primary-menu .menu-item-button a:hover,
nav .nav-btn a:hover {
  background: var(--green);
  color: var(--bg) !important;
  border-color: var(--green);
  transform: translateY(-2px);
}

.primary-menu .menu-item-button a:hover::after,
nav .nav-btn a:hover::after {
  transform: translateX(3px);
}

nav .nav-btn {
  list-style: none;
}

/* Mobile Menu Button */

.menu {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 25px;
  padding: 5px;
}


/* =========================================================
TYPOGRAPHY
========================================================= */

.kicker,
.eyebrow {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 2px;
  font-weight: 950;
  color: var(--green);
  margin-bottom: 18px;
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

h1 {
  font-size: clamp(54px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: -6px;
  margin-bottom: 25px;
}

h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

h3 {
  letter-spacing: -1px;
}

.outline {
  color: transparent !important;
  -webkit-text-stroke: 1px rgba(245, 247, 243, 0.55);
}

.green {
  color: var(--green);
}

.hero-copy,
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 800px;
  margin: 17px 0;
}

.light .lead {
  color: var(--muted-dark);
}


/* =========================================================
BUTTONS
========================================================= */

.actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 21px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background-color 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.primary,
.btn-primary {
  background: var(--green);
  color: #06120d;
}

.primary:hover,
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(66, 228, 119, 0.28);
}

.secondary,
.btn-secondary {
  border: 1px solid var(--line);
  background: transparent;
}

.secondary:hover,
.btn-secondary:hover {
  border-color: rgba(66, 228, 119, 0.55);
  transform: translateY(-4px);
  color: var(--green);
}


/* =========================================================
HERO
========================================================= */

.hero {
  padding: 125px 0 105px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -260px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 228, 119, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 94px);
  line-height: 0.93;
  letter-spacing: -5px;
  max-width: 1100px;
}

.hero h1 span {
  color: var(--green);
}

.hero-text {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-art {
  height: 510px;
  position: relative;
}

.hero-visual {
  min-height: 440px;
  position: relative;
}

.orb,
.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #a2ffc0, #42e477 12%, #0d6e3b 38%, #07120f 68%);
  box-shadow: 0 0 100px rgba(66, 228, 119, 0.18);
}

.orb {
  width: 400px;
  height: 400px;
  right: 5%;
  top: 8%;
  animation: acai-float 7s ease-in-out infinite;
}

.hero-circle {
  width: 340px;
  height: 340px;
  right: 35px;
  top: 40px;
}

.ring,
.hero-ring {
  position: absolute;
  border: 1px solid rgba(66, 228, 119, 0.32);
  border-radius: 50%;
}

.ring {
  right: -4%;
  top: 1%;
  width: 470px;
  height: 470px;
  animation: acai-spin 18s linear infinite;
}

.ring.r2 {
  width: 590px;
  height: 590px;
  right: -15%;
  top: -10%;
  border-color: rgba(255, 255, 255, 0.08);
  animation-duration: 30s;
  animation-direction: reverse;
}

.hero-ring {
  width: 420px;
  height: 420px;
  right: -5px;
  top: 0;
}

.hero-ring.two {
  width: 520px;
  height: 520px;
  right: -55px;
  top: -50px;
  border-color: rgba(255, 255, 255, 0.08);
}

.code-card {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 335px;
  background: rgba(10, 23, 19, 0.91);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.53);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  animation: acai-float-small 6s ease-in-out infinite;
}

.code-top {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3c5047;
}

.code {
  font: 12px/2 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #aebcb4;
}

.code .g {
  color: var(--green);
}

.code .b {
  color: #8cc8ff;
}

.code .p {
  color: #d5a9ff;
}


/* =========================================================
MARQUEE
========================================================= */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  color: #647169;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.track {
  display: inline-flex;
  gap: 50px;
  animation: acai-marquee 24s linear infinite;
}

.track span::after {
  content: "✦";
  margin-left: 50px;
  color: var(--green);
}


/* =========================================================
GENERAL GRIDS / CARDS
========================================================= */

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  margin-bottom: 65px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 32px;
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 228, 119, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.card h3 {
  font-size: 27px;
  margin: 22px 0 10px;
}

.card p {
  font-size: 13px;
  color: var(--muted);
}

.light .card {
  background: #fff;
  border-color: #dfe6e0;
}

.light .card p {
  color: var(--muted-dark);
}

.light .card:hover {
  border-color: #9de4b5;
  box-shadow: 0 25px 65px rgba(7, 26, 18, 0.12);
}

.num {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1px;
}

.pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 10px;
  color: #aeb9b2;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.pill:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
}


/* =========================================================
SERVICES
========================================================= */

.service-hero {
  padding: 110px 0 85px;
}

.service-hero h1 {
  max-width: 1050px;
}

.service-list {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 2fr 90px;
  gap: 25px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease), background-color 0.35s var(--ease);
}

.service-row:hover {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.015);
}

.service-row h3 {
  font-size: 25px;
  margin: 0;
}

.service-row p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.arrow {
  color: var(--green);
  font-size: 25px;
}


/* =========================================================
PROCESS
========================================================= */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 55px;
}

.step {
  padding: 30px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step b {
  color: var(--green);
  font-size: 12px;
}

.step h3 {
  font-size: 22px;
  margin: 18px 0 8px;
}

.step p {
  font-size: 12px;
  color: var(--muted);
}


/* =========================================================
SELECTED WORK / CASE STUDIES
========================================================= */

.work-preview {
  position: relative;
  overflow: hidden;
}

.work-preview .intro {
  margin-bottom: 56px;
}

/* 3 Column Desktop Layout */

.work-grid,
.work-grid-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.work-card {
  position: relative;
  min-width: 0;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #113a2a, #0a1713);
  border: 1px solid var(--line);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

/* Make every card one column */

.work-card-large,
.work-grid-three .work-card-large {
  grid-column: auto;
}

.work-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #071711;
}

.work-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(60, 255, 130, 0.14), transparent 40%),
    rgba(255, 255, 255, 0.025);
}

.work-image-placeholder span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.28);
}

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 20, 14, 0.76);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.work-image:hover .work-overlay,
.work-image:focus-within .work-overlay {
  opacity: 1;
  transform: translateY(0);
}

.work-content {
  padding: 30px;
}

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

.work-meta span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
}

.work-meta span:first-child {
  color: var(--green);
}

.work-content h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.15;
}

.work-content p {
  max-width: 600px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

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

.work-footer {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}


/* =========================================================
HOW IT WORKS — REDESIGNED PROCESS
========================================================= */

.how-it-works {
  position: relative;
  overflow: hidden;
}

/* Intro */

.how-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 65px;
}

.how-heading {
  max-width: 700px;
}

.how-heading .eyebrow {
  margin-bottom: 18px;
}

.how-heading h2 {
  margin: 0;
  max-width: 680px;
}

.how-lead {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  align-self: center;
}

/* Process Flow */

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

/* Process Card */

.process-card {
  position: relative;
  min-width: 0;
  min-height: 290px;
  padding: 28px 28px 30px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--line);
  border-right: 0;
  transition:
    transform 0.4s var(--ease),
    background-color 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.process-card:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 16px 16px 0;
}

.process-card:first-child {
  border-radius: 16px 0 0 16px;
}

.process-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  background: rgba(66, 228, 119, 0.035);
  border-color: rgba(66, 228, 119, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Top Row */

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
}

.process-number {
  color: var(--green);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(66, 228, 119, 0.22);
  border-radius: 50%;
  color: var(--green);
  font-size: 14px;
  line-height: 1;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.process-card:hover .process-arrow {
  transform: translateX(4px);
  background: var(--green);
  color: var(--bg);
}

/* SVG Icons */

.process-icon {
  width: 48px;
  height: 48px;
  margin: 48px 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(66, 228, 119, 0.28);
  border-radius: 10px;
  color: var(--green);
  background: rgba(66, 228, 119, 0.045);
  transition: transform 0.4s var(--ease), background-color 0.4s ease, border-color 0.4s ease;
}

.process-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.process-icon svg path,
.process-icon svg circle {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card:hover .process-icon {
  transform: translateY(-4px);
  background: rgba(66, 228, 119, 0.1);
  border-color: rgba(66, 228, 119, 0.55);
}

.process-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.process-card p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* Browser Mockup */

.browser {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 9%;
  bottom: 9%;
  background: #f8faf8;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.6s var(--ease);
}

.work-card:hover .browser {
  transform: translateY(-8px) scale(1.015);
}

.browser-bar {
  height: 28px;
  background: #e8eee9;
  display: flex;
  gap: 5px;
  padding: 9px;
}

.browser-bar i {
  width: 6px;
  height: 6px;
  background: #a5b0aa;
  border-radius: 50%;
}

.browser-body {
  padding: 24px;
}

.fake-title {
  height: 20px;
  width: 58%;
  background: #07120f;
  border-radius: 5px;
  margin-bottom: 15px;
}

.fake-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.fake-box {
  height: 110px;
  background: #dff4e6;
  border-radius: 8px;
}

.fake-wide {
  height: 75px;
  background: #e8ede9;
  border-radius: 8px;
  margin-top: 10px;
}

/* Case Study Content */

.work-info {
  padding: 30px 5px 10px;
}

.work-info .eyebrow {
  margin-bottom: 14px;
}

.work-info h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.work-info p.lead {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
}

.work-info .btn {
  margin-top: 0;
}


/* =========================================================
STATS
========================================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.stat {
  padding: 55px 20px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--green);
  margin-bottom: 10px;
}

.stat span {
  display: block;
  font-size: 10px;
  color: #87958d;
  font-weight: 900;
}


/* =========================================================
AGENCY MODEL
========================================================= */

.agency {
  background: #0b1b15;
  border-block: 1px solid var(--border);
}

.agency-grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 90px;
  align-items: center;
}

.agency h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -4px;
}

.agency h2 span {
  color: var(--green);
}

.agency p {
  color: #9aa9a1;
  font-size: 17px;
  margin: 17px 0;
}

.agency-points {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.agency-point {
  display: flex;
  gap: 12px;
  color: #b6c2ba;
  font-size: 16px;
}

.agency-point strong {
  color: var(--green);
}

.agency-visual {
  min-height: 370px;
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, rgba(66, 228, 119, 0.18), transparent 32%),
    #0d2119;
}

.agency-window {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 13%;
  bottom: 13%;
  background: #f7faf7;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.agency-window-title {
  width: 60%;
  height: 18px;
  background: #07120f;
  border-radius: 4px;
}

.agency-window-line {
  width: 90%;
  height: 8px;
  background: #dce4de;
  margin-top: 15px;
  border-radius: 4px;
}

.agency-window-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 25px;
}

.agency-window-grid div {
  height: 90px;
  background: #dff3e5;
  border-radius: 7px;
}

/* Agency Model Cards */

.agency-model-grid {
  margin-top: 50px;
}

.agency-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.agency-card .num {
  margin-bottom: 42px;
}

.agency-card h3 {
  margin-bottom: 12px;
}

.agency-card p {
  margin-bottom: 0;
}

.agency-model-grid .card .btn {
  display: none !important;
}

/* Agency Bottom CTA */

.section-action {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.section-action .btn {
  padding: 12px 18px;
  font-size: 11px;
}


/* =========================================================
TESTIMONIALS
========================================================= */

.testimonials-preview {
  position: relative;
  overflow: hidden;
}

.testimonials-preview .intro {
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  position: relative;
  padding: 34px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(60, 255, 130, 0.28);
  background: rgba(60, 255, 130, 0.025);
}

.testimonial-mark {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.7;
  margin-bottom: 30px;
}

.testimonial-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(60, 255, 130, 0.35);
  border-radius: 50%;
  color: var(--green);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.testimonial-author strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 12px;
}

.testimonial-author span {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}


/* =========================================================
ABOUT
========================================================= */

.section-dark {
  background: #0b1b15;
  border-block: 1px solid rgba(255, 255, 255, 0.11);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  margin-bottom: 65px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -4px;
}

.section-intro h2 span {
  color: var(--green);
}

.section-intro p {
  color: var(--muted);
  font-size: 17px;
  max-width: 700px;
}

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

.value-card {
  padding: 35px;
  min-height: 270px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  transition: 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 228, 119, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.value-number {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.value-card h3 {
  font-size: 28px;
  letter-spacing: -1px;
  margin: 22px 0 12px;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
}


/* =========================================================
STORY
========================================================= */

.story {
  background: #f2f5f1;
  color: #07120f;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.story h2 {
  margin: 0 0 45px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 70px;
  letter-spacing: -2px;
}

.story h2 span {
  color: #159348;
}

.story p {
  color: #68766e;
  font-size: 16px;
}

.story-card {
  position: relative;
  min-height: 430px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(66, 228, 119, 0.35), transparent 32%),
    linear-gradient(145deg, #153e2d, #07130e);
}

.story-card::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(66, 228, 119, 0.4);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.story-card::after {
  content: "20+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--green);
  font-size: 90px;
  font-weight: 950;
  letter-spacing: -7px;
}


/* =========================================================
CAPABILITIES
========================================================= */

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.capability {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: var(--panel);
  transition: 0.35s ease;
}

.capability:hover {
  border-color: rgba(66, 228, 119, 0.4);
  transform: translateY(-5px);
}

.capability-number {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.capability h3 {
  font-size: 23px;
  margin: 17px 0 9px;
}

.capability p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}


/* =========================================================
OTHER DARK SECTION
========================================================= */

.dark.your-client {
  background: #0a1713;
  border-block: 1px solid rgba(255, 255, 255, 0.11);
}


/* =========================================================
CTA
========================================================= */

.cta {
  min-height: 520px;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, #124f35, transparent 48%),
    #07120f;
  border-top: 1px solid var(--line);
}

.cta .container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.cta h2 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 45px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -4px;
}

.cta h2 span {
  color: var(--green);
}

.cta p {
  max-width: 620px;
  margin: 25px auto;
  color: #9eaba4;
}


/* =========================================================
FOOTER
========================================================= */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 55px 0 25px;
  color: #78867e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.footer-logo {
  display: inline-block;
  line-height: 0;
  margin-top: 0;
}

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

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-tagline {
  margin: 6px 0 15px;
  color: #718077;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 1.4px;
  font-weight: 800;
}

.site-footer h4 {
  color: var(--white);
  font-size: 11px;
  margin: 0 0 14px;
}

.site-footer a {
  display: block;
  font-size: 11px;
  margin: 8px 0;
  transition: color 0.25s, transform 0.25s;
}

.site-footer a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.site-footer p {
  font-size: 11px;
}

.copyright {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 17px;
  font-size: 9px;
}


/* =========================================================
PAGE CONTENT
========================================================= */

.page-content {
  padding: 100px 0;
}

.page-content-body {
  font-size: 16px;
  color: var(--muted);
  max-width: 850px;
}

.page-content-body a {
  text-decoration: underline;
  text-decoration-color: var(--green);
}


/* =========================================================
WORDPRESS ALIGNMENTS
========================================================= */

.alignleft {
  float: left;
  margin: 0 25px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 25px;
}

.aligncenter {
  display: block;
  margin-inline: auto;
}


/* =========================================================
ANIMATIONS
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@keyframes acai-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-17px) rotate(2deg);
  }
}

@keyframes acai-float-small {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes acai-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes acai-marquee {
  to {
    transform: translateX(-50%);
  }
}


/* =========================================================
TABLET MEDIA QUERIES (<= 900px)
========================================================= */

@media (max-width: 900px) {
  .primary-navigation {
    display: none;
  }

  .primary-navigation.is-open {
    display: block;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  .primary-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .menu {
    display: block;
  }

  .hero-grid,
  .intro,
  .story-grid,
  .agency-grid,
  .section-intro {
    grid-template-columns: 1fr;
  }

  .hero-art {
    height: 430px;
  }

  .grid3,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .service-row {
    grid-template-columns: 60px 1fr 40px;
  }

  .service-row p {
    grid-column: 2;
  }

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

  .stat {
    border-bottom: 1px solid var(--line);
  }

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

  /* Selected Work — Tablet */
  .work-grid,
  .work-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card-large {
    grid-column: auto;
  }

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

  .testimonial-card {
    min-height: auto;
  }

  /* How It Works — Tablet */
  .how-intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 45px;
  }

  .how-heading {
    max-width: 700px;
  }

  .how-lead {
    max-width: 650px;
  }

  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .process-card {
    min-height: 270px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 14px !important;
  }

  .process-card:hover {
    transform: translateY(-5px);
  }

  .process-arrow {
    display: none;
  }

  .process-icon {
    margin-top: 40px;
  }
  .home-process-section .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .home-process-section .process-card {
    min-height: 270px;
    padding: 26px;
    border: 1px solid var(--line, rgba(255, 255, 255, 0.11));
    border-radius: 14px !important;
  }

  .home-process-section .process-card:hover {
    transform: translateY(-5px);
  }

  .home-process-section .process-arrow {
    display: none;
  }

  .home-process-section .process-icon {
    margin-top: 40px;
  }
  .contact-grid {
        grid-template-columns: 1fr;grid-template-columns: 100%;
        gap: 10px!important;
    }

    .contact-details {
        grid-template-columns: 1fr 1fr;
        align-items: start;grid-template-columns: 100%;
    }

    .contact-process-card {
        grid-column: 1 / -1;
    }

    .testimonials-slider-wrap {
        gap: 12px;
    }

    .testimonial-slide {
        flex: 0 0 calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
        margin-right: 20px;
    }

    .testimonial-card {
        min-height: 370px;
        padding: 28px 25px;
    }

    .testimonial-mark {
        margin-bottom: 22px;
    }

    .testimonial-card blockquote {
        font-size: 13px;
        line-height: 1.7;
    }

    .service-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
    }

    .service-proof-item:nth-child(2) {
        border-right: 0;
    }

    .capability-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
MOBILE MEDIA QUERIES (<= 560px)
========================================================= */

@media (max-width: 560px) {
  .container {
    width: calc(100% - 30px);
  }

  h1 {
    font-size: 49px;
    letter-spacing: -3px;
  }

  h2 {
    letter-spacing: -2.5px;
  }

  .hero {
    padding: 85px 0;
  }

  .hero-art {
    height: 350px;
  }

  .orb {
    width: 270px;
    height: 270px;
  }

  .ring {
    width: 330px;
    height: 330px;
  }

  .ring.r2 {
    width: 410px;
    height: 410px;
  }

  .code-card {
    width: 270px;
  }

  .section {
    padding: 85px 0;
  }

  .grid2,
  .process,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 45px 1fr 25px;
  }

  .service-row p {
    grid-column: 2 / 4;
  }

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

  .stat {
    padding: 35px 15px;
  }

  .stat strong {
    font-size: 38px;
  }

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

  .cta {
    min-height: 430px;
    padding: 90px 20px;
  }

  .cta h2 {
    font-size: 48px;
    line-height: 1;
    letter-spacing: -2px;
  }

  .logo img {
    width: 68px;
  }

  .footer-logo img {
    width: 100px;
  }

  .work-info {
    padding: 24px 4px 8px;
  }

  .work-info .eyebrow {
    margin-bottom: 10px;
  }

  .work-info h2 {
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin-bottom: 12px;
  }

  .work-info p.lead {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  /* Agency Model Mobile */
  .agency-model-grid {
    margin-top: 34px;
  }

  .agency-card {
    min-height: auto;
    padding: 24px;
  }

  .agency-card .num {
    margin-bottom: 30px;
  }

  .section-action {
    margin-top: 36px;
    justify-content: center;
  }

  .section-action .btn {
    width: auto;
    justify-content: center;
    text-align: center;
  }

  /* Selected Work Mobile */
  .work-preview .intro,
  .testimonials-preview .intro {
    margin-bottom: 36px;
  }

  .work-grid,
  .work-grid-three {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .work-card-large {
    grid-column: auto;
  }

  .work-image {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .work-content {
    padding-top: 20px;
  }

  .work-content h3 {
    font-size: 20px;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    gap: 14px;
  }

  .testimonial-card {
    padding: 26px;
    border-radius: 10px;
  }

  .testimonial-mark {
    font-size: 54px;
    margin-bottom: 24px;
  }

  .testimonial-card blockquote {
    font-size: 14px;
    line-height: 1.7;
  }

  /* How It Works Mobile */
  .how-intro {
    gap: 20px;
    margin-bottom: 35px;
  }

  .how-heading h2 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .how-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-card {
    min-height: auto;
    padding: 24px;
    border-radius: 12px !important;
  }

  .process-card:hover {
    transform: translateY(-3px);
  }

  .process-top {
    min-height: 24px;
  }

  .process-number {
    font-size: 10px;
  }

  .process-icon {
    width: 42px;
    height: 42px;
    margin: 32px 0 22px;
    font-size: 18px;
  }

  .process-icon svg {
    width: 19px;
    height: 19px;
  }

  .process-card h3 {
    font-size: 19px;
    margin-bottom: 9px;
  }

  .process-card p {
    font-size: 12px;
    line-height: 1.65;
    max-width: 100%;
  }
}


/* =========================================================
REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .process-card,
  .process-icon,
  .process-arrow {
    transition: none !important;
  }
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    padding-bottom: 80px;
}

.contact-section {
    padding-top: 60px;
}


/* =========================================================
   CONTACT GRID
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
    gap: 70px;
    align-items: start;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrap {
    min-width: 0;
}

.contact-form-wrap h2 {
    max-width: 650px;
    margin: 0 0 18px;
}

.contact-form-intro {
    max-width: 650px;
    margin: 0 0 35px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   FLUENT FORM WRAPPER
========================================================= */

.acai-contact-form {
    width: 100%;
    padding: 32px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--line);
    border-radius: 16px;
}


/* =========================================================
   FLUENT FORM
========================================================= */

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


/* =========================================================
   LABELS
========================================================= */

.acai-contact-form .ff-el-input--label label {
    color: var(--white) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .04em;
    margin-bottom: 8px !important;
}


/* =========================================================
   INPUTS
========================================================= */

.acai-contact-form input,
.acai-contact-form textarea,
.acai-contact-form select {
    width: 100% !important;

    background: #0a1713 !important;
    color: var(--white) !important;

    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 8px !important;

    padding: 13px 14px !important;

    font-size: 13px !important;

    outline: none !important;
    box-shadow: none !important;

    transition:
        border-color .25s ease,
        background-color .25s ease;
}


/* =========================================================
   INPUT FOCUS
========================================================= */

.acai-contact-form input:focus,
.acai-contact-form textarea:focus,
.acai-contact-form select:focus {
    border-color: rgba(66, 228, 119, .65) !important;
    background: #0c1b16 !important;
}


/* =========================================================
   TEXTAREA
========================================================= */

.acai-contact-form textarea {
    min-height: 150px !important;
    resize: vertical;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.acai-contact-form input::placeholder,
.acai-contact-form textarea::placeholder {
    color: #68766e !important;
}


/* =========================================================
   FLUENT FORM — TWO COLUMNS
========================================================= */

.acai-contact-form #fluentform_3 {
    width: 100%;
}


/* First Name */

.acai-contact-form .ff-name-field-wrapper {
    width: calc(50% - 9px);
    display: inline-block;
    vertical-align: top;
    margin-right: 14px;
}


/* Email */

.acai-contact-form .ff-name-field-wrapper + .ff-el-group {
    width: calc(50% - 9px);
    display: inline-block;
    vertical-align: top;
}


/* Company */

.acai-contact-form
.ff-name-field-wrapper
~ .ff-el-group:nth-of-type(3) {
    width: calc(50% - 9px);
    display: inline-block;
    vertical-align: top;
    margin-right: 14px;
}


/* Website */

.acai-contact-form
.ff-name-field-wrapper
~ .ff-el-group:nth-of-type(4) {
    width: calc(50% - 9px);
    display: inline-block;
    vertical-align: top;
}


/* Service full width */

.acai-contact-form #ff_3_dropdown {
    width: 100% !important;
}


/* Project description full width */

.acai-contact-form #ff_3_description {
    width: 100% !important;
    display: block;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.acai-contact-form .ff-btn-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    min-height: 48px !important;
    padding: 14px 22px !important;

    border: 1px solid var(--green) !important;
    border-radius: 7px !important;

    background: var(--green) !important;
    color: #06120d !important;

    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1 !important;

    box-shadow: none !important;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background-color .3s ease !important;
}


/* Submit hover */

.acai-contact-form .ff-btn-submit:hover {
    background: #55ed87 !important;
    color: #06120d !important;

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(66, 228, 119, .20) !important;
}


/* =========================================================
   VALIDATION
========================================================= */

.acai-contact-form .error {
    color: #ff8f8f !important;
    font-size: 11px !important;
}

.acai-contact-form .ff-message-success {
    margin: 0 !important;
    padding: 18px !important;

    border: 1px solid rgba(66, 228, 119, .3) !important;
    border-radius: 8px !important;

    background: rgba(66, 228, 119, .06) !important;
    color: var(--green) !important;
}


/* =========================================================
   RIGHT SIDEBAR
========================================================= */

.contact-details {
    display: grid;
    gap: 18px;
}


/* =========================================================
   GET IN TOUCH CARD
========================================================= */

.contact-detail-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
}

.contact-detail-card .eyebrow {
    margin-bottom: 18px;
}

.contact-detail-card h3 {
    margin: 0 0 14px;

    color: var(--white);

    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -.6px;
}

.contact-detail-card > p {
    margin: 0 0 28px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;

    max-width: 330px;
}


/* =========================================================
   DIRECT CONTACT ITEMS
========================================================= */

.contact-direct-item {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.contact-direct-item:last-child {
    padding-bottom: 0;
}

.contact-direct-label {
    display: block;

    margin-bottom: 10px;

    color: #68766e;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.contact-direct-value {
    display: inline-block;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.contact-direct-value:hover {
    color: #55ed87;
}


/* =========================================================
   HOW IT WORKS CARD
========================================================= */

.contact-process-card {
    padding: 8px 30px;

    border: 1px solid var(--line);
    border-radius: 16px;

    background: var(--panel);
}


/* =========================================================
   PROCESS STEP
========================================================= */

.contact-process-step {
    display: grid;

    grid-template-columns: 30px minmax(0, 1fr);

    gap: 17px;

    padding: 21px 0;
}

.contact-process-step + .contact-process-step {
    border-top: 1px solid var(--line);
}


/* =========================================================
   PROCESS NUMBER
========================================================= */

.contact-process-number {
    padding-top: 2px;

    color: var(--green);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   PROCESS CONTENT
========================================================= */

.contact-process-content h4 {
    margin: 0 0 7px;

    color: var(--white);

    font-size: 12px;
    font-weight: 800;

    line-height: 1.35;
}

.contact-process-content p {
    margin: 0;

    color: #7f8d85;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-preview {
    overflow: hidden;
}

.testimonials-slider-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 45px;
}

.testimonials-slider-viewport {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    transition: transform .6s ease-in-out;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3);
    min-width: 0;
    margin: 0 20px 0 0;
    padding: 0;
    box-sizing: border-box;
}

.testimonial-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 390px;
    box-sizing: border-box;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition:
        border-color .3s ease,
        background-color .3s ease,
        transform .3s ease;
}

.testimonial-card:hover {
    border-color: rgba(66, 228, 119, .28);
    background: rgba(255, 255, 255, .035);
    transform: translateY(-3px);
}

.testimonial-mark {
    margin: 0 0 24px;
    color: var(--green);
    font-size: 46px;
    font-weight: 900;
    line-height: .8;
}

.testimonial-card blockquote {
    margin: 0;
    flex: 1;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(66, 228, 119, .45);
    border-radius: 50%;
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.testimonial-author span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.testimonial-nav {
    position: relative;
    z-index: 10;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--panel);
    color: var(--white);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.testimonial-nav:hover {
    background: var(--green);
    border-color: var(--green);
    color: #06120d;
    transform: translateY(-2px);
}

.testimonial-nav:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 28px;
    min-height: 24px;
}

.testimonial-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    cursor: pointer;
    transition:
        width .25s ease,
        background-color .25s ease,
        transform .25s ease;
}

.testimonial-dot:hover {
    background: rgba(255, 255, 255, .5);
}

.testimonial-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--green);
}


/* =========================================================
   PROOF STRIP
========================================================= */

.service-proof-strip {
    padding: 38px 0;
    background: #071410;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-proof-item {
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.service-proof-item:first-child {
    padding-left: 0;
}

.service-proof-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.service-proof-item strong {
    display: block;
    margin-bottom: 7px;
    color: #43e77b;
    font-size: 17px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.service-proof-item span {
    display: block;
    max-width: 210px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   STANDARDIZED SERVICE COMPONENTS
   (Shared across WordPress & WooCommerce templates)
========================================================= */

.service-page {
    overflow: hidden;
}

/* --- What We Build (Capabilities) --- */
.site-capabilities {
    padding-top: 115px;
    padding-bottom: 115px;
}

.capability-list {
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.capability-item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 25px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition: padding-left 0.25s ease;
}

.capability-item:hover {
    padding-left: 10px;
}

.capability-number {
    color: #43e77b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.capability-content {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr);
    gap: 50px;
    align-items: start;
}

.capability-content h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.capability-content p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    line-height: 1.7;
}

.service-section-cta {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}


/* --- How We Work (Process) --- */
.site-process {
    padding-top: 110px;
    padding-bottom: 110px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 65px;
}

.process-card {
    padding: 32px;
    min-height: 245px;
    background: #fff;
    border: 1px solid rgba(7, 20, 16, 0.08);
    border-radius: 10px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 20, 16, 0.16);
}

.process-number {
    display: block;
    margin-bottom: 45px;
    color: #20bd59;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.process-card h3 {
    margin: 0 0 12px;
    color: #071410;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.process-card p {
    margin: 0;
    color: rgba(7, 20, 16, 0.58);
    font-size: 13px;
    line-height: 1.65;
}


/* --- Ideal For & Why Choose Grids --- */
.site-grid-section {
    padding-top: 90px;
    padding-bottom: 115px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 65px;
}

.grid-card {
    padding: 32px;
    min-height: 205px;
    background: #fff;
    border: 1px solid rgba(7, 20, 16, 0.08);
    border-radius: 10px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.grid-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 20, 16, 0.16);
}

.grid-card-number {
    display: block;
    margin-bottom: 35px;
    color: #20bd59;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.grid-card h3 {
    margin: 0 0 10px;
    color: #071410;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.grid-card p {
    max-width: 500px;
    margin: 0;
    color: rgba(7, 20, 16, 0.58);
    font-size: 13px;
    line-height: 1.65;
}


/* --- Agency --- */
.site-agency {
    padding-top: 115px;
    padding-bottom: 115px;
}

.agency-list {
    margin-top: 65px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.agency-row {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.agency-number {
    color: #43e77b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.agency-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.agency-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    line-height: 1.7;
}


/* --- FAQ --- */
.site-faq {
    padding-top: 95px;
    padding-bottom: 115px;
}

.faq-list {
    margin: 62px auto 0;
    border-top: 1px solid rgba(7, 20, 16, 0.12);
}

.faq-item {
    border-bottom: 1px solid rgba(7, 20, 16, 0.12);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 0;
    color: #071410;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    color: #20bd59;
    font-size: 23px;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 50px 26px 0;
}

.faq-answer p {
    max-width: 100%;
    margin: 0;
    color: rgba(7, 20, 16, 0.6);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
HOME PROCESS SECTION
========================================================= */

.home-process-section {
  padding: 80px 0;
  width: 100%;
}

/* Process Flow Container */

.home-process-section .process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
  width: 100%;
}

/* Process Card */

.home-process-section .process-card {
  position: relative;
  min-width: 0;
  min-height: 290px;
  padding: 28px 28px 30px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--line, rgba(255, 255, 255, 0.11));
  border-right: 0;
  transition:
    transform 0.4s var(--ease, cubic-bezier(0.2, 0.75, 0.25, 1)),
    background-color 0.4s var(--ease, cubic-bezier(0.2, 0.75, 0.25, 1)),
    border-color 0.4s var(--ease, cubic-bezier(0.2, 0.75, 0.25, 1)),
    box-shadow 0.4s var(--ease, cubic-bezier(0.2, 0.75, 0.25, 1));
}

.home-process-section .process-card:first-child {
  border-radius: 16px 0 0 16px;
}

.home-process-section .process-card:last-child {
  border-right: 1px solid var(--line, rgba(255, 255, 255, 0.11));
  border-radius: 0 16px 16px 0;
}

.home-process-section .process-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  background: rgba(66, 228, 119, 0.035);
  border-color: rgba(66, 228, 119, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Top Row */

.home-process-section .process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
}

.home-process-section .process-number {
  color: var(--green, #42e477);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.home-process-section .process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(66, 228, 119, 0.22);
  border-radius: 50%;
  color: var(--green, #42e477);
  font-size: 14px;
  line-height: 1;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.home-process-section .process-card:hover .process-arrow {
  transform: translateX(4px);
  background: var(--green, #42e477);
  color: var(--bg, #07120f);
}

/* SVG Icons */

.home-process-section .process-icon {
  width: 48px;
  height: 48px;
  margin: 48px 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(66, 228, 119, 0.28);
  border-radius: 10px;
  color: var(--green, #42e477);
  background: rgba(66, 228, 119, 0.045);
  transition: transform 0.4s var(--ease, cubic-bezier(0.2, 0.75, 0.25, 1)), background-color 0.4s ease, border-color 0.4s ease;
}

.home-process-section .process-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.home-process-section .process-icon svg path,
.home-process-section .process-icon svg circle {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-process-section .process-card:hover .process-icon {
  transform: translateY(-4px);
  background: rgba(66, 228, 119, 0.1);
  border-color: rgba(66, 228, 119, 0.55);
}

/* Card Content */

.home-process-section .process-card h3 {
  margin: 0 0 12px;
  color: var(--white, #f5f7f3);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.home-process-section .process-card p {
  max-width: 260px;
  margin: 0;
  color: var(--muted, #a6b2aa);
  font-size: 12px;
  line-height: 1.7;
}
/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */



@media (max-width: 700px) {

    .contact-grid {
        gap: 35px;grid-template-columns: 100%;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-process-card {
        grid-column: auto;
    }
}

@media (max-width: 650px) {

    .acai-contact-form {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .acai-contact-form .ff-name-field-wrapper,
    .acai-contact-form .ff-name-field-wrapper + .ff-el-group,
    .acai-contact-form .ff-name-field-wrapper ~ .ff-el-group:nth-of-type(3),
    .acai-contact-form .ff-name-field-wrapper ~ .ff-el-group:nth-of-type(4) {
        display: block;
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 640px) {

    .service-proof-strip {
        padding: 30px 0;
    }

    .service-proof-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
    }

    .service-proof-item {
        padding: 0 10px;
        border-right: 0;
    }

    .service-proof-item:first-child,
    .service-proof-item:nth-child(3) {
        padding-left: 0;
    }

    .service-proof-item strong {
        font-size: 14px;
    }

    .service-proof-item span {
        font-size: 11px;
    }

    .site-capabilities,
    .site-process,
    .site-grid-section,
    .site-agency,
    .site-faq {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .capability-list,
    .process-grid,
    .card-grid,
    .faq-list {
        margin-top: 42px;
    }

    .capability-item {
        grid-template-columns: 40px 1fr;
        gap: 15px;
        padding: 26px 0;
    }

    .capability-content h3 {
        font-size: 20px;
    }

    .capability-content p {
        font-size: 13px;
    }

    .process-card,
    .grid-card {
        min-height: auto;
        padding: 26px;
    }

    .process-number,
    .grid-card-number {
        margin-bottom: 28px;
    }

    .agency-row {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .agency-content h3 {
        font-size: 19px;
    }

    .faq-item summary {
        font-size: 15px;
    }
}

@media (max-width: 600px) {

    .testimonials-slider-wrap {
        gap: 10px;
    }

    .testimonials-slider-viewport {
        width: 100%;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        margin-right: 0;
    }

    .testimonial-card {
        min-height: 360px;
        padding: 26px 22px;
        border-radius: 13px;
    }

    .testimonial-mark {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .testimonial-card blockquote {
        font-size: 13px;
        line-height: 1.7;
    }

    .testimonial-author {
        margin-top: 22px;
        padding-top: 18px;
    }

    .testimonial-nav {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        font-size: 16px;
    }
}

@media (max-width: 560px) {

    .contact-hero {
        padding-bottom: 55px;
    }

    .contact-section {
        padding-top: 40px;
    }

    .contact-detail-card {
        padding: 24px;
        border-radius: 13px;
    }

    .contact-detail-card h3 {
        font-size: 23px;
    }

    .contact-process-card {
        padding: 5px 22px;
        border-radius: 13px;
    }

    .contact-process-step {
        padding: 19px 0;
    }
    .home-process-section {
    padding: 50px 0;
  }

  .home-process-section .process-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

 .home-process-section  .process-card {
    min-height: auto;
    padding: 24px;
    border-radius: 12px !important;
  }

  .home-process-section .process-card:hover {
    transform: translateY(-3px);
  }

  .home-process-section .process-top {
    min-height: 24px;
  }

  .home-process-section .process-number {
    font-size: 10px;
  }

  .home-process-section .process-icon {
    width: 42px;
    height: 42px;
    margin: 32px 0 22px;
  }

  .home-process-section .process-icon svg {
    width: 19px;
    height: 19px;
  }

  .home-process-section .process-card h3 {
    font-size: 19px;
    margin-bottom: 9px;
  }

 .home-process-section .process-card p {
    font-size: 12px;
    line-height: 1.65;
    max-width: 100%;
  }
}

@media (max-width: 420px) {

    .testimonials-slider-wrap {
        gap: 6px;
    }

    .testimonial-card {
        min-height: 350px;
        padding: 24px 19px;
    }

    .testimonial-nav {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        font-size: 14px;
    }

    .testimonial-author {
        gap: 10px;
    }

    .testimonial-avatar {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}


/* =========================================================
   ACCESSIBILITY — REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .testimonials-slider {
        transition: none;
    }

    .testimonial-card,
    .testimonial-nav,
    .testimonial-dot,
    .process-card,
    .grid-card,
    .capability-item {
        transition: none;
    }
}






