/* ============================================
   VENICE HALLE STUDIO — DESIGN SYSTEM
   ============================================ */

:root {
  /* Brand colors, sampled from existing portfolio + LinkedIn presence */
  --coral: #FF7683;
  --coral-dark: #E85C6B;
  --coral-light: #FFE3E6;
  --navy: #1E3A5F;
  --navy-deep: #16283F;
  --charcoal: #253242;
  --grey-blue: #DEE5EF;
  --grey-blue-soft: #EEF2F8;
  --white: #FFFFFF;
  --text-muted: #66707E;
  --border-soft: rgba(37, 50, 66, 0.1);

  --font-display: 'Poppins', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-script: 'Alex Brush', cursive;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px rgba(30, 58, 95, 0.08);
  --shadow-hover: 0 16px 40px rgba(30, 58, 95, 0.16);
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.01em; line-height: 1.22; margin-bottom: 22px; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -0.005em; line-height: 1.25; margin-bottom: 14px; }
h3 { font-size: 1.3rem; line-height: 1.35; margin-bottom: 8px; }

.script {
  font-family: var(--font-script);
  color: var(--coral);
  font-size: 2rem;
  font-weight: 400;
  display: block;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* ---------- Icons (replace emoji) ---------- */
.icon {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-circle svg { color: var(--coral-dark); }

/* ---------- Scroll reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.30s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.37s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.44s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.51s; }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(255,118,131,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(255,118,131,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,118,131,0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--coral);
  display: inline-block;
}

p.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn-outline {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-outline:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-2px); }

.btn-light {
  background: var(--white);
  color: var(--navy-deep);
}
.btn-light:hover { background: var(--grey-blue); transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 42px; height: 42px; border-radius: 10px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
}
.brand-name span { color: var(--coral); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.nav-links a.active, .nav-links a:hover { color: var(--coral-dark); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy-deep); border-radius: 2px; }

/* ---------- Hero shapes (signature element) ---------- */
.shape-diagonal {
  position: absolute;
  width: 420px;
  height: 420px;
  background: var(--coral);
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
  opacity: 0.12;
  z-index: 0;
}
.shape-diagonal.navy { background: var(--navy); }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 96px 0; }
.bg-soft { background: var(--grey-blue-soft); }
.bg-navy { background: var(--navy-deep); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.78); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-cta-row { display: flex; gap: 16px; margin: 32px 0; flex-wrap: wrap; }
.hero-trustbar {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.hero-trustbar span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-portrait {
  position: relative;
  z-index: 1;
  animation: floatSlow 7s ease-in-out infinite;
}
.hero-portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/5;
}
.hero-portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: pulseRing 2.6s ease-out infinite;
}
.hero-badge .num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--coral); }
.hero-badge .label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; max-width: 110px; }

/* ---------- Cards ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.testimonial-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.testimonial-stars { display: flex; gap: 2px; color: var(--coral); }
.testimonial-stars svg { width: 15px; height: 15px; fill: var(--coral); stroke: none; }
.testimonial-rating-label { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--navy-deep); }
.testimonial-quote { font-size: 0.96rem; color: var(--charcoal); line-height: 1.65; margin-bottom: 22px; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-deep); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--navy-deep); }
.testimonial-author-title { font-size: 0.8rem; color: var(--text-muted); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Process ---------- */
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.process-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--coral);
  opacity: 0.5;
  min-width: 54px;
}

/* ---------- Portfolio ---------- */
.project-card {
  border-radius: var(--radius-md);
  padding: 34px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-card .tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}
.project-card h3 { color: var(--white); margin-bottom: 6px; }
.project-card p { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.project-trifecta { background: linear-gradient(135deg, #E9601A, #b6440d); }
.project-alanco { background: linear-gradient(135deg, #0f766e, #0b4f49); }
.project-ecoway { background: linear-gradient(135deg, #2f6b2f, #1c4a1c); }
.project-terra { background: linear-gradient(135deg, #8a7350, #5f4d34); }
.project-crm { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
.project-brand { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }

/* ---------- Stats ---------- */
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--coral); }
.stat .label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* ---------- Testimonial / tools strip ---------- */
.tools-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.tools-strip span {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.tools-group { margin-bottom: 30px; }
.tools-group:last-child { margin-bottom: 0; }
.tools-group-label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 14px;
}
.tools-strip span.platform-pill { display: inline-flex; align-items: center; gap: 8px; }
.tools-strip span.platform-pill svg { width: 15px; height: 15px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--navy-deep);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--grey-blue-soft);
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.checkbox-item input { width: auto; }
.honeypot { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 38px; height: 38px; border-radius: 8px; }
.footer-brand span { font-family: var(--font-display); font-weight: 800; color: var(--white); }
.site-footer h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 16px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 0.92rem; transition: color 0.15s ease; }
.site-footer a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- AI Chat Assistant Widget ---------- */
.chat-widget { position: fixed; bottom: 26px; right: 26px; z-index: 900; }
.chat-toggle {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--coral);
  border: none;
  box-shadow: 0 12px 30px rgba(255,118,131,0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s ease;
}
.chat-toggle svg { width: 26px; height: 26px; stroke: var(--white); }
.chat-toggle:hover { transform: scale(1.06); }
.chat-toggle .close-icon { display: none; }
.chat-toggle.open .chat-icon { display: none; }
.chat-toggle.open .close-icon { display: block; }

.chat-panel {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 40px);
  height: 460px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open { display: flex; animation: fadeInUp 0.25s ease; }

.chat-header {
  background: var(--navy-deep);
  color: var(--white);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-header .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
}
.chat-header .info h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 2px; }
.chat-header .info p { font-size: 0.74rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 5px; }
.chat-header .dot { width: 7px; height: 7px; border-radius: 50%; background: #3FCF7F; display: inline-block; }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--grey-blue-soft);
}
.msg {
  max-width: 84%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  animation: fadeInUp 0.3s ease;
}
.msg-bot {
  background: var(--white);
  color: var(--charcoal);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(30,58,95,0.06);
}
.msg-user {
  background: var(--coral);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.msg-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-start;
  max-width: 96%;
}
.quick-btn {
  background: var(--white);
  border: 1.3px solid var(--border-soft);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.quick-btn:hover { border-color: var(--coral); background: var(--coral-light); }

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(30,58,95,0.06);
}
.typing-indicator span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingDot 1.2s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--border-soft);
  background: var(--white);
}
.chat-input-row input {
  flex: 1;
  border: 1.5px solid var(--border-soft);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  background: var(--grey-blue-soft);
}
.chat-input-row input:focus { outline: none; border-color: var(--coral); background: var(--white); }
.chat-send {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--coral);
  border: none;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.chat-send:hover { background: var(--coral-dark); }
.chat-send svg { width: 17px; height: 17px; }

@media (max-width: 480px) {
  .chat-panel { width: calc(100vw - 32px); right: -10px; height: 70vh; }
  .brand-name { font-size: 0.88rem; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 64px 0 56px;
  background: var(--grey-blue-soft);
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }

/* ---------- Case Study Cards (Portfolio) ---------- */
.case-study-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.case-study-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.cs-banner {
  padding: 44px;
  color: var(--white);
  position: relative;
}
.cs-banner .tag { font-family: var(--font-display); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; margin-bottom: 10px; }
.cs-banner h3 { color: var(--white); font-size: 1.7rem; margin-bottom: 10px; }
.cs-banner p { color: rgba(255,255,255,0.88); max-width: 560px; }
.cs-body { padding: 36px 44px; }
.cs-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.cs-stat { text-align: left; border-left: 3px solid var(--coral); padding-left: 14px; }
.cs-stat .num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--navy-deep); display: block; }
.cs-stat .label { font-size: 0.8rem; color: var(--text-muted); }
.cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cs-block h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--navy-deep); margin-bottom: 10px; }
.cs-block p, .cs-block li { color: var(--text-muted); font-size: 0.92rem; }
.cs-block ul { display: flex; flex-direction: column; gap: 8px; }
.cs-block li { display: flex; gap: 8px; align-items: flex-start; }
.cs-block li svg { flex-shrink: 0; margin-top: 3px; color: var(--coral); width: 15px; height: 15px; }

/* ---------- Case study video embed ---------- */
.cs-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 24px;
  background: var(--navy-deep);
}
.cs-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.cs-video-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-deep);
  margin-bottom: 10px;
  margin-top: 28px;
  display: block;
}

/* ---------- Free Trial: badges & process ---------- */
.trial-badges { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0; }
.trial-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.trial-badge svg { width: 17px; height: 17px; color: var(--coral); }

.process-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--border-soft);
  height: 100%;
  position: relative;
}
.process-card .process-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  color: var(--white); background: var(--coral);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.process-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-card p { color: var(--text-muted); font-size: 0.9rem; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--grey-blue-soft);
}
.confirm-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--grey-blue-soft);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 24px 0;
}
.confirm-row input { width: auto; margin-top: 3px; flex-shrink: 0; }
.confirm-row label { font-size: 0.86rem; color: var(--text-muted); }
.note-box {
  background: var(--coral-light);
  border-left: 3px solid var(--coral);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--navy-deep);
  margin-bottom: 24px;
}
.form-footer-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 18px;
}

/* ---------- Case study screenshot + research ---------- */
.cs-screenshot {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  border: 1px solid var(--border-soft);
}
.cs-research {
  background: var(--grey-blue-soft);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 24px;
}
.cs-research h4 { font-size: 0.9rem; margin-bottom: 8px; }
.cs-research p { font-size: 0.88rem; color: var(--text-muted); }
.cs-links { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.cs-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border-soft);
  color: var(--navy-deep);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.cs-link-btn:hover { border-color: var(--coral); background: var(--coral-light); }
.cs-link-btn svg { width: 14px; height: 14px; }

/* ---------- Video rows ---------- */
.video-row-h { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-row-v { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-item { border-radius: var(--radius-md); overflow: hidden; background: var(--navy-deep); box-shadow: var(--shadow-soft); }
.video-item .cs-video { margin-top: 0; border-radius: 0; }
.video-item .video-caption { padding: 16px 18px; background: var(--white); }
.video-item .video-caption h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--navy-deep); margin-bottom: 4px; }
.video-item .video-caption p { font-size: 0.82rem; color: var(--text-muted); }
.video-vertical { aspect-ratio: 9/16; }
.video-vertical iframe { position: absolute; top:0; left:0; width:100%; height:100%; border:none; }

/* ---------- YouTube channel cards ---------- */
.yt-channel-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.yt-channel-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.yt-channel-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: #FFE3E6; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.yt-channel-icon svg { width: 24px; height: 24px; color: #E85C6B; }
.yt-channel-card h4 { font-size: 1rem; margin-bottom: 2px; }
.yt-channel-card p { font-size: 0.85rem; color: var(--text-muted); }
.yt-channel-card .btn { margin-left: auto; flex-shrink: 0; }

/* ---------- Brand/logo grid image wrapper ---------- */
.logo-grid-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-soft); }
.logo-grid-frame img { width: 100%; display: block; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 420px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  .section-pad { padding: 64px 0; }
  .hero-badge { position: static; margin-top: 16px; }
  .cs-grid { grid-template-columns: 1fr; }
  .cs-stats { grid-template-columns: 1fr; gap: 14px; }
  .cs-body { padding: 28px 24px; }
  .cs-banner { padding: 32px 24px; }
  .video-row-h, .video-row-v { grid-template-columns: 1fr; }
  .yt-channel-card { flex-wrap: wrap; }
  .yt-channel-card .btn { margin-left: 0; }
}

/* Mobile nav drawer */
.nav-links.mobile-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  flex-direction: column;
  gap: 0;
  padding: 10px 28px 20px;
  border-bottom: 1px solid var(--border-soft);
}
.nav-links.mobile-open a { padding: 12px 0; border-bottom: 1px solid var(--border-soft); width: 100%; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

/* ---------- Exit-intent popup ---------- */
.exit-overlay {
  position: fixed; inset: 0;
  background: rgba(22, 40, 63, 0.55);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-overlay.open { display: flex; animation: fadeInUp 0.25s ease; }
.exit-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 44px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-hover);
}
.exit-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--grey-blue-soft);
  color: var(--navy-deep);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.exit-modal-close svg { width: 16px; height: 16px; }
.exit-modal .icon-circle { margin: 0 auto 18px; width: 60px; height: 60px; }
.exit-modal h3 { font-size: 1.4rem; margin-bottom: 10px; }
.exit-modal p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }

/* ---------- Busywork Calculator ---------- */
.calc-wrap { display: grid; grid-template-columns: 1fr 0.9fr; gap: 40px; align-items: start; }
.calc-inputs { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 36px; }
.calc-row { display: grid; grid-template-columns: 1fr 110px; gap: 16px; align-items: center; margin-bottom: 18px; }
.calc-row label { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--navy-deep); }
.calc-row input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: center;
  background: var(--grey-blue-soft);
}
.calc-row input[type="number"]:focus { outline: none; border-color: var(--coral); background: var(--white); }
.calc-divider { border: none; border-top: 1px solid var(--border-soft); margin: 22px 0; }
.calc-rate-row { display: grid; grid-template-columns: 1fr 110px; gap: 16px; align-items: center; }
.calc-rate-row label { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--navy-deep); }

.calc-results { position: sticky; top: 100px; }
.calc-result-card {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-bottom: 20px;
}
.calc-result-card .calc-label { font-family: var(--font-display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.calc-result-card .calc-number { font-family: var(--font-display); font-weight: 800; font-size: 2.8rem; color: var(--coral); line-height: 1.1; }
.calc-result-card .calc-sub { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 6px; }
.calc-compare {
  background: var(--grey-blue-soft);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 20px;
}
.calc-compare-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
.calc-compare-row:last-child { border-bottom: none; }
.calc-compare-row .cc-label { font-size: 0.88rem; color: var(--text-muted); }
.calc-compare-row .cc-value { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy-deep); }
.calc-compare-row.highlight .cc-value { color: var(--coral-dark); }
.calc-email-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 24px; }
.calc-email-card h4 { font-size: 1rem; margin-bottom: 12px; }
.calc-email-row { display: flex; gap: 10px; }
.calc-email-row input { flex: 1; padding: 11px 14px; border: 1.5px solid var(--border-soft); border-radius: var(--radius-sm); font-size: 0.9rem; background: var(--grey-blue-soft); }
.calc-email-row input:focus { outline: none; border-color: var(--coral); background: var(--white); }
.calc-email-btn { white-space: nowrap; padding: 11px 20px; font-size: 0.85rem; }
.calc-email-success { display: none; color: var(--coral-dark); font-weight: 600; font-size: 0.88rem; margin-top: 10px; }

@media (max-width: 860px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-results { position: static; }
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item.open {
  border-color: var(--coral);
  box-shadow: var(--shadow-soft);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--coral);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; }
