:root {
  --clr-bg: #FAF6F0;
  --clr-surface: #FFFFFF;
  --clr-text-main: #2C363F;
  --clr-text-muted: #5E6973;
  --clr-primary: #D96C4A;
  --clr-primary-hover: #C25B3A;
  --clr-secondary: #E3B5A4;
  --clr-accent: #F2A65A;
  --clr-border: #E8E0D5;
  --font-base: 'Quicksand', sans-serif;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-subtle: 0 4px 20px rgba(44, 54, 63, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-base);
  background-color: var(--clr-bg);
  color: var(--clr-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img.fluid-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--clr-text-main);
}

/* Masthead */
.sprint-masthead {
  background-color: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.masthead-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--clr-primary);
}

.sprint-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--clr-text-main);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--clr-primary);
}

/* Hero */
.hero-split-zone {
  max-width: 1200px;
  margin: 4.7rem auto 3.2rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.hero-subhead {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  margin-bottom: 2.5rem;
}

.action-trigger-btn {
  display: inline-block;
  background-color: var(--clr-primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.action-trigger-btn:hover {
  background-color: var(--clr-primary-hover);
}

.onboard-micro-steps {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-weight: 600;
}

.step-badge {
  background-color: var(--clr-secondary);
  color: var(--clr-text-main);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
}

.edge-rounded {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
}

/* Platform */
.deep-platform-module {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.module-header-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.platform-capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.capability-card {
  background-color: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.card-hero-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body-pad {
  padding: 2rem;
  flex-grow: 1;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--clr-primary);
}

.card-desc {
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.feature-check-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--clr-text-muted);
}

.feature-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: bold;
}

.text-heavy-card {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .text-heavy-card {
    grid-column: span 2;
  }
}

/* Benefits Aside */
.quick-benefits-strip {
  background-color: var(--clr-secondary);
  padding: 4rem 2rem;
  margin: 2rem 0 5rem;
}

.benefits-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.benefit-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-text p {
  font-size: 1.1rem;
}

.shadow-box {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
}

/* Story */
.firm-story-section {
  max-width: 1200px;
  margin: 5rem auto 7rem;
  padding: 0 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rounded-heavy {
  border-radius: 24px;
}

.story-narrative p {
  margin-bottom: 1.5rem;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}

.inline-txt-link {
  color: var(--clr-primary);
  text-decoration: underline;
  text-decoration-color: var(--clr-accent);
  text-underline-offset: 3px;
}

.data-metrics-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--clr-border);
  padding-top: 2rem;
}

.metric-box {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Feedback */
.client-voice-arena {
  background-color: #F5EFEB;
  padding: 6rem 2rem;
}

.text-center {
  text-align: center;
}

.feedback-masonry {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.review-tile {
  background: var(--clr-surface);
  padding: 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-subtle);
}

.review-quote {
  font-style: italic;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.reviewer-id {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
}

.r-name {
  font-weight: 700;
  font-size: 1rem;
}

.r-role {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* Connect */
.engage-contact-block {
  max-width: 1000px;
  margin: 7rem auto;
  padding: 0 2rem;
}

.contact-split {
  display: flex;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.contact-form-wrapper {
  flex: 1;
  padding: 3rem;
}

.contact-micro-detail {
  font-size: 0.9rem;
  color: var(--clr-accent);
  margin-bottom: 2rem;
  font-weight: 600;
}

.inquiry-form .input-group {
  margin-bottom: 1.5rem;
}

.inquiry-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.full-width-btn {
  width: 100%;
  text-align: center;
}

.contact-visual-wrapper {
  flex: 1;
  display: none;
}

.tall-cover {
  height: 100%;
}

@media (min-width: 768px) {
  .contact-visual-wrapper {
    display: block;
  }
}

/* Footer */
.sprint-base-footer {
  background-color: #242B32;
  color: #fff;
  padding: 4rem 2rem 2rem;
}

.footer-main-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-secondary);
  display: block;
  margin-bottom: 1rem;
}

.footer-address, .footer-col p {
  color: #A0ABB5;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--clr-surface);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a, .footer-col a {
  color: #A0ABB5;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover, .footer-col a:hover {
  color: var(--clr-primary);
}

.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #3A4550;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #A0ABB5;
  font-size: 0.85rem;
}

.noise-disclaimer {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .hero-split-zone, .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .benefits-inner {
    flex-direction: column;
    text-align: center;
  }
  .sprint-nav {
    display: none;
  }
}
