/* =========================================================
   BizOps LLC — Homepage stylesheet
   Light theme, orange accent
   ========================================================= */

:root {
  --bg: #FBF7F2;
  --bg-tint: #FFF7ED;
  --bg-soft: #FFEDD5;
  --white: #FFFFFF;
  --ink: #211B14;
  --ink-soft: #5C5143;
  --ink-mute: #7A6E5F;
  --accent: #F97316;
  --accent-dark: #C2410C;
  --accent-deep: #7C2D12;
  --line: #E9DCCB;
  --line-soft: #F0E6D8;
  --radius: 14px;
  --shadow: 0 18px 40px #211B1414;
  --shadow-soft: 0 8px 22px #211B140D;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--accent-deep);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Buttons ============ */

.btn-primary,
.btn-ghost,
.btn-light,
.cta-btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background-color: transparent;
  color: var(--accent-dark);
  padding: 13px 28px;
  border: 2px solid var(--accent);
}

.btn-ghost:hover {
  background-color: var(--accent);
  color: #FFFFFF;
}

.btn-light {
  background-color: #FFFFFF;
  color: var(--accent-deep);
  padding: 15px 30px;
  border: none;
  font-size: 16px;
}

.btn-light:hover {
  background-color: var(--bg-soft);
  color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============ Two-row header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
  box-shadow: var(--shadow-soft);
}

.header-top {
  padding: 14px 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark,
.footer-wordmark,
.legal-wordmark {
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.wordmark {
  font-size: 28px;
}

.wordmark span,
.footer-wordmark span,
.legal-wordmark span {
  color: var(--accent);
}

.cta-btn {
  background-color: var(--accent);
  color: #FFFFFF;
  padding: 11px 24px;
  font-size: 15px;
}

.cta-btn:hover {
  background-color: var(--accent-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.main-nav {
  border-top: 1px solid var(--line);
  border-bottom: 3px solid var(--accent);
}

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

.nav-links li {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--line);
}

.nav-links li:first-child {
  border-left: 1px solid var(--line);
}

.nav-links a {
  display: block;
  padding: 15px 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
  background-color: var(--bg-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  margin: 10px auto;
  padding: 10px;
  background-color: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ Hero with slanted bottom edge ============ */

.hero {
  background-color: var(--bg-soft);
  background-image: linear-gradient(150deg, #FFEDD5 0%, #FFF7ED 55%, #FFE4C4 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 84px), 0 100%);
  text-align: center;
  padding: 110px 0 190px;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background-color: var(--bg-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Statement section ============ */

.statement-section {
  padding: 110px 0 90px;
  background-color: var(--bg);
}

.statement-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.statement-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}

.statement-copy {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.statement-copy p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ============ Process section ============ */

.process-section {
  padding: 100px 0;
  background-color: var(--bg-tint);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  list-style: none;
  position: relative;
  margin-top: 20px;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 4%;
  right: 4%;
  height: 2px;
  background-color: var(--accent);
}

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

.process-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 6px var(--bg-tint);
  margin-bottom: 22px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ Features (two-column grid) ============ */

.services-section {
  padding: 100px 0;
  background-color: var(--bg);
}

.feature-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.feature-cell {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-cell:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.feature-cell h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-soft);
}

.feature-cell p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============ Client logo strip ============ */

.client-section {
  padding: 70px 0;
  background-color: var(--bg-tint);
}

.client-label {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 34px;
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 12px;
  border-right: 1px solid var(--line-soft);
}

.client-logo:last-child {
  border-right: none;
}

.mark {
  display: inline-block;
  background-color: #B8A88F;
  flex-shrink: 0;
}

.mark-diamond {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}

.mark-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.mark-triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #B8A88F;
  background-color: transparent;
}

.mark-hexagon {
  width: 22px;
  height: 20px;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.mark-square {
  width: 18px;
  height: 18px;
}

.client-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
}

/* ============ Contact section (split CTA + form) ============ */

.contact-section {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.contact-lede {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 34px;
}

.contact-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-line {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

.contact-line:hover {
  color: var(--accent-dark);
}

.contact-form {
  background-color: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-dark);
  min-height: 20px;
}

/* ============ Footer ============ */

.footer-cta {
  background-color: var(--accent);
  color: #FFFFFF;
}

.footer-cta-inner {
  text-align: center;
  padding: 64px 0;
}

.footer-cta h2 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.footer-cta p {
  font-size: 17px;
  margin-bottom: 26px;
  color: #FFFFFF;
}

.footer-main {
  background-color: var(--bg-tint);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-wordmark {
  font-size: 26px;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 320px;
}

.footer-col h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--ink-soft);
}

.footer-col ul a {
  color: var(--ink-soft);
}

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

.footer-legal {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-weight: 700;
  color: var(--accent-dark);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.footer-legal a:hover {
  color: var(--accent-deep);
  border-color: var(--accent-deep);
}

.footer-bottom {
  background-color: var(--bg-tint);
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--ink-mute);
}

/* ============ Scroll reveal ============ */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ Responsive ============ */

@media (max-width: 960px) {
  .hero-title {
    font-size: 42px;
  }

  .statement-title {
    font-size: 32px;
  }

  .statement-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }

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

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

  .client-logo:nth-child(3) {
    border-right: none;
  }

  .client-logo:nth-child(4),
  .client-logo:nth-child(5) {
    border-top: 1px solid var(--line-soft);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 80px 0 150px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-step {
    text-align: left;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }

  .process-num {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .feature-duo {
    grid-template-columns: 1fr;
  }

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

  .client-logo:nth-child(3) {
    border-right: 1px solid var(--line-soft);
  }

  .client-logo:nth-child(5) {
    border-top: 1px solid var(--line-soft);
  }

  .client-logo {
    border-top: 1px solid var(--line-soft);
  }

  .client-logo:nth-child(1),
  .client-logo:nth-child(2) {
    border-top: none;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--line);
  }

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

  .nav-links li {
    border-right: none;
    border-left: none !important;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    text-align: left;
    padding: 14px 4px;
  }
}
