:root {
  --brand: #2b2623;
  --brand-light: #3d3430;
  --brand-muted: #6b5e59;
  --accent: #c8a96e;
  --accent-light: #e8d5a8;
  --accent-pale: rgba(200, 169, 110, 0.08);
  --white: #ffffff;
  --off-white: #fafaf8;
  --asana-red: #e8534a;
  --asana-pale: rgba(232, 83, 74, 0.08);
  --border: rgba(43, 38, 35, 0.1);
  --border-strong: rgba(43, 38, 35, 0.18);
  --shadow-soft: 0 4px 24px rgba(43, 38, 35, 0.07);
  --shadow-med: 0 12px 48px rgba(43, 38, 35, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43, 38, 35, 0.25);
}

.btn-accent {
  background: var(--accent);
  color: var(--brand);
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--brand);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 0.975rem;
  border-radius: 10px;
}

/* ── HERO ── */
.hero {
  padding: 120px 0 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

@media (max-width: 767px) {
  .hero {}
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(43, 38, 35, 0.06) 1px, transparent 0);
  background-size: 36px 36px;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 500px;
  min-height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.3);
  font-size: 0.80em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--brand);
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--brand-muted);
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-trust-dots {
  display: flex;
  gap: 4px;
}

.trust-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--white);
  font-weight: 700;
  margin-left: -8px;
}

.trust-dot:first-child {
  margin-left: 0;
}

.hero-trust p {
  font-size: 0.8125rem;
  color: var(--brand-muted);
}

.hero-trust strong {
  color: var(--brand);
}

/* VS Card */
.vs-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-med);
  overflow: hidden;
  animation: cardFloat 7s ease-in-out infinite;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.3deg);
  }
}

.vs-card-header {
  background: var(--brand);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vs-card-title {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

.vs-badge {
  background: var(--accent);
  color: var(--brand);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.vs-card-body {
  padding: 1.25rem;
}

.vs-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.vs-row:last-child {
  margin-bottom: 0;
}

.vs-cell {
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
}

.vs-cell.clopad {
  background: var(--accent-pale);
  color: var(--brand);
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.vs-cell.asana {
  background: var(--asana-pale);
  color: #8b3b37;
  border: 1px solid rgba(232, 83, 74, 0.15);
}

.vs-divider {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--brand-muted);
}

.vs-labels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.vs-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 0.85rem;
}

.vs-lbl.c {
  color: var(--accent);
}

.vs-lbl.a {
  color: var(--asana-red);
}

.vs-check {
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.vs-check.yes {
  background: #22c55e;
  color: white;
}

.vs-check.no {
  background: #e5e7eb;
  color: #9ca3af;
}

/* ── SECTION COMMONS ── */
section {
  padding: 100px 0;
}


@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}


.section-wrap {
  max-width: 1280px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h2 {

  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--brand);
  margin-bottom: 1rem;
}

h2 em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--brand-muted);
  max-width: 620px;
}

/* ── PAIN POINTS ── */
.pain {
  background: var(--brand);
}

.pain-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1280px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.pain h2 {
  color: var(--white);
}

.pain h2 em {
  color: var(--accent);
}

.pain .section-label {
  color: rgba(200, 169, 110, 0.8);
}

.pain-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1rem;
  max-width: 420px;
}

.pain-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.pain-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.2s;
}

.pain-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 169, 110, 0.3);
}

.pain-x {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.pain-x img {
  max-width: 32px;
  width: 100%;
  max-height: 32px;
}

.pain-item-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.pain-item-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.pain-item-text p:last-child {
  margin: 0;
}

/* ── BIG COMPARISON TABLE ── */
.comparison {
  background: var(--off-white);
}

.comp-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.comp-intro .section-sub {
  margin: 1rem auto 0;
}

.comp-table-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-med);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table thead tr {
  background: var(--brand);
}

.comp-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
}

.th-feature {
  color: rgba(255, 255, 255, 0.5);
  width: 40%;
}

.th-clopad {
  color: var(--accent);
}

.th-asana {
  color: rgba(255, 255, 255, 0.6);
}

.comp-table tbody tr {
  border-top: 1px solid var(--border);
}

.comp-table tbody tr:nth-child(odd) {
  background: var(--white);
}

.comp-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.comp-table tbody tr:hover {
  background: rgba(200, 169, 110, 0.04);
}

.comp-table td {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  vertical-align: middle;
}

.td-feature {
  font-weight: 600;
  color: var(--brand);
}

.td-clopad {
  color: var(--brand);
}

.td-asana {
  color: var(--brand-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pill-yes {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.pill-no {
  background: rgba(232, 83, 74, 0.08);
  color: #b91c1c;
}

.pill-partial {
  background: rgba(200, 169, 110, 0.12);
  color: #92680a;
}

.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.feat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.feat-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  box-shadow: var(--shadow-med);
  transform: translateY(-4px);
}

.feat-card:hover::after {
  transform: scaleX(1);
}

.feat-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: #d6b98c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.feat-icon img {
  max-width: 32px;
  width: 100%;
}

.feat-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.feat-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brand-muted);
}

.feat-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── SWITCH SECTION ── */
.switch {
  background: var(--off-white);
}

.switch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.switch-steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.step:hover {
  border-color: rgba(200, 169, 110, 0.4);
  transform: translateX(4px);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.3rem;
}

.step-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-muted);
  margin: 0;
  ;
}

.switch-quote {
  background: var(--brand);
  border-radius: 20px;
  padding: 2.75rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.switch-quote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;

  font-size: 8rem;
  color: rgba(200, 169, 110, 0.12);
  line-height: 1;
}

.switch-quote blockquote {
  position: relative;
  z-index: 2;

  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.quote-author {
  position: relative;
  z-index: 2;
}

.quote-author strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.quote-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.switch-benefits {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 2;
}

.switch-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.90);
}

.switch-benefit::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── USE CASES ── */
.use-cases {
  background: var(--brand);
}

.use-cases h2 {
  color: var(--white);
}

.use-cases h2 em {
  color: var(--accent);
}

.use-cases .section-label {
  color: rgba(200, 169, 110, 0.8);
}

.use-cases .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.use-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s;
}

.use-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-3px);
}

.use-card-emoji {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.use-card-emoji img {
  max-width: 32px;
  width: 100%;
}

.use-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.use-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.80);
}

/* ── FAQ ── */
.faq-section {
  background: var(--off-white);
}

.faq-section .section-label {
  text-align: center;
}

.faq-section h2 {
  text-align: center;
}

.faq-inner {
  max-width: 860px;
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
}

.faq-list {
  margin-top: 3rem;
}

details {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 1.6rem 1.8rem;
}

details:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

summary {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  line-height: 1.4;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  min-width: 12px;
  max-width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

details[open] .faq-icon {

  border-color: var(--brand);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-ans {
  padding: 1.4rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--brand-muted);
  margin-bottom: 0;
}

/* ── CTA ── */
.cta-final {
  background: var(--brand);
  text-align: center;
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
}

.cta-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring1 {
  width: 400px;
  height: 400px;
}

.ring2 {
  width: 650px;
  height: 650px;
  border-color: rgba(255, 255, 255, 0.03);
}

.ring3 {
  width: 900px;
  height: 900px;
  border-color: rgba(255, 255, 255, 0.02);
}

.cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  padding: 0 2rem;
  margin: 0 auto;
}

.cta-vs-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.cta-vs-pill .gold {
  color: var(--accent);
}

.cta-final h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.cta-final p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 1.25rem;
  margin-bottom: 0 !important;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}


/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left>* {
  animation: fadeUp 0.65s ease forwards;
  opacity: 0;
}

.hero-left> :nth-child(1) {
  animation-delay: 0.1s;
}

.hero-left> :nth-child(2) {
  animation-delay: 0.22s;
}

.hero-left> :nth-child(3) {
  animation-delay: 0.34s;
}

.hero-left> :nth-child(4) {
  animation-delay: 0.46s;
}

.hero-left> :nth-child(5) {
  animation-delay: 0.58s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .pain-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .switch-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .use-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {

  .features-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .nav-links a:not(.btn) {
    display: none;
  }

  .comp-table thead {
    display: none;
  }

  .comp-table td {
    display: block;
    padding: 0.6rem 1rem;
  }

  .td-feature {
    background: var(--brand);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
  }
}




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



@media (max-width: 767px) {

  .faq-section {
    padding: 50px 0;
  }

}



@media (max-width: 320px) {
  h1 {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
  }
}