/* ========================================
   BINI Studio — Service Detail Page Styles
   ======================================== */

/* --- Service Hero --- */
.svc-hero {
  min-height: 70vh;
  min-height: 70dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 5rem;
  position: relative;
}

.svc-hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.svc-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
  transition: color .3s;
}

.svc-back:hover { color: var(--accent); }

.svc-num {
  font-family: var(--font-h);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 1rem;
}

.svc-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
}

.svc-title .accent { color: var(--accent); }

.svc-tagline {
  font-size: clamp(.9rem, 1.3vw, 1.1rem);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

/* --- About Section --- */
.svc-about {
  padding: clamp(5rem, 12vh, 8rem) 3rem;
  border-top: 1px solid #1a1a1a;
}

.svc-about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.svc-about-tag {
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.svc-about-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 2rem;
}

.svc-about-desc {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.svc-about-desc:last-child { margin-bottom: 0; }

.svc-highlights {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.svc-highlight {
  background: var(--bg2);
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}

.svc-highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.svc-highlight:hover::before { transform: scaleY(1); }
.svc-highlight:hover { background: #161616; }

.svc-highlight-val {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: .3rem;
  letter-spacing: -.02em;
}

.svc-highlight-val .accent { color: var(--accent); }

.svc-highlight-label {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: .05em;
}

/* --- Features Section --- */
.svc-features {
  padding: clamp(5rem, 12vh, 8rem) 3rem;
  border-top: 1px solid #1a1a1a;
}

.svc-features-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.svc-features-tag {
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.svc-features-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 3rem;
}

.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.svc-feature {
  background: var(--bg2);
  padding: clamp(2rem, 3.5vw, 3rem);
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

.svc-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 243, 29, .06), transparent);
  opacity: 0;
  transition: opacity .5s;
}

.svc-feature:hover::before { opacity: 1; }
.svc-feature:hover { background: #161616; }

.svc-feature-num {
  font-family: var(--font-h);
  font-size: .65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .2em;
  margin-bottom: 1.5rem;
}

.svc-feature-name {
  font-family: var(--font-h);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  margin-bottom: .8rem;
  transition: color .3s;
}

.svc-feature:hover .svc-feature-name { color: var(--accent); }

.svc-feature-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* --- Process Section --- */
.svc-process {
  padding: clamp(5rem, 12vh, 8rem) 3rem;
  background: var(--bg2);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.svc-process-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.svc-process-tag {
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.svc-process-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 3rem;
}

.svc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.svc-step { position: relative; }

.svc-step-num {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: rgba(201, 243, 29, .12);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.svc-step-name {
  font-family: var(--font-h);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  margin-bottom: .8rem;
}

.svc-step-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* --- Deliverables Section --- */
.svc-deliverables {
  padding: clamp(5rem, 12vh, 8rem) 3rem;
}

.svc-deliverables-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.svc-deliverables-tag {
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.svc-deliverables-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}

.svc-deliverables-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.svc-deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-deliverables-list li {
  font-size: .9rem;
  color: var(--muted);
  padding: 1rem 0;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 300;
  transition: color .3s;
}

.svc-deliverables-list li:first-child { border-top: 1px solid #1a1a1a; }
.svc-deliverables-list li:hover { color: var(--text); }

.svc-deliverables-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- CTA Section --- */
.svc-cta {
  text-align: center;
  padding: clamp(6rem, 15vh, 10rem) 3rem;
  border-top: 1px solid #1a1a1a;
}

.svc-cta-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
}

.svc-cta-title .accent { color: var(--accent); }

.svc-cta-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  padding: 1.2rem 3rem;
  border-radius: 100px;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.svc-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(201, 243, 29, .25);
}

.svc-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform .3s;
}

.svc-cta-btn:hover svg { transform: translateX(5px); }

/* --- Footer (simple) --- */
footer { padding: 3rem; margin-top: 0; }
.footer-bottom { max-width: 1400px; margin: 0 auto; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .svc-hero { padding: 0 2rem 4rem; }
  .svc-about { padding: clamp(4rem, 8vh, 6rem) 2rem; }
  .svc-about-inner { grid-template-columns: 1fr; }
  .svc-features { padding: clamp(4rem, 8vh, 6rem) 2rem; }
  .svc-features-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process { padding: clamp(4rem, 8vh, 6rem) 2rem; }
  .svc-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-deliverables { padding: clamp(4rem, 8vh, 6rem) 2rem; }
  .svc-deliverables-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .svc-hero { padding: 0 1.2rem 3rem; min-height: 60vh; }
  .svc-title { font-size: 7vw; overflow-wrap: break-word; word-break: break-word; }
  .svc-num { font-size: clamp(2.5rem, 12vw, 4rem); }
  .svc-about { padding: clamp(3rem, 6vh, 5rem) 1.2rem; }
  .svc-features { padding: clamp(3rem, 6vh, 5rem) 1.2rem; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .svc-process { padding: clamp(3rem, 6vh, 5rem) 1.2rem; }
  .svc-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-deliverables { padding: clamp(3rem, 6vh, 5rem) 1.2rem; }
  .svc-cta { padding: clamp(4rem, 10vh, 8rem) 1.2rem; }
}

@media (max-width: 400px) {
  .svc-title { font-size: 6.5vw; }
}

@media (max-width: 340px) {
  .svc-title { font-size: 5.8vw; }
}

@media (hover: none) {
  .svc-feature, .svc-cta-btn, .svc-back { cursor: pointer; }
}
