/* ELTIGRELABS Services pages — senior B2B aesthetic, no template */

.svc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.svc-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}
.svc-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.svc-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.svc-nav a:hover { color: rgba(255, 255, 255, 0.98); }
.svc-nav a.active { color: var(--accent, #E07020); }
.svc-cta-mini {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  padding: 6px 12px;
  border: 1px solid rgba(224, 112, 32, 0.4);
  border-radius: 8px;
  color: var(--accent) !important;
}
.svc-cta-mini:hover {
  background: rgba(224, 112, 32, 0.1);
  color: #fff !important;
}
@media (max-width: 640px) {
  .svc-nav { gap: 14px; }
  .svc-nav a:not(.svc-cta-mini) { display: none; }
}

.svc-breadcrumb {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.svc-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}
.svc-breadcrumb li::after { content: " / "; margin-left: 8px; opacity: 0.4; }
.svc-breadcrumb li:last-child::after { content: ""; }
.svc-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.svc-breadcrumb a:hover { color: var(--accent); }
.svc-breadcrumb [aria-current="page"] { color: rgba(255, 255, 255, 0.9); }

.svc-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.svc-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 64px);
  max-width: 880px;
}
.svc-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 18px;
}
.svc-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw + 0.6rem, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.98);
}
.svc-intro {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  max-width: 760px;
}
.svc-hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.svc-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.svc-btn-primary {
  background: linear-gradient(135deg, var(--accent), #CC8040);
  color: #000;
  box-shadow: 0 4px 18px rgba(224, 112, 32, 0.25);
}
.svc-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(224, 112, 32, 0.35);
}
.svc-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.svc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.svc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}
.svc-trust strong { color: rgba(255, 255, 255, 0.9); font-weight: 600; }
.svc-trust .dot { opacity: 0.3; }

.svc-section {
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.svc-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-future);
  margin-bottom: 14px;
}
.svc-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw + 0.6rem, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.96);
  max-width: 760px;
}

.svc-problem {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  letter-spacing: -0.005em;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

.svc-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
}
.svc-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-steps li:hover {
  background: rgba(224, 112, 32, 0.04);
  border-color: rgba(224, 112, 32, 0.3);
  transform: translateX(4px);
}
.svc-step-num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  padding-top: 2px;
}
.svc-step-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.svc-case blockquote {
  position: relative;
  background: linear-gradient(135deg, rgba(224, 112, 32, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(224, 112, 32, 0.18);
  border-radius: 18px;
  padding: 36px 40px 28px;
  max-width: 820px;
}
.svc-quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(224, 112, 32, 0.35);
  position: absolute;
  top: 12px;
  right: 24px;
  user-select: none;
}
.svc-case blockquote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 14px;
}
.svc-case blockquote footer {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.svc-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  max-width: 880px;
  margin-bottom: 24px;
}
.svc-tier {
  position: relative;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 26px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-tier:hover {
  border-color: rgba(224, 112, 32, 0.3);
  transform: translateY(-2px);
}
.svc-tier-featured {
  background: linear-gradient(135deg, rgba(224, 112, 32, 0.08), rgba(37, 244, 238, 0.03));
  border-color: rgba(224, 112, 32, 0.4);
}
.svc-tier-flag {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), #CC8040);
  color: #000;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}
.svc-tier-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
  min-height: 44px;
}
.svc-tier-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.svc-price-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.svc-price-unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.svc-price-monthly {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan-future);
  font-weight: 500;
  margin-left: 8px;
}
.svc-pricing-note {
  max-width: 820px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
}

.svc-faqs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 880px;
}
.svc-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.svc-faq-item[open] { border-color: rgba(224, 112, 32, 0.3); }
.svc-faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.005em;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.svc-faq-item summary::-webkit-details-marker { display: none; }
.svc-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.svc-faq-item[open] summary::after {
  content: "−";
}
.svc-faq-item p {
  padding: 0 22px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.005em;
}

.svc-final-cta {
  text-align: center;
  padding: clamp(64px, 9vw, 120px) 0;
}
.svc-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw + 0.6rem, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.98);
}
.svc-final-cta p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 28px;
}
.svc-final-cta-row {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.svc-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.svc-footer a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.svc-footer a:hover { color: var(--accent); }
.svc-footer-legal {
  max-width: 720px;
  font-size: 10.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* /services/ index page grid */
.svc-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 64px;
}
.svc-index-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-index-card:hover {
  background: rgba(224, 112, 32, 0.04);
  border-color: rgba(224, 112, 32, 0.4);
  transform: translateY(-3px);
}
.svc-index-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--cyan-future);
  text-transform: uppercase;
}
.svc-index-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.svc-index-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
.svc-index-link {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: auto;
}

/* MOBILE */
@media (max-width: 640px) {
  .svc-hero { padding-top: 32px; }
  .svc-section { padding: 48px 0; }
  .svc-h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); margin-bottom: 18px; }
  .svc-intro { font-size: 14.5px; margin-bottom: 24px; }
  .svc-hero-cta { flex-direction: column; }
  .svc-btn { width: 100%; padding: 14px 20px; }
  .svc-trust { font-size: 10.5px; gap: 6px 10px; }
  .svc-trust .dot { display: none; }
  .svc-steps li { padding: 14px 16px; gap: 12px; }
  .svc-step-text { font-size: 14px; }
  .svc-case blockquote { padding: 24px 20px 20px; }
  .svc-case blockquote p { font-size: 17px; }
  .svc-quote-mark { font-size: 56px; right: 16px; }
  .svc-tier { padding: 22px 18px; }
  .svc-faq-item summary { font-size: 14px; padding: 16px 18px; padding-right: 44px; }
  .svc-faq-item p { padding: 0 18px 16px; font-size: 13.5px; }
  .svc-footer { padding: 24px 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .svc-steps li:hover { transform: none; }
  .svc-tier:hover { transform: none; }
  .svc-index-card:hover { transform: none; }
}
