@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

body {
  background: #fff;
  color: #000;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #000; border-radius: 999px; }
* { scrollbar-width: thin; scrollbar-color: #000 #f1f5f9; }

/* ================================
   HERO
================================ */
.sv-hero {
  padding-top: 68px;
  min-height: 52vh;
  background: #000;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.sv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: svGrid 14s linear infinite;
}

@keyframes svGrid {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.sv-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 10%;
  max-width: 900px;
}

.sv-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.sv-hero-tag span {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  display: inline-block;
}

.sv-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(24px);
  animation: svIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

.sv-hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.28);
}

.sv-hero p {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  line-height: 1.7;
  opacity: 0;
  animation: svIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.25s forwards;
}

@keyframes svIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ================================
   SERVICES SECTION
================================ */
.sv-services {
  padding: 80px 10%;
  background: #fff;
}

.sv-services-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 40px;
}

.sv-services-intro h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.5px;
  color: #000;
  line-height: 1;
}

.sv-services-intro p {
  max-width: 400px;
  font-size: 14px;
  color: rgba(0,0,0,0.45);
  line-height: 1.7;
  font-weight: 300;
  text-align: right;
}

/* ================================
   CARDS GRID
================================ */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.sv-card {
  background: #fff;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: svCardIn 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}

.sv-card:nth-child(1)  { animation-delay: 0.05s; }
.sv-card:nth-child(2)  { animation-delay: 0.10s; }
.sv-card:nth-child(3)  { animation-delay: 0.15s; }
.sv-card:nth-child(4)  { animation-delay: 0.20s; }
.sv-card:nth-child(5)  { animation-delay: 0.25s; }
.sv-card:nth-child(6)  { animation-delay: 0.30s; }
.sv-card:nth-child(7)  { animation-delay: 0.35s; }
.sv-card:nth-child(8)  { animation-delay: 0.40s; }
.sv-card:nth-child(9)  { animation-delay: 0.45s; }
.sv-card:nth-child(10) { animation-delay: 0.50s; }
.sv-card:nth-child(11) { animation-delay: 0.55s; }
.sv-card:nth-child(12) { animation-delay: 0.60s; }
.sv-card:nth-child(13) { animation-delay: 0.65s; }
.sv-card:nth-child(14) { animation-delay: 0.70s; }
.sv-card:nth-child(15) { animation-delay: 0.75s; }
.sv-card:nth-child(16) { animation-delay: 0.80s; }

@keyframes svCardIn {
  to { opacity: 1; transform: translateY(0); }
}

.sv-card:hover { background: #f8f8f8; }

.sv-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.2);
}

.sv-icon {
  width: 44px;
  height: 44px;
  background: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.sv-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.sv-card p {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  line-height: 1.6;
  font-weight: 300;
}

.sv-arrow {
  margin-top: auto;
  font-size: 12px;
  color: rgba(0,0,0,0.25);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sv-card:hover .sv-arrow {
  color: #000;
  gap: 10px;
}

/* ================================
   CTA
================================ */
.sv-cta {
  margin: 0 10% 80px;
  background: #000;
  border-radius: 12px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sv-cta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1;
}

.sv-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  font-weight: 300;
}

.sv-cta-btn {
  flex-shrink: 0;
  padding: 14px 32px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.sv-cta-btn:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .sv-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-cta  { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .sv-grid { grid-template-columns: 1fr; }
  .sv-services-intro { flex-direction: column; align-items: flex-start; }
  .sv-services-intro p { text-align: left; }
  .sv-cta { margin: 0 5% 60px; padding: 36px 28px; }
}

.neeedsmaall{
  display: flex;
  align-items: center;
  justify-content: center;
}