/* ============================================================
   SMARTOUCH — SERVICE PAGE CSS
   Shared styles for all service pages
   ============================================================ */

/* ----------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------- */
.breadcrumb { padding: calc(var(--nav) + 16px) 0 0; position: relative; z-index: 2; }
.bc-inner { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--w40); }
.bc-inner a { color: var(--w40); transition: color .15s var(--ease-out-quart); text-decoration: none; }
@media (hover: hover) {
  .bc-inner a:hover { color: var(--w80); }
}
.bc-sep { color: var(--w20); }
.bc-cur { font-weight: 600; }

/* ----------------------------------------------------------
   SECTION TAGS
   ---------------------------------------------------------- */
.sec-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--w40);
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.sec-h {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 15px;
  color: var(--w60);
  font-weight: 300;
  line-height: 1.7;
  max-width: 540px;
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.svc-hero { padding: 24px 0 80px; position: relative; overflow: hidden; }
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.svc-hero-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 10px;
  border-radius: 99px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.svc-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pdot 2s ease-in-out infinite;
}
@keyframes pdot {
  0%,100% { box-shadow: 0 0 5px currentColor; }
  50%      { box-shadow: 0 0 14px currentColor; }
}

.svc-h {
  font-family: var(--fd);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .9;
  margin-bottom: 10px;
}
.svc-tagline { font-size: 15px; font-weight: 500; margin-bottom: 14px; }
.svc-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--w60);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .18s var(--ease-out-quart);
  text-decoration: none;
}
@media (hover: hover) {
  .btn-p:hover { transform: translateY(-2px); }
}

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s var(--ease-out-quart);
  background: transparent;
  text-decoration: none;
}
@media (hover: hover) {
  .btn-s:hover { transform: translateY(-1px); }
}

.hero-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.htag { font-size: 10.5px; font-weight: 600; padding: 5px 12px; border-radius: 7px; }

/* ----------------------------------------------------------
   VISUAL AREA
   ---------------------------------------------------------- */
.svc-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: sglow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sglow {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%      { transform: translate(-50%,-50%) scale(1.12); }
}
.svc-icon-big {
  font-size: 120px;
  position: relative;
  z-index: 2;
  animation: svcfloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 40px currentColor);
}
@keyframes svcfloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-14px) rotate(-3deg); }
}

/* ----------------------------------------------------------
   SERVICE ITEMS LIST
   ---------------------------------------------------------- */
.svc-list-sec { padding: 0 0 88px; }
.svc-list {
  border: 1px solid var(--b);
  border-radius: var(--r3);
  overflow: hidden;
  margin-top: 44px;
}
.svc-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 26px;
  border-bottom: 1px solid var(--b);
  transition: background .15s var(--ease-out-quart);
}
.svc-item:last-child { border-bottom: none; }
@media (hover: hover) {
  .svc-item:hover { background: var(--card); }
}

.si-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.si-title { font-family: var(--fd); font-size: 15px; font-weight: 700; color: var(--w); margin-bottom: 5px; }
.si-desc { font-size: 13px; color: var(--w40); line-height: 1.65; }
.si-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.si-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--b);
  color: var(--w40);
}

/* ----------------------------------------------------------
   FEATURE CARDS
   ---------------------------------------------------------- */
.feat-sec { padding: 0 0 88px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 44px;
}
.fc {
  border-radius: var(--r2);
  border: 1px solid var(--b);
  background: var(--card);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: background .22s var(--ease-out-quart), border-color .22s var(--ease-out-quart), transform .22s var(--ease-out-quart);
}
@media (hover: hover) {
  .fc:hover { background: var(--card2); border-color: var(--b2); transform: translateY(-3px); }
  .fc:hover::after { opacity: 1; }
}
.fc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity .22s var(--ease-out-quart);
}
.fc-icon { font-size: 26px; margin-bottom: 12px; }
.fc-title { font-family: var(--fd); font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.fc-desc { font-size: 12px; color: var(--w40); line-height: 1.65; }

/* ----------------------------------------------------------
   OTHER SERVICES STRIP
   ---------------------------------------------------------- */
.other-svc { background: var(--s1); padding: 60px 0; }
.os-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
  margin-top: 28px;
}
.os-card {
  border-radius: var(--r);
  border: 1px solid var(--b);
  background: var(--card);
  padding: 16px 14px;
  transition: background .18s var(--ease-out-quart), border-color .18s var(--ease-out-quart), transform .18s var(--ease-out-quart);
  text-decoration: none;
  display: block;
}
@media (hover: hover) {
  .os-card:hover { background: var(--card2); border-color: var(--b2); transform: translateY(-2px); }
}
.os-icon { font-size: 22px; margin-bottom: 8px; }
.os-name { font-family: var(--fd); font-size: 12px; font-weight: 700; color: var(--w); margin-bottom: 3px; }
.os-desc { font-size: 10.5px; color: var(--w40); }

/* Aurora blobs */
.aurora { position: absolute; border-radius: 50%; pointer-events: none; }
@keyframes ab {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-20px,10px) scale(.97); }
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .svc-hero-in { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .os-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .svc-visual { display: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .si-tags { display: none; }
  .os-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .feat-grid { grid-template-columns: 1fr; }
  .svc-list .si-desc { font-size: 12px; }
  .os-grid { grid-template-columns: repeat(2,1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── Client strip (reused from product.css pattern) ── */
.clients-strip {
  padding: 44px 0;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  background: var(--s1);
}
.cs-label {
  font-size: 11px;
  color: var(--w40);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 24px;
}
.cs-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cs-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--b);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--w60);
}
.cs-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.cs-logo {
  /* White card to show real brand colors */
  background: #fff !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  padding: 4px 6px;
  overflow: hidden;
}
.cs-img {
  width: 100%; height: 100%;
  object-fit: contain;
  /* No filter — real brand colors */
}

/* ── 3D Hero element ── */
.svc-3d {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.svc-3d-img {
  width: 140px; height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.4));
  animation: float3d 5s ease-in-out infinite;
}
@keyframes float3d {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}
