/* ============================================
   SENSOCIONAL — Global Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colours */
  --bg-cream: #EDECE8;
  --bg-dark: #0A0A0E;
  --bg-lavender: #A791C9;
  --bg-deep-purple: #2B2233;
  --accent: #A791C9;
  --accent-light: #C4B5DC;
  --ink: #0A0A0E;
  --ink-light: #3A3A40;
  --grey-muted: #C5C2BD;
  --grey-light: #D8D6D2;
  --white: #FAF9F7;
  --white-true: #FFFFFF;

  /* Typography */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-4xl: 10rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-text: 640px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration: 0.4s;
  --duration-slow: 0.8s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg-cream);
  overflow-x: hidden;
}

/* Subtle paper grain texture */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  max-width: 580px;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* --- Wordmark --- */
.wordmark {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

.section-wordmark {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--text {
  max-width: var(--max-width-text);
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Section Base --- */
section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--cream {
  background-color: var(--bg-cream);
  color: var(--ink);
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--white);
}

.section--dark .wordmark {
  color: var(--accent);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--accent-light);
}

.section--dark p {
  color: var(--grey-muted);
}

.section--lavender {
  background-color: var(--bg-lavender);
  color: var(--ink);
}

.section--lavender h1,
.section--lavender h2,
.section--lavender h3 {
  color: var(--ink);
}

.section--deep-purple {
  background-color: var(--bg-deep-purple);
  color: var(--white);
}

/* --- Headline Accent (lavender serif) --- */
.headline--accent {
  color: var(--accent);
}

.headline--italic {
  font-style: italic;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}

.btn--primary {
  background-color: var(--ink);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--bg-deep-purple);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn--outline:hover {
  background-color: var(--ink);
  color: var(--white);
}

.section--dark .btn--outline {
  color: var(--white);
  border-color: var(--grey-muted);
}

.section--dark .btn--outline:hover {
  background-color: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.section--dark .btn--primary {
  background-color: var(--accent);
  color: var(--ink);
}

.section--dark .btn--primary:hover {
  background-color: var(--accent-light);
}

.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.text-center .btn-group {
  justify-content: center;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  padding-top: calc(var(--space-md) + env(safe-area-inset-top, 0px));
  transition: background-color 0.5s var(--ease), padding var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  background-color: transparent;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

/* Scrolled on light sections */
.site-header.scrolled {
  background-color: rgba(237, 236, 232, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  padding-top: calc(var(--space-sm) + env(safe-area-inset-top, 0px));
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* Over dark sections — match dark background */
.site-header.header--on-dark {
  background-color: rgba(10, 10, 14, 0.85);
}

.site-header.header--on-dark .header-logo,
.site-header.header--on-dark .nav-desktop a {
  color: var(--white);
}

.site-header.header--on-dark .nav-toggle span {
  background-color: var(--white);
}

.site-header.header--on-dark .nav-cta {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* Scrolled + dark */
.site-header.scrolled.header--on-dark {
  background-color: rgba(10, 10, 14, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header-logo {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-light);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width var(--duration) var(--ease);
}

.nav-desktop a:hover {
  color: var(--ink);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a.active {
  color: var(--ink);
}

.nav-desktop a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
}

.nav-cta:hover {
  background-color: var(--accent) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--ink);
  margin: 6px 0;
  transition: all 0.3s var(--ease);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-cream);
  z-index: 999;
  padding: 5rem var(--space-lg) var(--space-lg);
  padding-top: calc(5rem + env(safe-area-inset-top, 0px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.nav-mobile a:hover {
  color: var(--accent);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--grey-muted);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--grey-muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--grey-muted);
  margin-bottom: 0.75rem;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  font-size: 0.8rem;
  color: var(--grey-muted);
  transition: color var(--duration) var(--ease);
}

.footer-social a:hover {
  color: var(--accent-light);
}

/* --- Floating CTA (expandable) --- */
.floating-cta-wrap {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.floating-cta-wrap.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Main trigger button */
.floating-cta-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background-color: var(--bg-lavender);
  color: var(--bg-dark);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(10, 10, 14, 0.2), 0 1px 4px rgba(10, 10, 14, 0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.floating-cta-trigger:hover {
  box-shadow: 0 8px 32px rgba(10, 10, 14, 0.3), 0 2px 8px rgba(10, 10, 14, 0.15);
  transform: translateY(-2px) scale(1.03);
}

/* Expanded state — rotate icon */
.floating-cta-wrap.open .floating-cta-trigger {
  background-color: var(--bg-dark);
  color: var(--white);
}

/* Options panel (hidden by default) */
.floating-cta-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.floating-cta-wrap.open .floating-cta-options {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Individual option pills */
.floating-cta-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.floating-cta-opt:hover {
  transform: translateY(-2px) scale(1.03);
}

.floating-cta-opt--wa {
  background-color: var(--bg-deep-purple);
  color: #fff;
  box-shadow: 0 4px 20px rgba(43, 34, 51, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1);
}

.floating-cta-opt--wa:hover {
  box-shadow: 0 8px 28px rgba(43, 34, 51, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.floating-cta-opt--form {
  background-color: var(--white);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(10, 10, 14, 0.12), 0 1px 4px rgba(10, 10, 14, 0.08);
  border: 1px solid var(--grey-light);
}

.floating-cta-opt--form:hover {
  box-shadow: 0 8px 28px rgba(10, 10, 14, 0.18), 0 2px 8px rgba(10, 10, 14, 0.1);
}

.floating-cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .floating-cta-wrap {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .floating-cta-trigger {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }

  .floating-cta-opt {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
  }
}

/* --- Heart Bullet List --- */
.heart-list {
  list-style: none;
  padding: 0;
}

.heart-list li {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  text-align: center;
}

.heart-list li::before {
  content: '\2661';
  margin-right: 0.75rem;
  color: var(--accent);
  font-size: 1.1em;
}

/* --- Cards --- */
.card {
  background-color: var(--white);
  border-radius: 12px;
  padding: var(--space-xl);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

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

.card h4 {
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* --- Service Cards Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--grey-light);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin: 0 auto;
}

/* --- Case Study Cards --- */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.case-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.case-card-image {
  height: 220px;
  background-color: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.case-card-body {
  padding: var(--space-lg);
}

.case-card-body .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.case-card-body h4 {
  margin-bottom: var(--space-sm);
}

.case-card-body p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* --- Pricing Tiers --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: var(--space-xl);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
}

.pricing-card .badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
}

.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.pricing-card .price span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--grey-muted);
  display: block;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.pricing-features li {
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--ink-light);
}

.pricing-features li::before {
  content: '\2713';
  margin-right: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

/* --- FAQ --- */
.faq-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--grey-light);
  padding: var(--space-md) 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.5rem 0;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--duration) var(--ease);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration) var(--ease), padding var(--duration) var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-sm);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  padding-top: var(--space-sm);
}

/* --- Contact Form --- */
.contact-form {
  max-width: 540px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background-color: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--duration) var(--ease);
}

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

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

/* --- SVG Line Icons (inline) --- */
.line-icon {
  display: inline-block;
  width: 120px;
  height: 120px;
  color: var(--accent);
}

.line-icon--large {
  width: 180px;
  height: 180px;
}

/* --- Spacing Utilities --- */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* --- Divider --- */
.section-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: var(--space-lg) auto;
}

/* --- Image Placeholder --- */
.image-placeholder {
  background-color: var(--grey-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-muted);
  font-size: 0.85rem;
  font-style: italic;
  min-height: 300px;
}

/* --- Founders Image --- */
.founders-image {
  border-radius: 12px;
  overflow: hidden;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.founders-image img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.value-item {
  text-align: center;
  padding: var(--space-lg);
}

.value-item .value-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.value-item h4 {
  margin-bottom: var(--space-xs);
}

.value-item p {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin: 0 auto;
}

/* --- Expect List --- */
.expect-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.expect-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: 8px;
}

.expect-item .check {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.expect-item p {
  font-size: 0.95rem;
  color: var(--ink-light);
}

/* --- Timeline / First 30 Days --- */
.timeline {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--accent);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent);
}

.timeline-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--ink);
}

.timeline-item .timeline-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--ink-light);
}

/* --- Journal / Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  background-color: var(--grey-light);
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-muted);
  font-size: 0.85rem;
  font-style: italic;
  transition: transform var(--duration) var(--ease);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* --- Bundles / Service Packages --- */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.bundle-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: var(--space-xl);
}

.bundle-card.featured {
  border: 2px solid var(--accent);
  position: relative;
}

/* --- Case Study Cards (detailed) --- */
.cs-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(167, 145, 201, 0.07);
}

.cs-card + .cs-card {
  margin-top: var(--space-xl);
}

.cs-card-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.cs-card.reverse .cs-card-top {
  direction: rtl;
}

.cs-card.reverse .cs-card-top > * {
  direction: ltr;
}

.cs-dark {
  background: var(--bg-dark);
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cs-dark::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 145, 201, 0.15) 0%, transparent 70%);
}

.cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.cs-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.cs-name {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.cs-name em {
  font-style: italic;
  color: var(--accent);
}

.cs-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.cs-industry {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-top: 1.5rem;
  align-self: flex-start;
}

.cs-light {
  background: #F7F3FB;
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--grey-light);
}

.cs-card.reverse .cs-light {
  border-left: none;
  border-right: 1px solid var(--grey-light);
}

.cs-quote-mark {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--accent);
  line-height: 0.7;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cs-quote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}

.cs-quote strong {
  font-style: normal;
  font-weight: 600;
  color: #7A5C9E;
}

.cs-attribution {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cs-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #EDE7F4;
  border: 1.5px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cs-author-name {
  font-size: 0.8125rem;
  font-weight: 600;
}

.cs-author-role {
  font-size: 0.6875rem;
  color: var(--grey-muted);
  margin-top: 1px;
}

.cs-stars {
  margin-left: auto;
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.cs-card-bottom {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--grey-light);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}

.cs-metrics {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}

.cs-metric-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: #7A5C9E;
  line-height: 1;
  display: block;
}

.cs-metric-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-top: 0.375rem;
  line-height: 1.4;
  max-width: 80px;
}

.cs-services-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 0.75rem;
}

.cs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
}

.cs-pill {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  background: #EDE7F4;
  color: #7A5C9E;
  border: 1px solid #E5DFF0;
}

/* Case study divider */
.cs-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.75rem 0;
}

.cs-divider::before,
.cs-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-light);
}

.cs-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Case study blockquote */
.cs-blockquote {
  background: var(--bg-dark);
  padding: 5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 3.75rem 0;
}

.cs-blockquote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(167, 145, 201, 0.12) 0%, transparent 70%);
}

.cs-blockquote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3.5vw, 2.375rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 1;
}

.cs-blockquote-text em {
  color: var(--accent);
  font-style: normal;
}

.cs-blockquote-author {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* --- Coming Soon Label --- */
.coming-soon-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-lg);
}

/* --- AI Workforce Section (Home) --- */
.ai-trust-line {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-light);
  font-style: italic;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.text-center .ai-trust-line {
  margin-left: auto;
  margin-right: auto;
}

/* --- AI Workforce Card (Services) --- */
.ai-workforce-section {
  background-color: var(--white);
  border-radius: 12px;
  padding: var(--space-xl);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.ai-workforce-section .section-label-group {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.ai-workforce-section .section-label-group .wordmark {
  margin-bottom: 0;
}

.ai-workforce-section .section-label-group .coming-soon-label {
  margin: 0;
}

.ai-workforce-section h3 {
  margin-bottom: var(--space-sm);
}

.ai-workforce-section .ai-summary {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--ink-light);
  margin-bottom: var(--space-lg);
  max-width: 640px;
}

.ai-includes-list,
.ai-not-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.ai-includes-list li {
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--ink-light);
}

.ai-includes-list li::before {
  content: '\2713';
  margin-right: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.ai-not-list li {
  font-size: 0.9rem;
  padding: 0.4rem 0;
  color: var(--grey-muted);
}

.ai-not-list li::before {
  content: '\2717';
  margin-right: 0.75rem;
  color: var(--grey-muted);
  font-weight: 400;
}

.ai-list-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.ai-honest-line {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-light);
  margin-top: var(--space-md);
}

/* --- AI Assist Callout (Process) --- */
.ai-assist-callout {
  background-color: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: var(--space-xl);
  max-width: var(--max-width-narrow);
  margin: var(--space-xl) auto;
  position: relative;
}

.ai-assist-callout .callout-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.ai-assist-callout .callout-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}

.ai-assist-callout .coming-soon-label {
  margin: 0;
}

.ai-assist-callout p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--ink-light);
  max-width: 640px;
}

.ai-assist-callout .micro-line {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--grey-muted);
  margin-top: var(--space-sm);
}

/* --- Journal / Blog Listing --- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.journal-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

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

.journal-card-image {
  height: 200px;
  background-color: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-muted);
  font-size: 0.85rem;
  font-style: italic;
  position: relative;
  overflow: hidden;
}

.journal-card-image .journal-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journal-card-body {
  padding: var(--space-lg);
}

.journal-card-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.journal-card-body h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}

.journal-card-body h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.journal-card-body h3 a:hover {
  color: var(--accent);
}

.journal-card-excerpt {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: none;
}

.journal-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--grey-muted);
  letter-spacing: 0.02em;
}

.journal-card-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--grey-muted);
}

.journal-card .link-arrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: var(--space-sm);
  transition: color var(--duration) var(--ease);
}

.journal-card .link-arrow:hover {
  color: var(--ink);
}

/* --- Journal / Blog Article --- */
.article-hero {
  padding-top: calc(var(--space-4xl) + 4rem);
  padding-bottom: var(--space-2xl);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--grey-muted);
  margin-top: var(--space-md);
  letter-spacing: 0.02em;
}

.article-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--grey-muted);
}

.article-body {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--ink);
}

.article-body p {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: var(--space-md);
  max-width: none;
}

.article-body p:first-of-type {
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  color: var(--ink);
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  color: var(--ink);
  line-height: 1.6;
}

.article-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.article-body ul li {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--ink-light);
  padding: 0.4rem 0;
}

.article-body ul li::before {
  content: '\2661';
  margin-right: 0.75rem;
  color: var(--accent);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: var(--space-xl);
  transition: color var(--duration) var(--ease);
}

.article-back:hover {
  color: var(--ink);
}

.article-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: var(--space-2xl) auto;
}

/* --- Pricing Feature: Coming Soon Inline --- */
.pricing-features li.feature--coming-soon {
  color: var(--accent);
  border-bottom-color: rgba(167, 145, 201, 0.12);
}

.pricing-features li.feature--coming-soon::before {
  content: '\2661';
  color: var(--accent);
  font-weight: 400;
}

.coming-soon-inline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-left: 0.5rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-steps::before {
    display: none;
  }

  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {

  /* --- Mobile: Tighter section spacing --- */
  section {
    padding: var(--space-xl) 0;
  }

  .container {
    padding: 0 var(--space-md);
  }

  /* --- Mobile: Typography tighter --- */
  h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  h3 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  p {
    font-size: 0.95rem;
  }

  /* --- Mobile: Reduce spacing utilities --- */
  .mb-xl { margin-bottom: var(--space-lg); }
  .mb-2xl { margin-bottom: var(--space-xl); }
  .mt-xl { margin-top: var(--space-lg); }
  .mt-2xl { margin-top: var(--space-xl); }

  .section-wordmark {
    margin-bottom: var(--space-lg);
  }

  /* --- Mobile: Navigation --- */
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  /* --- Mobile: Buttons full-width and stacked --- */
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  /* --- Mobile: SVG icons smaller --- */
  .icon-block svg {
    width: 120px !important;
    height: 120px !important;
  }

  .icon-block {
    margin-bottom: var(--space-lg) !important;
  }

  /* --- Mobile: Heart list tighter --- */
  .heart-list li {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
  }

  /* --- Mobile: Journal grid single column --- */
  .journal-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .journal-card-image {
    height: 160px;
  }

  .journal-card-body {
    padding: var(--space-md);
  }

  .article-body {
    padding: 0 var(--space-md);
  }

  .article-hero {
    padding-top: calc(var(--space-2xl) + 3rem);
  }

  /* --- Mobile: Service cards single column --- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .service-card {
    padding: var(--space-lg) var(--space-md);
  }

  /* --- Mobile: Process steps --- */
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }

  /* --- Mobile: Case study cards (old style) --- */
  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  /* --- Mobile: Case study cards (new detailed) --- */
  .cs-card-top,
  .cs-card.reverse .cs-card-top {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .cs-light {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--grey-light);
  }

  .cs-card-bottom {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .cs-dark,
  .cs-light {
    padding: 1.5rem 1.25rem;
  }

  .cs-metrics {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .cs-metric-value {
    font-size: 1.75rem;
  }

  .cs-metric-label {
    font-size: 0.55rem;
    max-width: 70px;
  }

  .cs-name {
    font-size: 1.5rem;
  }

  .cs-quote {
    font-size: 1rem;
  }

  .cs-quote-mark {
    font-size: 3rem;
  }

  .cs-pills {
    gap: 0.375rem;
  }

  .cs-pill {
    font-size: 0.625rem;
    padding: 0.25rem 0.625rem;
  }

  .cs-blockquote {
    padding: 3rem 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
  }

  .cs-divider {
    padding: 1.5rem 0;
  }

  /* --- Mobile: Pricing --- */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .pricing-card {
    padding: var(--space-lg);
  }

  /* --- Mobile: Values grid --- */
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .value-item {
    padding: var(--space-md);
  }

  /* --- Mobile: Expect list --- */
  .expect-list {
    grid-template-columns: 1fr;
  }

  /* --- Mobile: Gallery --- */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .gallery-item {
    font-size: 0.7rem;
    padding: var(--space-sm);
  }

  /* --- Mobile: Bundles --- */
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  /* --- Mobile: Timeline --- */
  .timeline {
    padding-left: 2.5rem;
  }

  .timeline-item::before {
    left: -1.85rem;
  }

  /* --- Mobile: Footer tighter --- */
  .site-footer {
    padding: var(--space-2xl) 0 var(--space-md);
  }

  .footer-top {
    flex-direction: column;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer-col h5 {
    margin-bottom: var(--space-xs);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }

  /* --- Mobile: Cards tighter padding --- */
  .card {
    padding: var(--space-lg);
  }

  /* --- Mobile: FAQ --- */
  .faq-question {
    font-size: 0.95rem;
    padding: 0.375rem 0;
  }

  /* --- Mobile: Contact form --- */
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.75rem 1rem;
    font-size: 1rem; /* prevents iOS zoom */
  }

  /* --- Mobile: Tap targets min 44px --- */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-col a {
    padding: 0.375rem 0;
    min-height: unset;
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  /* Even tighter section padding on small phones */
  section {
    padding: var(--space-lg) 0;
  }

  .cs-metrics {
    justify-content: space-between;
  }

  .cs-metric-value {
    font-size: 1.5rem;
  }
}

/* ============================================
   Cursor Liquid Canvas
   ============================================ */

@media (pointer: fine) {
  .cursor-liquid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99998;
  }
}
