/* ============================================================
   Sowle Ventures — Main Stylesheet
   Light theme matching Figma Make design
   ============================================================ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #15803d;
  /* green-700 */
  --green-dark: #166534;
  /* green-800 */
  --green-light: #16a34a;
  /* green-600 */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --blue-100: #dbeafe;
  --blue-800: #1e40af;
  --purple-100: #ede9fe;
  --purple-800: #5b21b6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  padding: 12px 24px 24px;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-link {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}

.nav-mobile-link:hover {
  color: var(--gray-900);
}

.nav-mobile-cta {
  display: block;
  margin-top: 16px;
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.nav-mobile-cta:hover {
  background: var(--green-dark);
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 128px 24px 80px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, rgba(240, 253, 244, 0.3) 100%);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-blob-1 {
  top: 80px;
  right: -60px;
  width: 384px;
  height: 384px;
  background: var(--green-100);
  filter: blur(80px);
  opacity: 0.3;
}

.hero-blob-2 {
  bottom: 0;
  left: -60px;
  width: 384px;
  height: 384px;
  background: var(--gray-100);
  filter: blur(80px);
  opacity: 0.4;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 2px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #166534;
  margin-bottom: 32px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-heading-accent {
  color: var(--green);
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.2);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-text {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-text:hover {
  color: var(--gray-900);
}

.btn-text-arrow {
  width: 16px;
  height: 16px;
}

/* Stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
  padding-top: 32px;
}

.hero-stat {
  padding-right: 24px;
}

.hero-stat+.hero-stat {
  padding-left: 24px;
  border-left: 1px solid var(--gray-200);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Hero right: Company overview card */
.overview-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.overview-card-header {
  background: linear-gradient(to right, var(--slate-700), var(--slate-800));
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--slate-600);
}

.overview-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.overview-card-badge {
  background: rgba(21, 128, 61, 0.2);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #86efac;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.overview-card-body {
  padding: 32px;
}

.overview-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.overview-card-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.overview-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.overview-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.overview-check {
  width: 20px;
  height: 20px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.overview-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--green);
}

.overview-checklist li span {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

.overview-quote {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  font-style: italic;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}

/* ── SECTION SHARED ── */
section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--gray-900);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subhead {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── ABOUT ── */
#about {
  background: var(--gray-50);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.about-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 400;
}

/* ── LANDTRACK ── */
#landtrack {
  background: var(--white);
}

.lt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.lt-heading-accent {
  color: var(--green);
}

.lt-sub {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.lt-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.lt-cta-icon {
  width: 18px;
  height: 18px;
}

.lt-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lt-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lt-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--green-100);
  border: 1px solid var(--green-200);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
}

.lt-feature-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.lt-feature-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* LandTrack right: sticky tracker */
.lt-right {
  position: sticky;
  top: 104px;
}

/* ── TRACKER CARD (light) ── */
.tracker-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.tracker-header {
  background: linear-gradient(to right, var(--slate-700), var(--slate-800));
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--slate-600);
}

.tracker-header-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.tracker-badge {
  background: rgba(21, 128, 61, 0.2);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #86efac;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

.tracker-tabs {
  display: flex;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.tracker-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--gray-500);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.tracker-tab:hover {
  color: var(--gray-700);
}

.tracker-tab-active {
  background: var(--white) !important;
  color: var(--gray-900) !important;
  border-bottom-color: var(--green) !important;
}

.tracker-panel {
  padding: 20px;
}

.tracker-panel-hidden {
  display: none;
}

/* Tracker rows — 5-col default (Master) */
.tc-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr 1fr;
  gap: 8px;
  padding: 9px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
  align-items: center;
}

.tc-6col {
  grid-template-columns: 0.9fr 1.1fr 0.8fr 0.8fr 0.7fr 1.2fr;
}

.tc-4col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.tc-4col .col-span-2 {
  grid-column: span 2;
}

.tc-head {
  border-bottom: 1px solid var(--gray-200);
  border-radius: 0;
  margin-bottom: 8px;
  padding-bottom: 8px;
  background: transparent;
}

.tc-head span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.tc-row:not(.tc-head) {
  border-bottom: 1px solid var(--gray-100);
}

.tc-row:not(.tc-head):last-child {
  border-bottom: none;
}

.tc-row:not(.tc-head) span {
  font-size: 12px;
  color: var(--gray-700);
}

.tc-bold {
  font-weight: 600 !important;
  color: var(--gray-900) !important;
}

.tc-mono {
  font-family: 'Courier New', monospace;
  font-size: 11px !important;
  letter-spacing: 0.02em;
}

.tc-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.tc-hbp {
  background: var(--blue-100);
  color: var(--blue-800);
}

.tc-pt {
  background: var(--purple-100);
  color: var(--purple-800);
}

.tracker-footer {
  padding: 12px 20px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray-500);
}

.tracker-footer-sep {
  color: var(--gray-300);
}

.tracker-footer-active {
  font-weight: 600;
  color: var(--green);
}

.tracker-disclaimer {
  margin-top: 12px;
  font-size: 11px;
  color: var(--gray-400);
  font-style: italic;
  text-align: center;
}

/* ── LANDTRACK PRICING ── */
.lt-pricing {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 48px;
}

.lt-pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.lt-pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.lt-pricing-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.lt-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.lt-phase {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px;
}

.lt-phase-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.lt-phase-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.lt-phase-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.lt-phase-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 16px;
}

.lt-price-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
}

.lt-price-per {
  font-size: 14px;
  color: var(--gray-500);
}

.lt-phase-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 12px;
}

/* ── SERVICES ── */
#services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.services-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}

.services-check {
  width: 20px;
  height: 20px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--green);
}

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.services-cta:hover {
  color: var(--green-dark);
}

.services-cta svg {
  width: 16px;
  height: 16px;
}

/* Services right: credentials card */
.credentials-card {
  background: linear-gradient(135deg, var(--slate-700) 0%, var(--slate-800) 100%);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.credentials-accent {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--green);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.credentials-inner {
  position: relative;
}

.cred-block {
  margin-bottom: 32px;
}

.cred-num {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.cred-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.cred-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

/* ── CONTACT ── */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-reasons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-reasons li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  margin-top: 6px;
}

.contact-reason-text {
  font-size: 14px;
  line-height: 1.65;
}

.contact-reason-text strong {
  color: var(--gray-900);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.contact-reason-text span {
  color: var(--gray-600);
  font-weight: 400;
}

/* Contact form card */
.contact-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.form-required {
  color: var(--green);
}

.form-input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--gray-900);
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.12);
}

.form-input::placeholder {
  color: var(--gray-400);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* Honeypot */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  margin-top: 4px;
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.2);
}

.form-submit:hover:not(:disabled) {
  background: var(--green-dark);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form state messages */
.form-message {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.form-message.success {
  display: block;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: #15803d;
}

.form-message.error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

/* ── FOOTER ── */
footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .lt-pricing {
    padding: 36px 28px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-heading-accent {
    display: inline;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .lt-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lt-right {
    position: static;
  }

  .lt-phases {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 72px 20px;
  }

  .hero {
    padding: 96px 20px 64px;
  }

  .lt-pricing {
    padding: 28px 20px;
  }

  .lt-phases {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .hero-stats {
    gap: 0;
  }

  .tc-6col {
    grid-template-columns: 1fr 1fr 0.8fr;
  }

  .tc-6col span:nth-child(n+4) {
    display: none;
  }

  .tc-4col .col-span-2 {
    grid-column: span 1;
  }
}