:root {
  --black: #0b0d0a;
  --charcoal: #171a14;
  --green-deep: #2c5a17;
  --green: #559c2c;
  --green-bright: #8bd13f;
  --green-lime: #b6e86a;
  --silver: #cfd4d8;
  --white: #ffffff;
  --off-white: #161f11;
  --surface: #212f19;
  --surface-2: #2a3d22;
  --border-soft: #3a4f2c;
  --text: #eef2ea;
  --text-light: #a3ad96;
  --text-dark: #23261f;
  --text-dark-light: #5b6156;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  color: var(--green-bright);
  background: rgba(85,156,44,0.15);
  border: 1px solid rgba(85,156,44,0.4);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-lime), var(--green));
  color: #10230a;
  box-shadow: 0 6px 18px rgba(85,156,44,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(85,156,44,0.45); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--black);
  border-bottom: 3px solid var(--green-bright);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}

.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-link img { height: 46px; width: auto; }

nav.main-nav {
  display: flex;
  gap: 28px;
}

nav.main-nav a {
  color: var(--silver);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--green-bright);
  border-color: var(--green-bright);
}

.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-lime), var(--green));
  color: #10230a;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(85,156,44,0.4);
}
.call-now-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.call-now-btn .num { display: inline; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-top: 1px solid #2a2f22;
  }
  nav.main-nav.open { max-height: 400px; }
  nav.main-nav a {
    padding: 14px 24px;
    border-bottom: 1px solid #22261c;
    width: 100%;
  }
  .menu-toggle { display: block; }
  .call-now-btn .num { display: none; }
}

/* Hero */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(85,156,44,0.28), transparent 60%);
  pointer-events: none;
}
.hero.hero-photo-bg {
  background-image:
    linear-gradient(90deg, rgba(11,13,10,0.94) 0%, rgba(11,13,10,0.86) 35%, rgba(11,13,10,0.55) 65%, rgba(11,13,10,0.25) 100%),
    url('/images/truecut-lawn-care-okc-01.jpg');
  background-size: cover;
  background-position: center;
  padding: 110px 0;
}
.hero-content {
  position: relative;
  max-width: 640px;
}
.hero-content h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--silver);
  margin: 18px 0 28px;
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--green-bright);
}
.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-badge { text-align: left; }
.hero-badge strong { display: block; font-size: 1.5rem; color: var(--green-bright); }
.hero-badge span { font-size: 0.85rem; color: var(--silver); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .hero.hero-photo-bg {
    padding: 80px 0;
    background-image:
      linear-gradient(180deg, rgba(11,13,10,0.55) 0%, rgba(11,13,10,0.92) 60%),
      url('/images/truecut-lawn-care-okc-01.jpg');
  }
  .hero-content { max-width: 100%; }
}

/* Sections */
section { padding: 70px 0; }
.section-head { max-width: 620px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-light); margin-top: 10px; }

.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-dark .section-head p { color: var(--silver); }

/* Service cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  border: 1px solid var(--border-soft);
}
.card .icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card .icon svg { width: 26px; height: 26px; color: var(--white); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-light); font-size: 0.96rem; }

.card.has-photo { padding: 0; overflow: hidden; }
.card-photo { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.card-body { padding: 24px 28px 28px; }
.card.has-photo .icon { margin-top: -42px; position: relative; z-index: 2; border: 3px solid var(--surface); }

/* Areas served */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.areas-list span {
  background: rgba(139,209,63,0.12);
  border: 1px solid rgba(139,209,63,0.4);
  color: var(--green-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
.section-dark .areas-list span {
  color: var(--green-bright);
  border-color: rgba(139,209,63,0.5);
  background: rgba(139,209,63,0.1);
}

/* Photo strip / gallery */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 700px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
.photo-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  aspect-ratio: 4 / 3;
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.photo-grid a:hover img { transform: scale(1.06); }

/* Reviews */
.review-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  border: 1px solid var(--border-soft);
}
.stars { color: var(--green-bright); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p.quote { font-style: italic; color: var(--text); margin-bottom: 14px; }
.review-card .author { font-weight: 700; font-size: 0.9rem; color: var(--text-light); }

.review-placeholder {
  border: 2px dashed var(--border-soft);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: var(--text-light);
  background: var(--surface);
}

/* Review widget (example mockup) */
.review-widget {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  border: 1px solid var(--border-soft);
}
.review-widget-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}
.review-widget-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-widget-header strong { display: block; font-size: 1.25rem; }
.review-widget-header .stars { margin-bottom: 2px; }
.review-widget-header span.sub { font-size: 0.82rem; color: var(--text-light); }
.review-widget-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .review-widget-scroll { grid-template-columns: 1fr; } }
.review-tile {
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 18px;
}
.review-tile-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-tile-name { font-weight: 700; font-size: 0.9rem; }
.review-tile-date { font-size: 0.75rem; color: var(--text-light); }
.review-tile .stars { font-size: 0.85rem; margin-bottom: 8px; }
.review-tile p { font-size: 0.88rem; color: var(--text); }
.g-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--text-light);
}
.review-widget-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 18px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.value-list { list-style: none; margin-top: 20px; }
.value-list li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.value-list svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: var(--white);
  text-align: center;
  padding: 60px 24px;
  border-radius: var(--radius);
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 26px; }

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .cta-split { grid-template-columns: 1fr; } }
.cta-split-text p { color: var(--text-light); margin: 14px 0 24px; }
.cta-form-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #e9ede4;
}
.cta-form-card h3 { margin-bottom: 16px; }

/* Forms */
.form-grid {
  display: grid;
  gap: 16px;
}
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1.5px solid #d7ddce;
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dark-light); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(139,209,63,0.2);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-status {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
}
.form-status.error { color: #ff6b5e; }
.form-status.success { color: var(--green-bright); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-panel {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #e9ede4;
}
.contact-info-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-info-card h3 { color: var(--green-bright); margin-bottom: 16px; }
.contact-info-row { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.contact-info-row svg { width: 20px; height: 20px; color: var(--green-bright); flex-shrink: 0; }
.success-box {
  display: none;
  background: rgba(85,156,44,0.1);
  border: 1.5px solid var(--green);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
}
.success-box h3 { color: var(--green-deep); margin-bottom: 8px; }
.success-box.show { display: block; }
.form-wrap.hide { display: none; }

/* Footer */
footer.site-footer {
  background: var(--black);
  color: var(--silver);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 30px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); margin-bottom: 14px; font-size: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--green-bright); }
.footer-logo img { height: 42px; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid #262b1f;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
.built-by { color: var(--white); }
.built-by a { text-decoration: underline; color: var(--white); }

/* Chatbot widget */
.chat-launcher {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 900;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: transform 0.15s ease;
}
.chat-launcher:hover { transform: scale(1.06); }
.chat-launcher .avatar-mask {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--green-bright);
  background: var(--black);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.chat-launcher img,
.chat-launcher .close-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat-launcher .close-icon {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  font-size: 1.8rem;
  font-weight: 700;
}
.chat-launcher.open img { display: none; }
.chat-launcher.open .close-icon { display: flex; }
.chat-launcher .ping {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  background: var(--green-bright);
  border-radius: 50%;
  border: 2px solid var(--black);
}

.chat-panel {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 899;
  width: min(360px, calc(100vw - 32px));
  max-height: calc(100vh - 110px);
  background: var(--white);
  color: var(--text-dark);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e9ede4;
}
.chat-panel.open { display: flex; }

.chat-head {
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.chat-head img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--green-bright); }
.chat-head strong { display: block; font-size: 0.9rem; }
.chat-head span { display: block; font-size: 0.74rem; color: var(--green-bright); }

.chat-body {
  padding: 14px 16px;
  overflow: visible;
  flex: 1;
  min-height: 0;
}
.chat-bubble {
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 12px 12px 12px 2px;
  padding: 12px 14px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  max-width: 90%;
}

.chat-body .form-field { margin-bottom: 8px; }
.chat-body .form-field label { margin-bottom: 3px; }
.chat-body .form-field input,
.chat-body .form-field textarea { padding: 10px 12px; }
.chat-body .form-field textarea { min-height: 60px; }
.chat-body .btn-primary { width: 100%; justify-content: center; margin-top: 4px; padding: 11px 26px; }

@media (max-width: 480px) {
  .chat-launcher { width: 58px; height: 58px; bottom: 16px; right: 16px; }
  .chat-panel { right: 16px; bottom: 84px; }
}
