/* =========================================================
   DOOSMO HOMEPAGE 2.0
   Isolated redesign styles. Production homepage unaffected.
   ========================================================= */

.home-v2-hero {
  min-height: 760px;
  padding: 105px 0 120px;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  gap: 82px;
}

.home-v2-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 5.4vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.home-v2-hero-copy .hero-description {
  max-width: 690px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.home-v2-hero-copy .hero-actions {
  margin: 38px 0 42px;
}

/* Trust strip */

.home-v2-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home-v2-trust > div {
  min-width: 0;
  padding: 18px 18px 18px 0;
}

.home-v2-trust > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--border);
}

.home-v2-trust strong,
.home-v2-trust span {
  display: block;
}

.home-v2-trust strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.8rem;
}

.home-v2-trust span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Report card */

.home-v2-report-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background:
    linear-gradient(
      160deg,
      rgba(18, 28, 46, 0.98),
      rgba(8, 13, 23, 0.98)
    );
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.44),
    inset 0 1px rgba(255, 255, 255, 0.03);
}

.home-v2-report-header {
  padding: 25px 26px 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.home-v2-report-header > div {
  display: grid;
  gap: 3px;
}

.home-v2-report-label {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.home-v2-report-header strong {
  font-size: 1.02rem;
}

.home-v2-report-status {
  padding: 7px 10px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  border: 1px solid rgba(140, 231, 176, 0.16);
  border-radius: 999px;
  color: #8ce7b0;
  background: rgba(89, 213, 138, 0.05);
  font-size: 0.69rem;
  font-weight: 800;
}

.home-v2-report-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #59d58a;
  box-shadow: 0 0 13px rgba(89, 213, 138, 0.8);
}

/* Report metadata */

.home-v2-report-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.home-v2-report-meta > div {
  padding: 17px 26px;
  display: grid;
  gap: 3px;
}

.home-v2-report-meta > div + div {
  border-left: 1px solid var(--border);
}

.home-v2-report-meta span {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.home-v2-report-meta strong {
  font-size: 0.8rem;
}

/* Report sections */

.home-v2-report-sections {
  padding: 12px 26px;
}

.home-v2-report-item {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.home-v2-report-item:last-child {
  border-bottom: 0;
}

.home-v2-report-item > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--accent);
  background: rgba(84, 213, 232, 0.08);
  font-size: 0.68rem;
  font-weight: 850;
}

.home-v2-report-item strong,
.home-v2-report-item small {
  display: block;
}

.home-v2-report-item strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.home-v2-report-item small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.home-v2-report-item > i {
  color: #8ce7b0;
  font-size: 0.8rem;
  font-style: normal;
}

/* Report footer */

.home-v2-report-footer {
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--border);
  background: rgba(84, 213, 232, 0.025);
}

.home-v2-report-footer span {
  color: var(--muted);
  font-size: 0.78rem;
}

.home-v2-report-footer strong {
  color: var(--accent);
  font-size: 0.82rem;
}

/* Responsive */

@media (max-width: 1000px) {
  .home-v2-hero {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .home-v2-report-card {
    width: min(100%, 700px);
  }
}

@media (max-width: 700px) {
  .home-v2-trust {
    grid-template-columns: 1fr;
  }

  .home-v2-trust > div {
    padding: 14px 0;
  }

  .home-v2-trust > div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 560px) {
  .home-v2-hero {
    min-height: auto;
    padding: 55px 0 75px;
  }

  .home-v2-hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 3.65rem);
  }

  .home-v2-report-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-v2-report-meta {
    grid-template-columns: 1fr;
  }

  .home-v2-report-meta > div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .home-v2-report-item {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .home-v2-report-item > i {
    display: none;
  }

  .home-v2-report-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   HOMEPAGE 2.0 — DELIVERABLES
   ========================================================= */

.home-v2-deliverables {
  border-top: 1px solid var(--border);
}

.home-v2-section-intro {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.home-v2-section-intro h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.home-v2-section-intro h2 span {
  display: block;
  color: var(--muted);
}

.home-v2-section-intro > p {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.home-v2-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-v2-deliverable-card {
  min-height: 285px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.018);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.home-v2-deliverable-card:hover {
  transform: translateY(-3px);
  border-color: rgba(84, 213, 232, 0.24);
  background: rgba(255, 255, 255, 0.028);
}

.home-v2-deliverable-card.featured {
  border-color: rgba(84, 213, 232, 0.22);
  background:
    linear-gradient(
      145deg,
      rgba(84, 213, 232, 0.055),
      rgba(255, 255, 255, 0.018)
    );
}

.home-v2-deliverable-top {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.home-v2-deliverable-number {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.home-v2-deliverable-tag {
  padding: 5px 8px;
  border: 1px solid rgba(84, 213, 232, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(84, 213, 232, 0.04);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.home-v2-deliverable-card h3 {
  margin: 46px 0 15px;
  font-size: 1.32rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.home-v2-deliverable-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.home-v2-deliverable-detail {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.home-v2-deliverable-detail span {
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.64rem;
}

.home-v2-deliverable-summary {
  margin-top: 34px;
  padding: 23px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(84, 213, 232, 0.15);
  border-radius: 18px;
  background: rgba(84, 213, 232, 0.025);
}

.home-v2-deliverable-summary > div {
  display: grid;
  gap: 3px;
}

.home-v2-deliverable-summary > div:last-child {
  text-align: right;
}

.home-v2-deliverable-summary span:not(.home-v2-summary-arrow) {
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.home-v2-deliverable-summary strong {
  font-size: 0.88rem;
}

.home-v2-summary-arrow {
  color: var(--accent);
  font-size: 1.3rem;
}


/* Deliverables responsive */

@media (max-width: 1000px) {
  .home-v2-section-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .home-v2-deliverable-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .home-v2-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .home-v2-deliverable-card {
    min-height: auto;
  }

  .home-v2-deliverable-card h3 {
    margin-top: 32px;
  }

  .home-v2-deliverable-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-v2-summary-arrow {
    transform: rotate(90deg);
  }

  .home-v2-deliverable-summary > div:last-child {
    text-align: left;
  }
}


/* =========================================================
   HOMEPAGE 2.0 — PRICING
   ========================================================= */

.home-v2-pricing {
  border-top: 1px solid var(--border);
}

.home-v2-pricing-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(360px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.home-v2-price-card,
.home-v2-volume-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.018);
}

.home-v2-price-card {
  padding: 34px;
  border-color: rgba(84, 213, 232, 0.2);
  background:
    linear-gradient(
      150deg,
      rgba(84, 213, 232, 0.045),
      rgba(255, 255, 255, 0.015)
    );
}

.home-v2-price-top {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: flex-start;
}

.home-v2-price-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.home-v2-price-top h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.home-v2-price-badge {
  padding: 6px 9px;
  border: 1px solid rgba(84, 213, 232, 0.17);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(84, 213, 232, 0.04);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.home-v2-price-amount {
  margin: 34px 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.home-v2-price-currency {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 800;
}

.home-v2-price-amount strong {
  font-size: clamp(4.8rem, 8vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.home-v2-price-unit {
  align-self: flex-end;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.home-v2-price-summary {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.home-v2-price-features {
  margin-bottom: 28px;
  border-top: 1px solid var(--border);
}

.home-v2-price-features > div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.home-v2-price-features span {
  color: var(--accent);
  font-weight: 900;
}

.home-v2-price-features strong {
  font-size: 0.9rem;
}

.home-v2-price-meta {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(84, 213, 232, 0.15);
  border-radius: 15px;
  background: rgba(84, 213, 232, 0.025);
}

.home-v2-price-meta > div {
  padding: 17px 18px;
  display: grid;
  gap: 4px;
}

.home-v2-price-meta > div + div {
  border-left: 1px solid var(--border);
}

.home-v2-price-meta span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.home-v2-price-meta strong {
  font-size: 0.82rem;
}

.home-v2-price-cta {
  min-width: 165px;
}


/* Portfolio / recurring processing */

.home-v2-volume-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-v2-volume-card h3 {
  max-width: 430px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.home-v2-volume-card > div:first-child > p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.home-v2-volume-list {
  margin: 30px 0;
  border-top: 1px solid var(--border);
}

.home-v2-volume-list > div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.home-v2-volume-list span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 850;
}

.home-v2-volume-list strong {
  font-size: 0.88rem;
}

.home-v2-volume-card .button {
  align-self: flex-start;
}



/* =========================================================
   HOMEPAGE 2.0 — PROCESS
   ========================================================= */

.home-v2-process {
  border-top: 1px solid var(--border);
}

.home-v2-process-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(
      160deg,
      rgba(18, 28, 46, 0.7),
      rgba(8, 13, 23, 0.45)
    );
}

.home-v2-process-rail {
  position: absolute;
  top: 72px;
  bottom: 72px;
  left: 55px;
  width: 1px;
  background:
    linear-gradient(
      to bottom,
      rgba(84, 213, 232, 0.45),
      rgba(84, 213, 232, 0.08)
    );
}

.home-v2-process-step {
  position: relative;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 190px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.home-v2-process-step:last-child {
  border-bottom: 0;
}

.home-v2-process-marker {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 213, 232, 0.2);
  border-radius: 13px;
  color: var(--accent);
  background: #0c1724;
  font-size: 0.7rem;
  font-weight: 850;
}

.home-v2-process-marker.complete {
  color: #8ce7b0;
  border-color: rgba(140, 231, 176, 0.2);
}

.home-v2-process-content {
  max-width: 690px;
}

.home-v2-process-label {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.home-v2-process-content h3 {
  margin: 0 0 9px;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.home-v2-process-content > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.home-v2-process-state {
  min-width: 0;
  padding-left: 24px;
  display: grid;
  gap: 4px;
  border-left: 1px solid var(--border);
}

.home-v2-process-state span {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.home-v2-process-state strong {
  font-size: 0.82rem;
}

.home-v2-process-state.complete strong {
  color: #8ce7b0;
}

.home-v2-process-result {
  margin-top: 24px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(84, 213, 232, 0.15);
  border-radius: 18px;
  background: rgba(84, 213, 232, 0.025);
}

.home-v2-process-result > div:not(.home-v2-process-result-line) {
  display: grid;
  gap: 3px;
}

.home-v2-process-result span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.home-v2-process-result strong {
  font-size: 0.85rem;
}

.home-v2-process-result-line {
  width: 1px;
  height: 30px;
  background: var(--border);
}

@media (max-width: 850px) {
  .home-v2-process-step {
    grid-template-columns: 48px 1fr;
  }

  .home-v2-process-state {
    grid-column: 2;
    padding: 16px 0 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .home-v2-process-rail {
    left: 42px;
  }

  .home-v2-process-step {
    padding: 24px 20px;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
  }

  .home-v2-process-marker {
    width: 42px;
    height: 42px;
  }

  .home-v2-process-result {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-v2-process-result-line {
    width: 100%;
    height: 1px;
  }
}

