/* =========================================================
   ThinkEzIT — Security services page
   Page-specific components only; shared layout/tokens live
   in styles.css.
   ========================================================= */

/* ---------- Hero ---------- */
.sec-hero { padding: 64px 0 88px; background: var(--ink-2); }
.sec-hero__grid { max-width: 720px; }
.sec-hero .breadcrumb { margin-bottom: 18px; }
.sec-hero h1 { color: var(--on-dark); font-size: clamp(2rem, 3.6vw, 2.8rem); }

/* ---------- Bento ---------- */
.sec-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.sec-bento__card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 26px; display: flex; flex-direction: column; gap: 8px;
  grid-column: span 1.333;
}
.sec-bento__card--lg { grid-column: span 2; padding: 32px; }
.sec-bento__icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 6px;
  background: linear-gradient(155deg, var(--cta) 0%, var(--cta-deep) 100%); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 20px -10px rgba(221,98,38,0.55);
  animation: sec-icon-bob 3.2s ease-in-out infinite;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.sec-bento__icon svg { width: 22px; height: 22px; }
.sec-bento__card:hover .sec-bento__icon { animation-play-state: paused; transform: scale(1.15) rotate(-8deg); }
.sec-bento__card:nth-child(1) .sec-bento__icon { animation-delay: 0s; }
.sec-bento__card:nth-child(2) .sec-bento__icon { animation-delay: 0.25s; }
.sec-bento__card:nth-child(3) .sec-bento__icon { animation-delay: 0.5s; }
.sec-bento__card:nth-child(4) .sec-bento__icon { animation-delay: 0.75s; }
.sec-bento__card:nth-child(5) .sec-bento__icon { animation-delay: 1s; }
.sec-bento__card:nth-child(6) .sec-bento__icon { animation-delay: 1.25s; }
.sec-bento__card:nth-child(7) .sec-bento__icon { animation-delay: 1.5s; }
@keyframes sec-icon-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (prefers-reduced-motion: reduce) {
  .sec-bento__icon { animation: none; }
}
.sec-bento__card h3 { font-size: 1.02rem; margin-bottom: 0; color: var(--ink); }
.sec-included .sec-bento__card p { margin: 0; color: var(--ink-2); font-size: 0.9rem; }

/* ---------- Checklist ---------- */
.sec-fit__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.sec-checklist { display: flex; flex-direction: column; gap: 18px; }
.sec-checklist li { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--on-dark); }
.sec-check {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--cta); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700;
}

/* ---------- Steps ---------- */
.sec-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sec-step { text-align: center; }
.sec-step__num {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--cta-tint); color: var(--cta-deep);
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
}
.sec-step h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
.sec-step p { margin: 0; color: var(--accent); }

/* ---------- Closing CTA ---------- */
.sec-cta { background: var(--cta); padding: 64px 0; }
.sec-cta h2 { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .sec-bento { grid-template-columns: repeat(2, 1fr); }
  .sec-bento__card, .sec-bento__card--lg { grid-column: span 1; }
  .sec-fit__grid { grid-template-columns: 1fr; gap: 28px; }
  .sec-steps__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .sec-bento { grid-template-columns: 1fr; }
}
