/*
Theme Name: Maciev
Theme URI: https://macievconsulting.com
Author: Maciev Consulting Ltd
Author URI: https://macievconsulting.com
Description: Official theme for Maciev Consulting – management consulting that drives real results.
Version: 1.0.0
Requires at least: 6.3
Tested up to: 6.7
Requires PHP: 8.0
License: All Rights Reserved
Text Domain: maciev
*/



:root {
  --cream: #f5f5f1;
  --cream-mid: #eeece5;
  --cream-dark: #e5e3db;
  --ink: #1c1b18;
  --ink-soft: #4a4840;
  --ink-muted: #8a8780;
  --green: #2d5c3f;
  --green-light: #e8f0eb;
  --green-mid: #b8d4c0;
  --rust: #b04a2f;
  --rust-light: #f5ece9;
  --sand: #c9b99a;
  --sand-light: #f0e9dc;
  --serif: 'Lora', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --rd: 16px;
  --rd-lg: 24px;
  --rd-xl: 32px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wp-site-blocks {
  overflow-x: hidden;
}

/* Admin bar offset for fixed nav */
.admin-bar nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar nav {
    top: 46px;
  }
}

/* Anchor scroll offset for fixed nav */
[id] {
  scroll-margin-top: 80px;
}

/* ——— NAV ——— */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 64px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 245, 241, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28, 27, 24, 0.08);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo em {
  font-style: italic;
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}

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

.nav-btns {
  display: flex;
  gap: 0.6rem;
}

.nbtn {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nbtn-ghost {
  border: 1.5px solid rgba(28, 27, 24, 0.18);
  color: var(--ink);
  background: transparent;
}

.nbtn-ghost:hover {
  border-color: var(--ink);
}

.nbtn-solid {
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--ink);
}

.nbtn-solid:hover {
  background: var(--ink-soft);
}

/* ——— PILLS ——— */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid;
}

.pill-green {
  background: var(--green-light);
  color: var(--green);
  border-color: var(--green-mid);
}

.pill-rust {
  background: var(--rust-light);
  color: var(--rust);
  border-color: rgba(176, 74, 47, 0.25);
}

.pill-sand {
  background: var(--sand-light);
  color: var(--ink-soft);
  border-color: var(--sand);
}

/* ——— SECTION LABEL ——— */
.slabel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
}

.slabel::before {
  content: '\2192';
  color: var(--sand);
}

/* ——— HERO ——— */
.hero {
  padding: 9rem 2rem 4rem;
  text-align: center;
}

.hero-kicker {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-footnote {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ——— HERO VISUAL: stacked device mockup ——— */
.hero-devices {
  position: relative;
  margin: 3.5rem auto 0;
  max-width: 900px;
  height: 420px;
}

.device-desktop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  background: var(--cream-mid);
  border: 1.5px solid rgba(28, 27, 24, 0.12);
  border-radius: var(--rd-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(28, 27, 24, 0.12);
}

.device-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(28, 27, 24, 0.1);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.url-bar {
  flex: 1;
  height: 8px;
  background: rgba(28, 27, 24, 0.1);
  border-radius: 999px;
  margin-left: 0.5rem;
}

.device-body {
  display: flex;
  height: 330px;
}

.d-sidebar {
  width: 200px;
  border-right: 1px solid rgba(28, 27, 24, 0.08);
  padding: 1.25rem;
  background: var(--cream);
  flex-shrink: 0;
}

.d-sidebar-logo {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.d-sidebar-logo em {
  font-style: italic;
  color: var(--green);
}

.d-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.d-nav-item.active {
  background: var(--green-light);
  color: var(--green);
  font-weight: 500;
}

.d-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.d-main {
  flex: 1;
  padding: 1.5rem;
  overflow: hidden;
}

.d-main-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.kpi-card {
  background: var(--cream-dark);
  border: 1px solid rgba(28, 27, 24, 0.08);
  border-radius: 10px;
  padding: 0.75rem;
}

.kpi-label {
  font-size: 0.62rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.kpi-val {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

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

.kpi-val.rust {
  color: var(--rust);
}

.chart-area {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.6rem;
}

.chart-box {
  background: var(--cream);
  border: 1px solid rgba(28, 27, 24, 0.08);
  border-radius: 10px;
  padding: 0.75rem;
}

.chart-box-label {
  font-size: 0.65rem;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}

.bar {
  border-radius: 4px 4px 0 0;
  flex: 1;
}

.donut-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.legend-rows {
  margin-top: 0.4rem;
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* floating phone card */
.device-phone {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 145px;
  background: var(--cream);
  border: 1.5px solid rgba(28, 27, 24, 0.12);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 16px 48px rgba(28, 27, 24, 0.15);
}

.phone-header {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.phone-metric {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}

.phone-sub {
  font-size: 0.6rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.phone-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}

.spark-bar {
  border-radius: 2px;
  flex: 1;
  background: var(--green-light);
}

.spark-bar.hi {
  background: var(--green);
}

/* avatar cluster */
.avatar-cluster {
  display: inline-flex;
  margin-left: 0.5rem;
}

.av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 600;
  margin-left: -8px;
}

.av:first-child {
  margin-left: 0;
}

/* ——— DARK INTRO STRIP ——— */
.intro-strip {
  background: var(--ink);
  padding: 7rem 2.5rem;
}

.intro-strip-inner {
  max-width: 860px;
  margin: 0 auto;
}

.intro-strip-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.intro-strip-top .slabel {
  color: rgba(245, 245, 241, 0.4);
}

.intro-strip-top .slabel::before {
  color: var(--sand);
}

.collab-avatars {
  display: flex;
}

.cav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  margin-left: -8px;
  color: var(--ink);
}

.cav:first-child {
  margin-left: 0;
}

.intro-big {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
}

.intro-big em {
  font-style: italic;
  color: var(--sand);
}

.intro-big strong {
  font-weight: 700;
}

.intro-para {
  margin-top: 2rem;
  font-size: 1rem;
  color: rgba(245, 245, 241, 0.55);
  max-width: 580px;
  line-height: 1.8;
}

/* ——— FEATURE SECTIONS ——— */
.feature {
  padding: 7rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.feature-grid.flip {
  direction: rtl;
}

.feature-grid.flip>* {
  direction: ltr;
}

.feature-text .slabel {
  display: inline-flex;
}

.feature-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.feature-text h2 em {
  font-style: italic;
  color: var(--green);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.feature-checklist {
  list-style: none;
}

.feature-checklist li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(28, 27, 24, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.feature-checklist li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.feature-visual {
  position: relative;
}

/* mockup frames */
.frame {
  background: var(--cream-mid);
  border: 1.5px solid rgba(28, 27, 24, 0.1);
  border-radius: var(--rd-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(28, 27, 24, 0.1);
}

.frame-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(28, 27, 24, 0.08);
  padding: 0.6rem 1rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.frame-content {
  padding: 1.5rem;
}

/* floating badges on feature visuals */
.fbadge {
  position: absolute;
  background: var(--cream);
  border: 1.5px solid rgba(28, 27, 24, 0.1);
  border-radius: var(--rd);
  padding: 0.65rem 0.9rem;
  box-shadow: 0 8px 24px rgba(28, 27, 24, 0.1);
  font-size: 0.78rem;
  font-weight: 500;
}

/* process flow mockup */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pf-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--cream);
  border: 1px solid rgba(28, 27, 24, 0.08);
  border-radius: 10px;
}

.pf-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}

.pf-sub {
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 0.05rem;
}

.pf-connector {
  width: 2px;
  height: 14px;
  background: rgba(45, 92, 63, 0.2);
  margin-left: 11px;
}

.pf-step.done .pf-num {
  background: var(--green);
}

.pf-step.active {
  border-color: var(--green);
  background: var(--green-light);
}

.pf-step.active .pf-label {
  color: var(--green);
}

/* spreadsheet mockup */
.ssheet {
  font-size: 0.68rem;
}

.ssheet-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.ssheet-row.header {
  font-weight: 600;
  color: var(--ink-muted);
  border-bottom: 1px solid rgba(28, 27, 24, 0.12);
  padding-bottom: 0.4rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.62rem;
}

.ssheet-cell {
  padding: 0.35rem 0.3rem;
  border-bottom: 1px solid rgba(28, 27, 24, 0.06);
  color: var(--ink-soft);
}

.ssheet-cell.bold {
  font-weight: 600;
  color: var(--ink);
}

.ssheet-cell.green {
  color: var(--green);
  font-weight: 600;
}

.ssheet-cell.rust {
  color: var(--rust);
}

.ssheet-cell.highlight {
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  border-radius: 4px;
}

.ssheet-row.total .ssheet-cell {
  border-top: 1.5px solid var(--sand);
  font-weight: 700;
  color: var(--ink);
  padding-top: 0.5rem;
}

/* roadmap mockup */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.rm-phase {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  position: relative;
}

.rm-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.rm-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  border: 2px solid;
}

.rm-circle.done {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.rm-circle.active {
  background: var(--sand-light);
  border-color: var(--sand);
  color: var(--ink);
}

.rm-circle.future {
  background: var(--cream);
  border-color: rgba(28, 27, 24, 0.15);
  color: var(--ink-muted);
}

.rm-line {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: rgba(28, 27, 24, 0.12);
}

.rm-content {
  padding-bottom: 0.75rem;
  flex: 1;
}

.rm-phase-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.rm-phase-sub {
  font-size: 0.67rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.rm-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-top: 0.3rem;
}

.rm-tag.g {
  background: var(--green-light);
  color: var(--green);
}

.rm-tag.s {
  background: var(--sand-light);
  color: var(--ink-soft);
}

.rm-tag.r {
  background: var(--cream-dark);
  color: var(--ink-muted);
}

/* ——— INDUSTRIES BENTO ——— */
.industries {
  padding: 6rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ind-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.ind-card {
  background: var(--cream-mid);
  border: 1.5px solid rgba(28, 27, 24, 0.08);
  border-radius: var(--rd-lg);
  padding: 1.75rem;
  transition: transform .2s, border-color .2s, background .2s;
}

.ind-card:hover {
  transform: translateY(-3px);
  border-color: rgba(28, 27, 24, 0.18);
  background: var(--cream-dark);
}

.ind-card.wide {
  grid-column: span 2;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.ind-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ind-card.wide .ind-icon {
  font-size: 2.5rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.ind-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.ind-card p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ——— TESTIMONIALS ——— */
.testi {
  padding: 7rem 2.5rem;
}

.testi-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.testi-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.testi-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.testi-head h2 em {
  font-style: italic;
  color: var(--sand);
}

.testi-head p {
  font-size: 0.9rem;
  color: rgba(245, 245, 241, 0.5);
  max-width: 280px;
  line-height: 1.7;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.tcard {
  background: rgba(245, 245, 241, 0.05);
  border: 1px solid rgba(245, 245, 241, 0.1);
  border-radius: var(--rd-lg);
  padding: 2rem;
}

.tcard blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.tcard blockquote::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--sand);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.1em;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tcard-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1.5px solid;
}

.tcard-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}

.tcard-role {
  font-size: 0.75rem;
  color: rgba(245, 245, 241, 0.45);
  margin-top: 0.1rem;
}

/* ——— CONTACT ——— */
.contact {
  padding: 7rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-wrap {
  background: var(--cream-mid);
  border: 1.5px solid rgba(28, 27, 24, 0.1);
  border-radius: var(--rd-xl);
  padding: 3.5rem;
}

.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.ch2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
}

.ch2 em {
  font-style: italic;
  color: var(--green);
}

.contact-meta p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
  text-align: right;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ff {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ff label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.ff input,
.ff textarea,
.ff select {
  background: var(--cream);
  border: 1.5px solid rgba(28, 27, 24, 0.14);
  border-radius: var(--rd);
  padding: 0.72rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.ff input:focus,
.ff textarea:focus,
.ff select:focus {
  border-color: var(--green);
}

.ff textarea {
  resize: vertical;
  min-height: 115px;
}

.ff.full {
  margin-bottom: 1rem;
}

.fsubmit {
  width: 100%;
  margin-top: 0.5rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.95rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.fsubmit:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
}

/* ——— FOOTER ——— */
/* Refactored to Tailwind utilities in parts/footer.html */

::placeholder {
  color: var(--sand);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  .device-desktop {
    width: 100%;
    position: relative;
    left: auto;
    transform: none;
  }

  .hero-devices {
    height: auto;
  }

  .device-phone {
    display: none;
  }

  .feature-grid,
  .feature-grid.flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .ind-bento {
    grid-template-columns: 1fr;
  }

  .ind-card.wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-meta p {
    text-align: left;
  }

  .nav-links {
    display: none;
  }

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

  .chart-area {
    grid-template-columns: 1fr;
  }
}