/* ============================================
   Saifans ? TrueCraft-inspired Agency System
   Fonts: Plus Jakarta Sans (display) + Inter (body)
   ============================================ */

:root {
  --primary: #84BD00;
  --primary-dark: #1B5E20;
  --primary-soft: #EAF6D4;
  --bg: #FFFFFF;
  --bg-soft: #F6F7F4;
  --bg-dark: #0C0C0C;
  --text: #1A1A1A;
  --muted: #6B7280;
  --border: #E6E8E3;
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1240px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --ease: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--primary);
}

.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(132, 189, 0, 0.28);
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}
.btn-dark:hover { background: #000; }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--text);
}

.btn-white {
  background: #fff;
  color: var(--text);
}

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  transition: font-size var(--ease), opacity var(--ease);
}

.logo:hover .logo-text { opacity: 0.75; }

.site-header.scrolled .header-inner { height: 76px; }
.site-header.scrolled .logo-text { font-size: 2.3rem; }

.nav-main {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-main a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  transition: color var(--ease), background var(--ease);
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--text);
  background: var(--bg-soft);
}

.header-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 88px 0 0;
  background: #fff;
  padding: 24px;
  z-index: 99;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}

.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-display);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 20px; width: 100%; }

/* ---- Hero (TrueCraft style) ---- */
.hero {
  padding: clamp(24px, 3vw, 40px) 0 clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.6; }
}

.hero h1 {
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 12ch;
}

.hero h1 .accent { color: var(--primary); }

.hero-sub {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-side {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-side-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-mini-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px 22px 20px;
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.06);
  position: relative;
  overflow: hidden;
}

.hero-mini-form::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(132,189,0,0.18), transparent 70%);
  pointer-events: none;
}

.hero-mini-form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.hero-mini-emoji {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-mini-form-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-mini-form-head p {
  font-size: 12px;
  color: var(--muted);
  margin: 2px 0 0;
}

.hero-mini-fields {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero-mini-fields input,
.hero-mini-fields textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.hero-mini-fields input:focus,
.hero-mini-fields textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(132, 189, 0, 0.12);
}

.hero-mini-fields textarea {
  resize: none;
  min-height: 84px;
}

.hero-mini-submit {
  width: 100%;
  margin-top: 12px;
  border-radius: 14px;
  position: relative;
  z-index: 1;
}

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

.hero-side::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(132,189,0,0.25), transparent 70%);
  pointer-events: none;
}

.hero-side-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-stat span {
  font-size: 13px;
  color: var(--muted);
}

/* ---- Marquee ---- */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: #fff;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-item i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

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

/* ---- Sections ---- */
.section {
  padding: clamp(56px, 7vw, 88px) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.hero,
.page-hero,
.site-footer,
.site-header {
  content-visibility: visible;
}

.section-soft { background: var(--bg-soft); }
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }
.section-dark .lead,
.section-dark .eyebrow { color: rgba(255,255,255,0.55); }
.section-dark .eyebrow::before { background: var(--primary); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  max-width: 16ch;
}

.section-head.center h2 { max-width: 20ch; }
.section-head.center .lead { margin: 0 auto; }

/* ---- About split ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

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

/* ---- Work grid ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.work-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  min-height: 320px;
  display: block;
  isolation: isolate;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
  opacity: 0.85;
}

.work-card:hover img { transform: scale(1.06); opacity: 1; }

.work-card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  z-index: 1;
}

.work-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.tag.green {
  background: var(--primary);
  color: #fff;
}

.work-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 6px;
}

.work-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.work-num {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---- Expertise list ---- */
.expertise-list { border-top: 1px solid var(--border); }

.expertise-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding var(--ease);
}

.expertise-item:hover { padding-left: 8px; }

.expertise-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.expertise-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.expertise-item p {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
}

.expertise-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.expertise-item:hover .expertise-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Expertise modern grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.expertise-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  min-height: 230px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #b6e05a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(132, 189, 0, 0.35);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.expertise-card:hover::before { transform: scaleX(1); }

.expertise-card .exp-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.expertise-card:hover .exp-icon {
  transform: scale(1.06);
  background: var(--primary);
  color: #fff;
}

.expertise-card .exp-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expertise-card .exp-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.expertise-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.expertise-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.expertise-card .exp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary-dark);
  transition: gap 0.3s ease, color 0.3s ease;
}
.expertise-card .exp-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.expertise-card:hover .exp-link {
  gap: 12px;
  color: var(--primary);
}
.expertise-card:hover .exp-link::after {
  transform: rotate(45deg) translate(2px, -2px);
}

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

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.testimonial blockquote {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--text);
}

.testimonial cite {
  font-style: normal;
  display: block;
}

.testimonial cite strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.testimonial cite span {
  font-size: 13px;
  color: var(--muted);
}

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(132,189,0,0.12);
  transform: translateY(-8px);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.price-card .desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 48px;
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.price-card .amount span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.price-card .note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.price-card ul {
  flex: 1;
  margin-bottom: 28px;
}

.price-card li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 1.5px;
  background: var(--primary);
}

/* ---- Process ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  min-height: 260px;
}

.process-card .step {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.process-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

/* ---- FAQ (dense card grid + aside) ---- */
.faq-shell {
  display: grid;
  grid-template-columns: 1.7fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: stretch;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.faq-item:hover {
  border-color: rgba(132,189,0,0.45);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(132,189,0,0.12);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 18px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
}

.faq-q-label {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.faq-q-text { min-width: 0; }

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background var(--ease), color var(--ease), border-color var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer p {
  padding: 0 18px 18px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-aside-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  background: var(--bg-soft);
}

.faq-aside-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-aside:hover .faq-aside-media img {
  transform: scale(1.04);
}

.faq-aside h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.faq-aside p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: -6px;
}

/* ---- Sticky WhatsApp ---- */
.wa-float {
  position: fixed;
  right: 22px;
  left: auto;
  bottom: 22px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(132,189,0,0.4);
  transition: box-shadow 0.25s ease;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.wa-float::before,
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(132,189,0,0.55);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

.wa-float::after {
  animation-delay: 1.1s;
}

.wa-float:hover {
  box-shadow: 0 14px 34px rgba(132,189,0,0.5);
}

.wa-float.is-live {
  animation: wa-vibrate 2.8s ease-in-out infinite;
}

.wa-float:hover.is-live {
  animation: none;
  transform: scale(1.08);
}

@keyframes wa-vibrate {
  0%, 82%, 100% { transform: translate(0, 0) rotate(0); }
  84% { transform: translate(-1.5px, 1px) rotate(-4deg); }
  86% { transform: translate(1.5px, -1px) rotate(4deg); }
  88% { transform: translate(-1.5px, 1px) rotate(-3deg); }
  90% { transform: translate(1.5px, -1px) rotate(3deg); }
  92% { transform: translate(-1px, 0.5px) rotate(-2deg); }
  94% { transform: translate(1px, -0.5px) rotate(2deg); }
  96% { transform: translate(0, 0) rotate(0); }
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ---- Case performance cards ---- */
.case-perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-perf {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
}

.case-perf .case-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}

.case-perf h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.case-perf .metric {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.case-perf p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.case-perf a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.case-perf a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

/* ---- Contact band ---- */
.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-list strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  outline: none;
  transition: border-color var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

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

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

/* ---- Footer (premium dark) ---- */
.site-footer {
  background: #0b0c10;
  color: rgba(255,255,255,0.55);
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "S";
  position: absolute;
  right: -2%;
  top: 4%;
  font-family: var(--font-display);
  font-size: clamp(180px, 28vw, 360px);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}

.footer-cols {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-brand .footer-logo .logo-text {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.footer-brand .footer-logo:hover .logo-text {
  opacity: 0.85;
}

.footer-brand p {
  font-size: 14px;
  max-width: 300px;
  line-height: 1.65;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.55);
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  transition: border-color var(--ease), transform var(--ease);
}

.footer-cta-link:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-cta-link .arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}
.footer-cta-link .arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: 2px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer-col h4 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 5px 0;
  min-height: 32px;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease), transform var(--ease);
}

.footer-col a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 2px;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact a::before { display: none; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  min-height: 32px;
  padding: 5px 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color var(--ease);
}

.footer-contact-item:hover { color: #fff; }

.footer-contact > .footer-contact-item:last-child {
  margin-top: auto;
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}

.footer-bottom a { color: var(--primary); }
.footer-bottom a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.75);
  transition: border-color var(--ease), color var(--ease), background var(--ease), transform var(--ease);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(132,189,0,0.08);
  transform: translateY(-2px);
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
}

.footer-tagline::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.footer-tagline em {
  font-style: normal;
  color: var(--primary);
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  position: relative;
  min-height: clamp(280px, 42vw, 420px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  border-bottom: none;
  overflow: hidden;
  background: #0b0c10;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media img,
.page-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,12,16,0.35) 0%, rgba(11,12,16,0.88) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(100px, 14vw, 160px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.page-hero .eyebrow { color: rgba(255,255,255,0.7); }
.page-hero .eyebrow::before { background: var(--primary); }

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  max-width: 18ch;
  margin-bottom: 16px;
  color: #fff;
}

.page-hero .lead {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
}

/* ---- Reveal ---- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-in.visible { opacity: 1; transform: none; }

.hero-reveal > * {
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn 0.55s var(--ease) forwards;
}
.hero-reveal > *:nth-child(1) { animation-delay: 0.05s; }
.hero-reveal > *:nth-child(2) { animation-delay: 0.15s; }
.hero-reveal > *:nth-child(3) { animation-delay: 0.25s; }
.hero-reveal > *:nth-child(4) { animation-delay: 0.35s; }

@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .fade-in, .hero-reveal > * { opacity: 1; transform: none; }
  .marquee { animation: none; }
  .wa-float, .wa-float.is-live { animation: none !important; }
  .wa-float::before, .wa-float::after { animation: none !important; display: none; }
  .team-avatar { animation: none !important; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .about-grid.has-media,
  .faq-shell,
  .contact-band { grid-template-columns: 1fr; }
  .faq-aside { position: static; max-width: 420px; }
  .contact-visual-strip { grid-template-columns: 1fr 1fr; }
  .pricing-grid,
  .process-grid,
  .case-perf-grid,
  .testimonial-grid,
  .work-grid,
  .work-grid-3,
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: start; }
}

@media (max-width: 768px) {
  .nav-main, .header-cta .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  .work-grid,
  .work-grid-3,
  .pricing-grid,
  .process-grid,
  .case-perf-grid,
  .testimonial-grid,
  .about-stats,
  .hero-stat-row,
  .form-row,
  .footer-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-visual-strip { grid-template-columns: 1fr; }
  .wa-float { right: 16px; left: auto; bottom: 16px; width: 52px; height: 52px; }
  .expertise-item { grid-template-columns: 48px 1fr; }
  .expertise-arrow { display: none; }
  .expertise-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-contact > .footer-contact-item:last-child { margin-top: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-tagline { justify-content: center; }
  .footer-social { justify-content: center; }
  .logo-text { font-size: 2.5rem; }
  .site-header.scrolled .logo-text { font-size: 2.3rem; }
  .header-inner { height: 76px; }
}

/* ---- Inner page compatibility ---- */
.text-muted { color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-of-type { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--bg-soft);
}
.service-visual img { width: 100%; height: 100%; object-fit: cover; }

.deliverables li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}
.deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 1.5px;
  background: var(--primary);
}

.stack-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-tags span {
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
}

.cta-banner {
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(132,189,0,0.22), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(132,189,0,0.12), transparent 45%),
    linear-gradient(145deg, #111 0%, #0b0c10 55%, #141814 100%);
  color: #fff;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; font-size: clamp(1.5rem, 3vw, 2.25rem); }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { justify-content: center; }

.btn-arrow::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 2px;
  transition: transform var(--ease);
}
.btn-arrow:hover::after {
  transform: rotate(45deg) translate(2px, -2px);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-icon svg.icon-fill {
  fill: currentColor;
  stroke: none;
}
.btn-white.btn-icon svg.icon-fill { fill: currentColor; }

.values-grid, .engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card, .engagement-card, .card, .pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.value-card:hover, .engagement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(132,189,0,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.05);
}
.value-card h3, .engagement-card h3, .card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.value-card p, .engagement-card p, .card p { font-size: 14px; color: var(--muted); }

.value-icon, .engage-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.value-icon svg, .engage-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-member { text-align: center; }
.team-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary-soft), #d4e8a8);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-dark);
  border: 3px solid #fff;
  box-shadow: 0 10px 28px rgba(132,189,0,0.18);
  animation: floatSoft 4.5s ease-in-out infinite;
}
.team-member:nth-child(2) .team-avatar { animation-delay: 0.4s; }
.team-member:nth-child(3) .team-avatar { animation-delay: 0.8s; }
.team-member:nth-child(4) .team-avatar { animation-delay: 1.2s; }
.team-member h4 { font-size: 14px; margin-bottom: 4px; }
.team-member span { font-size: 13px; color: var(--muted); }

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.split-visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.split-visual:hover img { transform: scale(1.04); }
.split-visual-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(12,12,12,0.82);
  color: #fff;
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
}
.split-visual-badge em {
  display: block;
  font-style: normal;
  color: var(--primary);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.about-visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 100%;
}
.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.about-grid.has-media {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.about-stats-overlay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: absolute;
  inset: auto 16px 16px 16px;
}
.about-stats-overlay .stat-card {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.6);
}
.about-stats-overlay .stat-card strong {
  display: block;
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-bottom: 2px;
}
.about-stats-overlay .stat-card span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.testimonial {
  position: relative;
}
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-soft);
  flex-shrink: 0;
}
.testimonial-quote-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.2;
  pointer-events: none;
}

.comm-panel {
  display: grid;
  gap: 16px;
}
.comm-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color var(--ease), transform var(--ease);
}
.comm-card:hover {
  border-color: rgba(132,189,0,0.45);
  transform: translateX(4px);
}
.comm-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.comm-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.comm-card h4 { font-size: 15px; margin-bottom: 4px; }
.comm-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

.contact-visual-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}
.contact-visual-strip .media-tile {
  border-radius: 16px;
  overflow: hidden;
  min-height: 160px;
  position: relative;
}
.contact-visual-strip .media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 160px;
  transition: transform 0.5s ease;
}
.contact-visual-strip .media-tile:hover img { transform: scale(1.05); }
.contact-visual-strip .media-tile:first-child { min-height: 200px; grid-row: span 1; }

.section-soft {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(132,189,0,0.06), transparent 55%),
    var(--bg-soft);
}
.section-alt {
  background:
    radial-gradient(ellipse 45% 35% at 0% 100%, rgba(132,189,0,0.05), transparent 50%),
    var(--bg-soft);
}

.tools-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tools-row span {
  padding: 8px 14px; font-size: 13px; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: 999px; color: var(--muted);
}

.process-detail { max-width: 760px; }
.process-detail-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.process-detail-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--primary); opacity: 0.4; line-height: 1;
}
.process-detail-item h3 { margin-bottom: 8px; }
.process-detail-item p { font-size: 15px; color: var(--muted); margin-bottom: 10px; }
.process-detail-item ul li {
  font-size: 14px; color: var(--muted); padding-left: 14px; position: relative; margin-bottom: 4px;
}
.process-detail-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 1.5px;
}

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.contact-sidebar {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
}
.contact-item { display: flex; gap: 12px; margin-bottom: 18px; }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 10px; background: #fff;
  border: 1px solid var(--border); display: grid; place-items: center; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 13px; margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 14px; color: var(--muted); }
.trust-note {
  margin-top: 16px; padding: 14px; background: var(--primary-soft);
  border-radius: 12px; font-size: 13px; color: var(--muted);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}
.form-alert-success {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border: 1px solid rgba(132,189,0,0.35);
}
.form-alert-error {
  background: #fde8e8;
  color: #9b1c1c;
  border: 1px solid #f5c2c2;
}

.map-embed { margin-top: 48px; }
.map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21 / 9;
  background: var(--bg-soft);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 280px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.insight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color var(--ease), transform var(--ease);
}
.insight-card:hover {
  border-color: rgba(132,189,0,0.45);
  transform: translateY(-3px);
}
.insight-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.insight-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.insight-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.insight-card a { font-weight: 700; font-size: 14px; color: var(--primary-dark); }

.article-wrap { max-width: 760px; margin: 0 auto; }
.article-wrap h1 { margin-bottom: 16px; }
.article-meta { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.article-wrap h2 { font-size: 1.35rem; margin: 32px 0 12px; }
.article-wrap p, .article-wrap li { color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.article-wrap ul { margin: 0 0 20px; padding-left: 0; list-style: none; }
.article-wrap ul li { position: relative; padding-left: 18px; }
.article-wrap ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 1.5px;
  background: var(--primary);
}
.article-cta {
  margin-top: 40px;
  padding: 28px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
  .map-frame { aspect-ratio: 16 / 12; }
}

.pricing-table { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pricing-card .range {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 800;
  color: var(--primary-dark); margin-bottom: 12px;
}
.pricing-card ul li {
  font-size: 13px; color: var(--muted); padding: 8px 0; border-top: 1px solid var(--border);
}

.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header.center .lead { margin: 12px auto 0; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .service-block, .values-grid, .engagement-grid,
  .team-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
}
