/* ──────────────────────────────────────────────────────────
   service.css — CoZone Coworking landing page
   Assumes tokens.css + global.css already loaded
   ────────────────────────────────────────────────────────── */

/* ── Reset / utilities ─────────────────────────────────── */
.lp-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* ── Minimal landing-page nav ───────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 19, 16, 0.10);
}

.lp-nav img { display: block; }

/* ── Hero ───────────────────────────────────────────────── */
.lp-hero {
  background: var(--dark-teal);
  color: var(--ink-inv);
  padding: clamp(120px, 18vh, 180px) clamp(20px, 6vw, 80px) clamp(80px, 12vh, 130px);
}

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

.lp-eyebrow {
  color: var(--accent-dark);
  display: block;
  margin-bottom: 24px;
}

.lp-headline {
  font-size: clamp(36px, 6vw, 88px);
  color: var(--ink-inv);
  margin-bottom: 28px;
  line-height: 0.95;
}

.lp-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--sub-dark);
  max-width: 56ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* Benefit bullets */
.lp-benefits {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-inv);
  opacity: 0.88;
  line-height: 1.5;
}

.lp-benefit-icon {
  flex-shrink: 0;
  font-size: 18px;
  margin-top: 1px;
}

/* Hero CTA */
.lp-cta-hero {
  font-size: 16px;
  padding: 15px 28px;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 transparent;
}

.lp-cta-hero:hover {
  filter: brightness(1.1);
  box-shadow: 0 16px 40px -12px rgba(14, 158, 153, 0.55);
}

/* ── Proof bar ──────────────────────────────────────────── */
.lp-proof-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.lp-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px clamp(24px, 3.5vw, 52px);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  margin: 16px clamp(12px, 2vw, 32px);
}

.lp-proof-check {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
}

/* ── What You Get ───────────────────────────────────────── */
.lp-features {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 64px);
  background: var(--cream);
}

.lp-section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.lp-section-header .eyebrow {
  display: block;
  margin-bottom: 18px;
}

.lp-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.05;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(24px, 3.5vw, 48px);
  max-width: 1000px;
  margin: 0 auto;
}

.lp-feature-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-feature-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  flex-shrink: 0;
}

.lp-feature-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.lp-feature-item p {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.65;
}

/* ── Pain points ────────────────────────────────────────── */
.lp-pain {
  background: var(--dark-teal);
  color: var(--ink-inv);
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 64px);
}

.lp-pain .lp-section-header { text-align: center; margin-bottom: clamp(48px, 6vw, 72px); }

.lp-pain .lp-section-title { color: var(--ink-inv); }

.lp-pain .eyebrow { color: var(--accent-dark); }

.lp-pain-table {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.lp-pain-col-head {
  padding: 18px 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-pain-col-head.before {
  background: rgba(255, 255, 255, 0.04);
  color: #e07070;
  border-bottom: 1px solid var(--line-dark);
}

.lp-pain-col-head.after {
  background: rgba(14, 158, 153, 0.12);
  color: var(--accent-dark);
  border-bottom: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.lp-pain-row {
  display: contents;
}

.lp-pain-cell {
  padding: 16px 28px;
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 1px solid var(--line-dark);
}

.lp-pain-cell:last-child,
.lp-pain-cell:nth-last-child(2) {
  border-bottom: none;
}

.lp-pain-cell.before {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(233, 243, 242, 0.72);
}

.lp-pain-cell.before::before {
  content: '✗ ';
  color: #e07070;
  font-weight: 700;
}

.lp-pain-cell.after {
  background: rgba(14, 158, 153, 0.07);
  color: rgba(233, 243, 242, 0.88);
  border-left: 1px solid var(--line-dark);
}

.lp-pain-cell.after::before {
  content: '✓ ';
  color: var(--accent-dark);
  font-weight: 700;
}

/* ── Testimonials ───────────────────────────────────────── */
.lp-testimonials {
  background: #F7F4F0;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 64px);
}

.lp-testimonials .lp-section-header { margin-bottom: clamp(48px, 6vw, 72px); }

.lp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.lp-testi-card {
  background: var(--cream);
  border: 1px solid rgba(23, 19, 16, 0.09);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.lp-testi-card:hover {
  box-shadow: 0 12px 40px -10px rgba(7, 32, 31, 0.12);
  transform: translateY(-2px);
}

.lp-testi-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.85;
  flex: 1;
  position: relative;
}

.lp-testi-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: -12px;
  left: -6px;
  pointer-events: none;
}

.lp-testi-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-testi-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.lp-testi-role {
  font-size: 13px;
  color: var(--sub);
}

/* ── Lead form section ──────────────────────────────────── */
.lp-form-section {
  background: var(--cream);
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 64px);
}

.lp-form-section .lp-section-header { text-align: center; margin-bottom: 12px; }

.lp-form-subline {
  text-align: center;
  font-size: 16px;
  color: var(--sub);
  max-width: 52ch;
  margin: 0 auto clamp(40px, 5vw, 60px);
  line-height: 1.6;
}

.lp-form-el {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.form-input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(23, 19, 16, 0.18);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(23, 19, 16, 0.32);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 158, 153, 0.12);
}

/* Radio group — pill-style */
.lp-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.lp-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.lp-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lp-radio span {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(23, 19, 16, 0.18);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}

.lp-radio input[type="radio"]:checked + span {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.lp-radio:hover span {
  border-color: var(--accent);
}

.lp-submit {
  font-size: 16px;
  padding: 15px 28px;
  width: 100%;
  justify-content: center;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  margin-top: 8px;
  transition: filter 0.3s, transform 0.3s, box-shadow 0.3s;
}

.lp-submit:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -10px rgba(14, 158, 153, 0.55);
}

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

/* Success message */
.lp-form-success {
  max-width: 540px;
  margin: 0 auto;
  background: rgba(14, 158, 153, 0.08);
  border: 1.5px solid var(--accent);
  border-radius: var(--r-md);
  padding: 28px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-teal);
  line-height: 1.6;
  text-align: center;
}

/* ── Minimal footer ─────────────────────────────────────── */
.lp-foot {
  background: var(--dark-teal);
  color: var(--ink-inv);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 64px) clamp(32px, 4vw, 56px);
}

.lp-foot-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.lp-foot-inner p {
  font-size: 15px;
  color: var(--sub-dark);
  line-height: 1.7;
}

.lp-foot-inner a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-foot-inner a:hover {
  color: var(--ink-inv);
}

/* ── Scroll-reveal (reuse global .reveal) ──────────────── */
/* Already defined in global.css — no duplication needed */

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-testi-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-testi-grid    { grid-template-columns: 1fr; }

  .lp-pain-table {
    grid-template-columns: 1fr;
    border-radius: var(--r-md);
  }

  /* Stack before/after vertically on mobile */
  .lp-pain-col-head.after,
  .lp-pain-cell.after {
    border-left: none;
    border-top: 1px solid var(--line-dark);
  }

  .lp-pain-col-head.after { margin-top: 24px; }

  .lp-proof-bar { flex-direction: column; align-items: flex-start; }
  .lp-proof-item { margin: 8px clamp(12px, 5vw, 32px); }

  .lp-radio-group { flex-direction: column; }
  .lp-radio span  { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-testi-card:hover { transform: none; }
  .lp-cta-hero:hover, .lp-submit:hover { transform: none; }
}
