/*
Theme Name: Kadence Child - Shinobi Labs
Template: kadence
Version: 1.0.0
Text Domain: kadence-child
*/

/* ============================================================================
   GLOBAL STYLES
   ============================================================================ */

body,
html {
  background-color: #0A0A0A;
  color: #E0E0E0;
}

.site,
#wrapper {
  background-color: #0A0A0A;
  color: #E0E0E0;
}

#masthead,
.site-header,
.site-footer {
  background-color: #0A0A0A;
  color: #E0E0E0;
}

/* Selection (Phase 5) */
::selection {
  background-color: #FFFFFF;
  color: #080808;
}

::-moz-selection {
  background-color: #FFFFFF;
  color: #080808;
}

/* Smooth scroll (Phase 5) */
html {
  scroll-behavior: smooth;
}

/* ============================================================================
   PHASE 1 â€” HERO SECTION
   ============================================================================ */

.hero-section {
  background-color: #080808;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-section__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Headline */
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6.944vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #F0F0F0;
  margin-bottom: 30px;
  margin-top: 0;
}

.hero-headline__line-alt {
  color: #555555;
}

/* Subtext */
.hero-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #777777;
  max-width: 520px;
  margin-bottom: 40px;
  margin-top: 0;
}

/* Buttons */
.hero-buttons.wp-block-group {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.wp-block-button__link.hero-button-primary {
  background-color: #F0F0F0 !important;
  color: #080808 !important;
  border: none !important;
  padding: 14px 28px !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.wp-block-button__link.hero-button-primary:hover {
  background-color: #E0E0E0 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(240, 240, 240, 0.1) !important;
}

.wp-block-button__link.hero-button-secondary {
  background-color: transparent !important;
  color: #F0F0F0 !important;
  border: 1px solid #333333 !important;
  padding: 14px 28px !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.wp-block-button__link.hero-button-secondary:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(240, 240, 240, 0.1) !important;
}

/* Responsive: Tablet (48px) */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-subtext {
    font-size: 16px;
  }
}

/* Responsive: Mobile (40px) */
@media (max-width: 640px) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-buttons.wp-block-group {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .wp-block-button__link.hero-button-primary,
  .wp-block-button__link.hero-button-secondary {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ============================================================================
   PHASE 2 â€” PROOF BAR
   ============================================================================ */

.proof-bar-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 0 80px 0;
}

.proof-bar-grid.wp-block-group {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

.proof-bar-grid.wp-block-group > .wp-block-group__inner-container {
  display: contents !important;
}

.proof-bar-card {
  background-color: #0A0A0A;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.proof-bar-card:hover {
  border-color: #2A2A2A;
  background-color: #0F0F0F;
}

.proof-bar-metric {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #F0F0F0;
  line-height: 1.2;
  margin: 0;
}

.proof-bar-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888888;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Responsive: Tablet (2 columns) */
@media (max-width: 1024px) {
  .proof-bar-grid.wp-block-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* Responsive: Mobile (1 column) */
@media (max-width: 640px) {
  .proof-bar-section {
    padding: 0 0 60px 0;
  }

  .proof-bar-grid.wp-block-group {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .proof-bar-card {
    padding: 24px 20px;
  }

  .proof-bar-metric {
    font-size: 28px;
  }

  .proof-bar-label {
    font-size: 12px;
  }
}

/* ============================================================================
   PHASE 3 â€” SERVICES GRID
   ============================================================================ */

.services-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
  scroll-margin-top: 100px;
}

/* Section header */
.services-header-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #444444;
  margin-bottom: 16px;
  margin-top: 0;
}

.services-header-title {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.2;
}

.services-header-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #666666;
  max-width: 520px;
  margin-bottom: 40px;
  margin-top: 0;
}

/* Grid: 2 columns, first card spans full width */
.services-grid.wp-block-group {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
}

.services-grid.wp-block-group > .wp-block-group__inner-container {
  display: contents !important;
}

.services-card-wide {
  grid-column: 1 / -1 !important;
}

/* Card base */
.services-card {
  background-color: #0A0A0A;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  padding: 32px 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.services-card:hover {
  background-color: #0F0F0F;
  border-color: #2A2A2A;
}

.services-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555555;
  margin-bottom: 12px;
  margin-top: 0;
}

.services-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 12px;
  margin-top: 0;
  line-height: 1.2;
}

.services-card-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
  margin-top: 0;
}

.services-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.services-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: #666666;
  border: 1px solid #1E1E1E;
  border-radius: 4px;
  padding: 3px 8px;
  background-color: #0D0D0D;
  display: inline-block;
  white-space: nowrap;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .services-header-title {
    font-size: 32px;
  }

  .services-grid.wp-block-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .services-card {
    padding: 28px 24px;
  }

  .services-card-title {
    font-size: 20px;
  }
}

/* Responsive: Mobile (all 1 column) */
@media (max-width: 640px) {
  .services-section {
    padding: 60px 24px;
  }

  .services-header-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .services-header-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .services-grid.wp-block-group {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .services-card-wide {
    grid-column: 1 !important;
  }

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

  .services-card-title {
    font-size: 18px;
  }

  .services-card-description {
    font-size: 13px;
  }

  .services-tag {
    font-size: 10px;
    padding: 2px 6px;
  }
}

/* ============================================================================
   PHASE 4A â€” PROCESS SECTION
   ============================================================================ */

.process-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
  scroll-margin-top: 100px;
}

/* Section header */
.process-header-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #444444;
  margin-bottom: 16px;
  margin-top: 0;
}

.process-header-title {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 40px;
  margin-top: 0;
  line-height: 1.2;
}

/* Grid: 4 columns */
.process-grid.wp-block-group {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

.process-grid.wp-block-group > .wp-block-group__inner-container {
  display: contents !important;
}

.process-step {
  border-top: 2px solid #1A1A1A;
  padding-top: 24px;
}

.process-step-number {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.2;
}

.process-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.2;
}

.process-step-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 1.65;
  margin: 0;
}

/* Responsive: Tablet (2 columns) */
@media (max-width: 1024px) {
  .process-header-title {
    font-size: 32px;
  }

  .process-grid.wp-block-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* Responsive: Mobile (1 column) */
@media (max-width: 640px) {
  .process-section {
    padding: 60px 24px;
  }

  .process-header-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .process-grid.wp-block-group {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .process-step {
    padding-top: 16px;
  }

  .process-step-title {
    font-size: 16px;
  }

  .process-step-description {
    font-size: 12px;
  }
}

/* ============================================================================
   PHASE 4B â€” ABOUT SECTION
   ============================================================================ */

.about-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
  scroll-margin-top: 100px;
}

/* Section header */
.about-header-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #444444;
  margin-bottom: 16px;
  margin-top: 0;
}

/* 2-column grid, vertically centered */
.about-grid.wp-block-group {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
}

.about-grid.wp-block-group > .wp-block-group__inner-container {
  display: contents !important;
}

/* Left column */
.about-content {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 32px;
  margin-top: 0;
  line-height: 1.2;
}

.about-paragraph {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #777777;
  line-height: 1.75;
  margin-bottom: 20px;
  margin-top: 0;
}

.about-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}

.about-tech-item {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  color: #555555;
}

/* Right column â€” Testimonial card */
.about-testimonial {
  background-color: #0A0A0A;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-testimonial-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: #999999;
  margin-bottom: 24px;
  margin-top: 0;
}

.about-testimonial-attribution {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #F0F0F0;
  margin-bottom: 4px;
  margin-top: 0;
}

.about-testimonial-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #555555;
  margin: 0;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .about-title {
    font-size: 32px;
  }

  .about-grid.wp-block-group {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .about-section {
    padding: 60px 24px;
  }

  .about-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .about-paragraph {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .about-tech-list {
    gap: 12px;
  }

  .about-tech-item {
    font-size: 11px;
  }

  .about-testimonial {
    padding: 32px;
  }

  .about-testimonial-quote {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .about-testimonial-attribution {
    font-size: 13px;
  }

  .about-testimonial-sub {
    font-size: 11px;
  }
}

/* ============================================================================
   PHASE 4C â€” CTA SECTION
   ============================================================================ */

.cta-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px 24px 120px 24px;
  text-align: center;
  scroll-margin-top: 100px;
}

.cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #F0F0F0;
  margin-bottom: 24px;
  margin-top: 0;
}

.cta-headline__secondary {
  color: #444444;
}

.cta-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #666666;
  max-width: 440px;
  margin: 0 auto 40px auto;
}

.wp-block-button__link.cta-button {
  background-color: #F0F0F0 !important;
  color: #080808 !important;
  border: none !important;
  padding: 16px 36px !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.wp-block-button__link.cta-button:hover {
  background-color: #E0E0E0 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(240, 240, 240, 0.1) !important;
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .cta-section {
    padding: 80px 24px 100px 24px;
  }

  .cta-headline {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .cta-subtext {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .wp-block-button__link.cta-button {
    padding: 14px 28px !important;
    font-size: 14px !important;
  }
}

/* ============================================================================
   PHASE 5 â€” POLISH: Max-Width Consistency
   ============================================================================ */

/* All sections consistent max-width and centering */
.hero-section,
.proof-bar-section,
.services-section,
.process-section,
.about-section,
.cta-section {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero is full-width exception */
.hero-section {
  max-width: 100%;
}
/* ============================================================================
   SERVICES PAGE CSS â€” COMPLETE REBUILD FROM MARKUP STRUCTURE
   ============================================================================ */

/* ============================================================================
   PHASE 1 â€” PAGE HERO
   ============================================================================ */

.services-hero-row {
  max-width: 1080px;
  margin: 0 auto;
  padding: 140px 24px 60px 24px;
  text-align: left;
}

.services-hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555555;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.services-hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #F0F0F0;
  margin: 0 0 40px 0;
  max-width: 700px;
  display: block;
}

.services-hero-headline-primary {
  color: #F0F0F0;
}

.services-hero-headline-secondary {
  color: #555555;
}

.services-hero-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #666666;
  max-width: 540px;
  margin: 0;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .services-hero-headline {
    font-size: 40px;
  }

  .services-hero-subtext {
    font-size: 16px;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .services-hero-row {
    padding: 100px 24px 40px 24px;
  }

  .services-hero-eyebrow {
    font-size: 11px;
  }

  .services-hero-headline {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .services-hero-subtext {
    font-size: 15px;
  }
}

/* ============================================================================
   PHASE 2 â€” SERVICE SECTIONS
   ============================================================================ */

.services-section-row {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 24px;
  border-bottom: 1px solid #111111;
}

.services-section-row:last-of-type {
  border-bottom: none;
}

/* Row 1: Number + Label */
.services-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.services-section-number {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  margin: 0;
  line-height: 1.2;
}

.services-section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #444444;
  margin: 0;
  line-height: 1.2;
}

/* Row 2: Title */
.services-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #F0F0F0;
  margin: 0 0 40px 0;
}

/* Row 3: Problem/Solution cards (2-column grid) */
.services-section-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  margin-bottom: 40px !important;
}

.services-section-card {
  background-color: #0A0A0A;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.services-section-card:hover {
  background-color: #0F0F0F;
  border-color: #2A2A2A;
}

.services-section-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555555;
  margin: 0 0 14px 0;
  line-height: 1.2;
}

.services-section-card-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #999999;
  line-height: 1.75;
  margin: 0;
}

/* Row 4: Scope + Engagement (2-column grid) */
.services-section-details {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
}

.services-section-scope,
.services-section-engagement {
  display: flex;
  flex-direction: column;
}

.services-section-details-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #444444;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

/* Scope list: em dashes instead of bullets */
.services-section-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-section-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: 16px;
}

.services-section-list li::before {
  content: 'â€”';
  position: absolute;
  left: 0;
  color: #333333;
}

/* Engagement body + tags */
.services-section-engagement-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.services-section-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.services-section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: #555555;
  border: 1px solid #1E1E1E;
  border-radius: 4px;
  padding: 3px 8px;
  background-color: #0D0D0D;
  display: inline-block;
  white-space: nowrap;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .services-section-title {
    font-size: 36px;
  }

  .services-section-cards {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .services-section-details {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .services-section-card {
    padding: 28px 24px;
  }

  .services-section-card-body {
    font-size: 14px;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .services-section-row {
    padding: 60px 24px;
  }

  .services-section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .services-section-cards {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
  }

  .services-section-details {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .services-section-card {
    padding: 24px 20px;
  }

  .services-section-card-label {
    font-size: 10px;
  }

  .services-section-card-body {
    font-size: 13px;
  }

  .services-section-list li {
    font-size: 13px;
  }

  .services-section-engagement-body {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .services-section-tag {
    font-size: 10px;
    padding: 2px 6px;
  }
}

/* ============================================================================
   PHASE 3 â€” BOTTOM CTA
   ============================================================================ */

.services-cta-row {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px 24px 120px 24px;
  border-top: 1px solid #111111;
  text-align: center;
}

.services-cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #F0F0F0;
  margin: 0 0 16px 0;
  text-align: center;
  display: block;
}

.services-cta-headline-primary {
  color: #F0F0F0;
}

.services-cta-headline-secondary {
  color: #444444;
}

.services-cta-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #666666;
  max-width: 460px;
  margin: 0 auto 36px auto;
}

/* Button */
.services-cta-button-wrapper {
  text-align: center;
}

.services-cta-button {
  background-color: #F0F0F0 !important;
  color: #080808 !important;
  border: none !important;
  padding: 16px 36px !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.services-cta-button:hover {
  background-color: #E0E0E0 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.08) !important;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .services-cta-headline {
    font-size: 40px;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .services-cta-row {
    padding: 80px 24px 100px 24px;
  }

  .services-cta-headline {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .services-cta-subtext {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .services-cta-button {
    padding: 14px 28px !important;
    font-size: 14px !important;
  }
}

/* ============================================================================
   PHASE 4 â€” POLISH (already in effect from above)
   ============================================================================ */

/* Card hover: background #0F0F0F, border #2A2A2A (applied above) */
/* Button hover: translateY(-1px), box-shadow (applied above) */
/* Section borders: 1px #111111 except last (applied above) */
/* Max-width 1080px, padding 24px (applied above) */
/* Smooth scroll (from homepage build) */


/* ============================================================================
   PROCESS PAGE â€” PHASE 1 HERO
   ============================================================================ */

.process-hero-row {
  max-width: 1080px;
  margin: 0 auto;
  padding: 140px 24px 60px 24px;
  text-align: left;
}

.process-hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555555;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.process-hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #F0F0F0;
  margin: 0 0 40px 0;
  max-width: 700px;
  display: block;
}

.process-hero-headline-primary {
  color: #F0F0F0;
}

.process-hero-headline-secondary {
  color: #555555;
}

.process-hero-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #666666;
  max-width: 540px;
  margin: 0;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .process-hero-headline {
    font-size: 40px;
  }

  .process-hero-subtext {
    font-size: 16px;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .process-hero-row {
    padding: 100px 24px 40px 24px;
  }

  .process-hero-eyebrow {
    font-size: 11px;
  }

  .process-hero-headline {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .process-hero-subtext {
    font-size: 15px;
  }
}


/* ============================================================================
   PROCESS PAGE â€” PHASE 2 STEP SECTIONS
   ============================================================================ */

.process-step-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 24px;
  border-bottom: 1px solid #111111;
}

.process-step-section:last-of-type {
  border-bottom: none;
}

/* Row 1: Number + Label */
.process-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.process-step-number {
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: #111111;
  line-height: 1;
  margin: 0;
}

.process-step-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #444444;
  margin: 0;
}

/* Row 2: Tagline */
.process-step-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: #F0F0F0;
  margin: 0 0 16px 0;
  max-width: 640px;
}

/* Row 3: Description */
.process-step-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  max-width: 600px;
  margin: 0 0 40px 0;
}

/* Row 4: Three detail cards (3-column grid) */
.process-step-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-bottom: 32px !important;
}

.process-step-card {
  background-color: #0A0A0A;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.process-step-card:hover {
  background-color: #0F0F0F;
  border-color: #2A2A2A;
}

.process-step-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555555;
  margin: 0 0 14px 0;
  line-height: 1.2;
}

.process-step-card-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 1.7;
  margin: 0;
}

/* Row 5: Tags */
.process-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.process-step-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: #555555;
  border: 1px solid #1E1E1E;
  border-radius: 4px;
  padding: 4px 10px;
  background-color: #0D0D0D;
  display: inline-block;
  white-space: nowrap;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .process-step-number {
    font-size: 56px;
  }

  .process-step-tagline {
    font-size: 32px;
  }

  .process-step-cards {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .process-step-section {
    padding: 60px 20px;
  }

  .process-step-number {
    font-size: 48px;
  }

  .process-step-tagline {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .process-step-description {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .process-step-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  .process-step-card {
    padding: 24px 20px;
  }

  .process-step-card-label {
    font-size: 10px;
  }

  .process-step-card-body {
    font-size: 13px;
  }

  .process-step-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
}


/* ============================================================================
   PROCESS PAGE â€” PHASE 3 FAQ SECTION
   ============================================================================ */

.process-faq-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px;
  border-top: 1px solid #111111;
}

/* Section header */
.process-faq-header {
  margin-bottom: 40px;
}

.process-faq-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #444444;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.process-faq-title {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #F0F0F0;
  margin: 0;
}

/* FAQ items */
.process-faq-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-faq-item {
  border-bottom: 1px solid #151515;
  padding: 20px 0;
}

.process-faq-item:first-child {
  padding-top: 0;
}

.process-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.process-faq-question {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #999999;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.process-faq-answer {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .process-faq-section {
    padding: 80px 20px;
  }

  .process-faq-title {
    font-size: 28px;
  }

  .process-faq-question {
    font-size: 14px;
  }

  .process-faq-answer {
    font-size: 13px;
  }
}


/* ============================================================================
   PROCESS PAGE â€” PHASE 4 BOTTOM CTA
   ============================================================================ */

.process-cta-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px 24px 120px 24px;
  border-top: 1px solid #111111;
  text-align: center;
}

.process-cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #F0F0F0;
  margin: 0 0 16px 0;
  text-align: center;
  display: block;
}

.process-cta-headline-primary {
  color: #F0F0F0;
}

.process-cta-headline-secondary {
  color: #444444;
}

.process-cta-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #666666;
  max-width: 460px;
  margin: 0 auto 36px auto;
}

.process-cta-button-wrapper {
  text-align: center;
}

.process-cta-button {
  background-color: #F0F0F0 !important;
  color: #080808 !important;
  border: none !important;
  padding: 16px 36px !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.process-cta-button:hover {
  background-color: #E0E0E0 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.08) !important;
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .process-cta-section {
    padding: 80px 24px 100px 24px;
  }

  .process-cta-headline {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .process-cta-subtext {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .process-cta-button {
    padding: 14px 28px !important;
    font-size: 14px !important;
  }
}


/* ============================================================================
   PROCESS PAGE â€” PHASE 5 POLISH (CSS only)
   ============================================================================ */

/* Hover states on detail cards */
.process-step-card:hover {
  background-color: #0F0F0F !important;
  border-color: #2A2A2A !important;
  transition: all 0.3s ease !important;
}

/* Hover on CTA button */
.process-cta-button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.08) !important;
}

/* Step section borders */
.process-step-section {
  border-bottom: 1px solid #111111;
}

.process-step-section:last-of-type {
  border-bottom: none;
}

/* Max-width consistency */
.process-hero-row,
.process-step-section,
.process-faq-section,
.process-cta-section {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Smooth scroll already enabled from homepage */


/* ============================================================================
   ABOUT PAGE â€” PHASE 1 HERO
   ============================================================================ */

.about-hero-row {
  max-width: 1080px;
  margin: 0 auto;
  padding: 140px 24px 80px 24px;
  text-align: left;
}

.about-hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555555;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.about-hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #F0F0F0;
  margin: 0;
  max-width: 700px;
  display: block;
}

.about-hero-headline-primary {
  color: #F0F0F0;
}

.about-hero-headline-secondary {
  color: #555555;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .about-hero-headline {
    font-size: 40px;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .about-hero-row {
    padding: 100px 24px 60px 24px;
  }

  .about-hero-eyebrow {
    font-size: 11px;
  }

  .about-hero-headline {
    font-size: 36px;
  }
}


/* ============================================================================
   ABOUT PAGE â€” PHASE 2 INTRO SECTION
   ============================================================================ */

.about-intro-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 100px 24px;
}

.about-intro-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
}

/* Bio text column */
.about-intro-bio {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-intro-para {
  font-family: 'DM Sans', sans-serif;
  margin: 0 0 20px 0;
  line-height: 1.8;
}

.about-intro-para-1 {
  font-size: 17px;
  color: #999999;
}

.about-intro-para-2,
.about-intro-para-3 {
  font-size: 16px;
  color: #777777;
}

.about-intro-para-3 {
  margin-bottom: 0;
}

/* At a Glance card */
.about-intro-card {
  background-color: #0A0A0A;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  padding: 36px 28px;
}

.about-intro-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555555;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.about-intro-card-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-intro-card-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #151515;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.about-intro-card-row-last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-intro-card-key {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555555;
  text-align: left;
}

.about-intro-card-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #CCCCCC;
  text-align: right;
  white-space: nowrap;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .about-intro-para-1 {
    font-size: 16px;
  }

  .about-intro-card-key,
  .about-intro-card-value {
    font-size: 12px;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .about-intro-section {
    padding: 0 20px 60px 20px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .about-intro-para-1 {
    font-size: 15px;
  }

  .about-intro-para-2,
  .about-intro-para-3 {
    font-size: 14px;
  }

  .about-intro-card {
    padding: 28px 24px;
  }

  .about-intro-card-label {
    font-size: 10px;
    margin-bottom: 16px;
  }

  .about-intro-card-key,
  .about-intro-card-value {
    font-size: 12px;
  }

  .about-intro-card-row {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}



.about-intro-grid.wp-block-group > .wp-block-group__inner-container {
  display: contents !important;
}

.about-intro-bio {
  display: flex !important;
  flex-direction: column !important;
}

.about-intro-card {
  display: block !important;
}

@media (max-width: 1024px) {
  .about-intro-grid.wp-block-group {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 640px) {
  .about-intro-grid.wp-block-group {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}



@media (max-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 640px) {
  .about-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}


/* ABOUT PHASE 2 - Kadence Row Layout */

.about-intro-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 100px 24px;
  gap: 48px !important;
}

.kt-row-column-1,
.kt-row-column-2 {
  display: block !important;
}

/* Left column paragraphs */
.about-intro-para-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #999999;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.about-intro-para-2,
.about-intro-para-3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #777777;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.about-intro-para-3 {
  margin-bottom: 0;
}

/* Right column card */
.about-intro-card {
  background-color: #0A0A0A;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  padding: 36px 28px;
}

.about-intro-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555555;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.about-intro-card-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-intro-card-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #151515;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.about-intro-card-row-last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-intro-card-key {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #555555;
}

.about-intro-card-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #CCCCCC;
  text-align: right;
}

@media (max-width: 640px) {
  .about-intro-section {
    padding: 0 20px 60px 20px;
  }

  .about-intro-para-1 {
    font-size: 15px;
  }

  .about-intro-para-2,
  .about-intro-para-3 {
    font-size: 14px;
  }

  .about-intro-card {
    padding: 28px 24px;
  }

  .about-intro-card-key,
  .about-intro-card-value {
    font-size: 12px;
  }
}


/* About Page Hero Headline - Responsive Sizing */
.about-hero-headline {
  font-size: 56px;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-hero-headline {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero-headline {
    font-size: 36px;
  }
}


/* About Page Phase 2: Intro Section */
.about-intro-section {
  padding: 0 24px 100px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-intro-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-intro-para-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #999999;
  margin-bottom: 20px;
}

.about-intro-para-2,
.about-intro-para-3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #777777;
  margin-bottom: 20px;
}

.about-intro-para-3 {
  margin-bottom: 0;
}

.about-intro-card {
  background-color: #0A0A0A;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.about-intro-card:hover {
  background-color: #0F0F0F;
  border-color: #2A2A2A;
}

.about-intro-card-header {
  font-family: Syne;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 20px;
}

.about-intro-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #151515;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.about-intro-card-row-last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-intro-card-key {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #555555;
  margin: 0;
  flex-shrink: 0;
}

.about-intro-card-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #CCCCCC;
  text-align: right;
  margin: 0;
  flex-shrink: 0;
}

/* Tablet: 2-col grid, reduce gap */
@media (max-width: 1024px) {
  .about-intro-grid {
    gap: 32px;
  }
}

/* Mobile: Stack to 1 column */
@media (max-width: 768px) {
  .about-intro-section {
    padding: 0 20px 60px 20px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-intro-para-1 {
    font-size: 15px;
  }

  .about-intro-para-2,
  .about-intro-para-3 {
    font-size: 14px;
  }

  .about-intro-card {
    padding: 28px 24px;
  }

  .about-intro-card-key,
  .about-intro-card-value {
    font-size: 12px;
  }
}

/* Very small mobile: Stack key-value if needed below 480px */
@media (max-width: 480px) {
  .about-intro-card-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .about-intro-card-value {
    text-align: left;
  }
}


/* About Page Phase 3: Values Section */
.about-values-section {
  padding: 100px 24px;
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid #111111;
}

.about-values-label {
  font-family: Syne;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 16px;
  margin-top: 0;
}

.about-values-title {
  font-family: Syne;
  font-size: 40px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 40px;
  margin-top: 0;
}

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

.about-values-card {
  background-color: #0A0A0A;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.about-values-card:hover {
  background-color: #0F0F0F;
  border-color: #2A2A2A;
}

.about-values-card-title {
  font-family: Syne;
  font-size: 18px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 12px;
  margin-top: 0;
}

.about-values-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #888888;
  margin: 0;
}

/* Tablet: 2-col grid */
@media (max-width: 1024px) {
  .about-values-grid {
    gap: 16px;
  }
}

/* Mobile: Stack to 1 column */
@media (max-width: 768px) {
  .about-values-section {
    padding: 60px 20px;
  }

  .about-values-title {
    font-size: 28px;
  }

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

  .about-values-card {
    padding: 28px 24px;
  }

  .about-values-card-title {
    font-size: 16px;
  }

  .about-values-card-desc {
    font-size: 13px;
  }
}


/* About Page Phase 4: Timeline Section */
.about-timeline-section {
  padding: 100px 24px;
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid #111111;
}

.about-timeline-label {
  font-family: Syne;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 16px;
  margin-top: 0;
}

.about-timeline-title {
  font-family: Syne;
  font-size: 40px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 48px;
  margin-top: 0;
}

.about-timeline-grid {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  max-width: 640px;
  margin-left: 0 !important;
}

.about-timeline-entry {
  display: flex;
  align-items: flex-start;
}

.about-timeline-year {
  font-family: Syne;
  font-size: 16px;
  font-weight: 800;
  color: #333333;
  margin: 0;
  flex-shrink: 0;
  width: 72px;
}

.about-timeline-year-now {
  color: #F0F0F0;
}

.about-timeline-text {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #151515;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.about-timeline-text:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-timeline-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #888888;
  margin: 0;
}

/* Mobile: Stack to single column */
@media (max-width: 768px) {
  .about-timeline-section {
    padding: 60px 20px;
  }

  .about-timeline-title {
    font-size: 28px;
  }

  .about-timeline-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-timeline-year {
    width: auto;
  }

  .about-timeline-text {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .about-timeline-desc {
    font-size: 13px;
  }
}





/* About Page Phase 5: Stack Section */
.about-stack-section {
  padding: 100px 24px;
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid #111111;
}

.about-stack-label {
  font-family: Syne;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 16px;
  margin-top: 0;
}

.about-stack-title {
  font-family: Syne;
  font-size: 40px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 40px;
  margin-top: 0;
}

/* Stack card hover state */
.about-stack-section > div > div {
  transition: all 0.3s ease;
}

.about-stack-section > div > div:hover {
  background-color: #0F0F0F !important;
  border-color: #2A2A2A !important;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .about-stack-section > div {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .about-stack-section {
    padding: 60px 20px;
  }

  .about-stack-title {
    font-size: 28px;
  }

  .about-stack-section > div {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}


/* About Page Phase 6: Testimonials Section */
.about-testimonials-section {
  padding: 100px 24px;
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid #111111;
}

.about-testimonials-label {
  font-family: Syne;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 16px;
  margin-top: 0;
}

.about-testimonials-title {
  font-family: Syne;
  font-size: 40px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 40px;
  margin-top: 0;
}

/* Testimonial card hover state */
.about-testimonials-section > div > div {
  transition: all 0.3s ease;
}

.about-testimonials-section > div > div:hover {
  background-color: #0F0F0F !important;
  border-color: #2A2A2A !important;
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .about-testimonials-section {
    padding: 60px 20px;
  }

  .about-testimonials-title {
    font-size: 28px;
  }

  .about-testimonials-section > div {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}


/* About Page Phase 7: Bottom CTA Section */
.about-cta-section {
  padding: 100px 24px 120px 24px;
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid #111111;
  text-align: center;
}

.about-cta-headline {
  font-family: Syne;
  font-size: 44px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  margin-top: 0;
}

.about-cta-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  text-align: center;
  max-width: 460px;
  margin-bottom: 36px;
}

.about-cta-button {
  background-color: #F0F0F0;
  color: #080808;
  font-family: Syne;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.about-cta-button:hover {
  background-color: #E0E0E0;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.08);
}

/* Mobile: Responsive headline size */
@media (max-width: 768px) {
  .about-cta-section {
    padding: 60px 20px 100px 20px;
  }

  .about-cta-headline {
    font-size: 32px;
  }

  .about-cta-subtext {
    font-size: 14px;
  }

  .about-cta-button {
    padding: 14px 28px;
    font-size: 13px;
  }
}


/* About Page Phase 8: Polish & Refinement */

/* Global smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background-color: #F0F0F0;
  color: #080808;
}

/* Hover states for all value cards */
.about-values-section > div > div:hover {
  background-color: #0F0F0F !important;
  border-color: #2A2A2A !important;
}

/* Hover states for intro card */
.about-intro-card:hover {
  background-color: #0F0F0F !important;
  border-color: #2A2A2A !important;
}

/* Ensure all sections have consistent max-width and horizontal padding */
.about-hero-row,
.about-intro-section,
.about-values-section,
.about-stack-section,
.about-testimonials-section,
.about-cta-section {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* Mobile padding consistency */
@media (max-width: 768px) {
  .about-hero-row,
  .about-intro-section,
  .about-values-section,
  .about-stack-section,
  .about-testimonials-section,
  .about-cta-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* At a Glance card: ensure key-value pairs don't wrap awkwardly on tablet */
@media (max-width: 480px) {
  .about-intro-card-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .about-intro-card-value {
    text-align: left !important;
  }
}

/* Verify "Now" year color is distinct */
.about-timeline-year-now {
  color: #F0F0F0 !important;
}

.about-timeline-year:not(.about-timeline-year-now) {
  color: #333333 !important;
}


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

.contact-main-row {
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  padding-top: 140px !important;
  padding-bottom: 120px !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.contact-main-row .kt-row-column-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 64px;
}

.contact-main-row .kt-row-column-1 {
  flex: 1;
  min-width: 0;
}

.contact-main-row .kt-row-column-2 {
  flex: 1;
  min-width: 0;
  display: flex;
}

.contact-form-card {
  width: 100%;
  height: 100%;
}

.contact-headline {
  font-size: 48px;
}

/* Mobile: Stack to 1 column */
@media (max-width: 768px) {
  .contact-main-row {
    min-height: auto;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .contact-main-row .kt-row-column-wrap {
    flex-direction: column;
    gap: 32px;
  }

  .contact-headline {
    font-size: 32px;
  }

  .contact-form-card {
    padding: 24px 20px !important;
  }
}

/* ==========================================
 SHINOBI LABS â€” CONTACT FORM 7 OVERRIDES
 ========================================== */

/* Input fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
 width: 100%;
 background: #0a0a0a;
 border: 1px solid #1a1a1a;
 border-radius: 8px;
 padding: 12px 16px;
 font-family: 'DM Sans', sans-serif;
 font-size: 14px;
 color: #f0f0f0;
 outline: none;
 transition: border-color 0.2s;
 margin-bottom: 4px;
}

.wpcf7 textarea {
 padding: 14px 16px;
 min-height: 140px;
 resize: vertical;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
 border-color: #333;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
 color: #333;
 font-family: 'DM Sans', sans-serif;
}

/* Labels */
.wpcf7 label {
 display: block;
 font-family: 'Syne', sans-serif;
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 color: #555;
 margin-bottom: 8px;
 margin-top: 16px;
}

.wpcf7 label:first-child {
 margin-top: 0;
}

/* Checkboxes (service interest) */
.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
 display: inline-block;
 margin: 0 8px 8px 0;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item label {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 font-family: 'DM Sans', sans-serif;
 font-size: 13px;
 font-weight: 400;
 letter-spacing: 0;
 text-transform: none;
 color: #777;
 background: transparent;
 border: 1px solid #1e1e1e;
 border-radius: 6px;
 padding: 7px 14px;
 cursor: pointer;
 transition: all 0.2s;
 margin: 0;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item label:hover {
 border-color: #333;
 color: #f0f0f0;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
 display: none;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label {
 color: #f0f0f0;
 border-color: #444;
}

/* Radio buttons (budget) */
.wpcf7 .wpcf7-radio .wpcf7-list-item {
 display: inline-block;
 margin: 0 8px 8px 0;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item label {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 font-family: 'DM Sans', sans-serif;
 font-size: 13px;
 font-weight: 400;
 letter-spacing: 0;
 text-transform: none;
 color: #777;
 background: transparent;
 border: 1px solid #1e1e1e;
 border-radius: 6px;
 padding: 7px 14px;
 cursor: pointer;
 transition: all 0.2s;
 margin: 0;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item label:hover {
 border-color: #333;
 color: #f0f0f0;
}

.wpcf7 .wpcf7-radio input[type="radio"] {
 display: none;
}

/* Submit button */
.wpcf7 input[type="submit"] {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 font-family: 'Syne', sans-serif;
 font-weight: 700;
 font-size: 14px;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: #080808;
 background: #f0f0f0;
 border: none;
 border-radius: 6px;
 padding: 14px 28px;
 cursor: pointer;
 transition: all 0.25s ease;
 margin-top: 24px;
}

.wpcf7 input[type="submit"]:hover {
 background: #fff;
 transform: translateY(-1px);
 box-shadow: 0 4px 24px rgba(255, 255, 255, 0.08);
}

/* Response messages */
.wpcf7 .wpcf7-response-output {
 font-family: 'DM Sans', sans-serif;
 font-size: 13px;
 border: 1px solid #1a1a1a !important;
 border-radius: 8px;
 padding: 12px 16px;
 margin: 16px 0 0 !important;
 color: #888;
 background: #0d0d0d;
}

.wpcf7 .wpcf7-not-valid-tip {
 font-family: 'DM Sans', sans-serif;
 font-size: 12px;
 color: #cc4444;
 margin-top: 4px;
}

/* Spinner */
.wpcf7 .wpcf7-spinner {
 display: none;
}

/* Remove CF7 default margins that break layout */
.wpcf7 form p {
 margin: 0;
}

/* Bottom note */
.wpcf7-form-note {
 font-family: 'DM Sans', sans-serif;
 font-size: 12px;
 color: #333;
 text-align: center;
 margin-top: 16px;
}


/* ==========================================
 CONTACT PAGE - PHASE 3: RESPONSIVE & POLISH
 ========================================== */

/* Tablet: Reduce padding, adjust headline */
@media (max-width: 1024px) {
  .contact-main-row {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .contact-headline {
    font-size: 40px;
  }
}

/* Mobile: Full responsive behavior */
@media (max-width: 768px) {
  .contact-main-row {
    min-height: auto !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .contact-main-row .kt-row-column-wrap {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .contact-main-row .kt-row-column-1,
  .contact-main-row .kt-row-column-2 {
    flex: 1 !important;
    width: 100% !important;
  }

  .contact-headline {
    font-size: 32px;
  }

  .contact-subtext {
    font-size: 15px !important;
  }

  .contact-form-card {
    padding: 24px 20px !important;
    height: auto !important;
  }

  /* Email fallback card: prevent text wrap issues on small screens */
  .contact-what-happens-list {
    gap: 16px !important;
  }
}

/* Very small mobile: Stack numbered items if needed */
@media (max-width: 480px) {
  .contact-what-happens-list > div {
    gap: 8px !important;
  }

  .contact-headline {
    font-size: 28px;
  }

  .contact-form-card {
    padding: 20px 16px !important;
  }
}

/* CF7 validation messages: ensure they display correctly with dark theme */
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #cc4444 !important;
  background: #0d0d0d !important;
  color: #cc4444;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #44cc44 !important;
  background: #0d0d0d !important;
  color: #44cc44;
}

/* Ensure CF7 form elements stack properly on mobile */
@media (max-width: 768px) {
  .wpcf7 input[type="submit"] {
    padding: 12px 24px;
    font-size: 12px;
  }

  .wpcf7 textarea {
    min-height: 120px;
  }
}