/* ============================================================
   Website Development page — page.css
   Extends ../style.css — shared tokens and components defined there
   ============================================================ */

/* ── Service page hero ────────────────────────────────────── */
.svc-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  padding-top: 4rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.svc-hero-body {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.svc-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.svc-hero-h1 {
  font-size: clamp(2rem, 4.5vw, 4.25rem);
  font-size: clamp(2rem, min(4.5vw, 8svh), 4.25rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
  max-width: 1060px;
  /* gradient inherited from style.css h1 rule */
}

.svc-hero-tag {
  display: block;
  font-size: clamp(1.25rem, 2.4vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-top: 0.3em;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.42) 20%, rgba(192, 208, 255, 0.42) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.svc-hero-sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 1.5rem;
}


/* ── Breadcrumb ─────────────────────────────────────────────── */
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.svc-bc-home {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s;
}

.svc-bc-home:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.svc-bc-current {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.875rem;
  background: var(--accent);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  white-space: nowrap;
}

.svc-bc-arrow {
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.8;
}


/* ── Options section — pricing card style ─────────────────── */
.options-section {
  background: var(--bg);
}

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

/* Wrapper handles the badge overflow */
.opc-wrap {
  position: relative;
  padding-top: 1rem;
}

.opc-wrap--plain {
  padding-top: 0;
}

/* badge sits on the card's top border — positioned relative to .option-pricing-card */
.opc-badge {
  position: absolute;
  top: -0.65rem;
  left: 1.5rem;
  background: var(--accent);
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 0.475rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  z-index: 1;
}

.option-pricing-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 2rem 2rem 1.875rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
  position: relative;
}

.option-pricing-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: var(--surface2);
}

.opc-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.opc-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.opc-from {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.opc-amount {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.opc-timeline {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border2);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 1.375rem;
  white-space: nowrap;
}

.opc-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.75rem;
}

.opc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.375rem;
  background: var(--white);
  color: #000;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.18s, opacity 0.18s;
  cursor: pointer;
  -webkit-text-fill-color: #000;
}

.opc-cta:hover {
  background: var(--text);
  opacity: 0.9;
}

.opc-cta--accent {
  background: var(--accent);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.opc-cta--accent:hover {
  background: var(--accent-dk);
  opacity: 1;
}

.opc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.opc-cta--accent .opc-arrow {
  background: rgba(255, 255, 255, 0.2);
}


/* ── Deliverables ──────────────────────────────────────────── */
.deliverables-section {
  background: var(--surface);
}

.deliverables-head {
  margin-bottom: 4rem;
  max-width: 640px;
}

.deliverables-intro {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1rem;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.deliverable-item {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.deliverable-item:hover {
  background: var(--surface2);
}

.deliverable-icon {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 1.25rem;
  user-select: none;
}

.deliverable-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

.deliverable-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.85;
}


/* ── Process steps list ────────────────────────────────────── */
.steps-list {
  border-top: 1px solid var(--border);
}

.step-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, padding-left 0.2s, padding-right 0.2s;
}

.step-row:hover {
  background: rgba(59, 130, 246, 0.03);
  padding-left: 1rem;
  padding-right: 1rem;
}

.step-left {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}

.step-num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  flex-shrink: 0;
}

.step-name {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.85;
  padding-top: 0.25rem;
}


/* ── SEO & Ads readiness ───────────────────────────────────── */
.readiness-section {
  background: var(--surface2);
}

.readiness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.readiness-left {
  position: sticky;
  top: 5.5rem;
}

.readiness-body {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.readiness-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.readiness-card {
  background: var(--surface2);
  padding: 2rem 2.25rem;
  transition: background 0.2s;
}

.readiness-card:hover {
  background: var(--surface);
}

.readiness-card-label {
  display: block;
  font-size: 0.575rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.readiness-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}


/* ── Who it's for section ──────────────────────────────────── */
.fit-section {
  background: var(--bg);
}

.fit-head {
  margin-bottom: 3.5rem;
}


/* ── Active nav link ───────────────────────────────────────── */
.nav-dropdown a.nav-active {
  color: var(--accent);
}


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

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

  .readiness-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .readiness-left {
    position: static;
  }
}

@media (max-width: 900px) {
  .step-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .step-left {
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .options-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .step-row {
    padding: 1.75rem 0;
  }
}
