/* Stil pentru grilă servicii tip card, 3 coloane */
/* Două coloane verticale, câte 3 carduri pe coloană, centrate */
/* Un singur rând, cardurile ocupă toată lățimea, sub hero/statistici */
.services-cards-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  margin: 0 auto 40px auto;
  max-width: 100vw;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}
.services-cards-grid > .svc-card {
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 260px;
  margin: 0;
}
@media (max-width: 1200px) {
  .services-cards-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .services-cards-grid {
    gap: 12px;
    padding-left: 8px;
    padding-right: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .services-cards-grid > .svc-card {
    min-width: 180px;
    max-width: 100vw;
  }
}
@media (max-width: 900px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 18px 0;
    max-width: 98vw;
  }
  .services-cards-grid > .svc-card {
    min-width: 180px;
    max-width: 100vw;
  }
}
@media (max-width: 1100px) {
  .services-cards-grid {
    gap: 16px;
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .services-cards-grid {
    gap: 12px;
  }
  .services-cards-grid > .svc-card {
    min-width: 220px;
    max-width: 1fr;
  }
}
@media (max-width: 700px) {
  .services-cards-grid {
    gap: 10px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .services-cards-grid > .svc-card {
    min-width: 180px;
    max-width: 100vw;
  }
}

.svc-card {
  background: #f6f6f6;
  border-radius: 8px;
  box-shadow: 0 2px 12px #0001;
  padding: 32px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ececec;
  min-height: 170px;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
  text-decoration: none;
  color: #222;
  text-align: center;
}
.svc-card:hover {
  box-shadow: 0 4px 24px #cc1b1b22;
  border: 1.5px solid #cc1b1b;
}
.svc-card-icon {
  font-size: 2.1rem;
  margin-bottom: 8px;
  margin-left: 2px;
  line-height: 1;
}
.svc-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  border-bottom: 3px solid #222;
  padding-bottom: 2px;
  display: inline-block;
  text-align: center;
}
.svc-card-desc {
  font-size: 1rem;
  color: #444;
  margin-top: 2px;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .services-cards-grid {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .services-cards-grid {
    gap: 10px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .svc-card {
    min-width: 260px;
    padding: 22px 12px 16px 12px;
  }
}
/* Stil simplu pentru lista serviciilor fără poze */
.services-list-simple {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.services-list-simple li {
  background: var(--bg2, #181818);
  border-radius: 10px;
  padding: 18px 28px;
  font-size: 1.18rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 12px #0001;
  transition: background 0.2s;
}
.services-list-simple li a {
  color: var(--red-bright, #CC1B1B);
  text-decoration: none;
  font-family: var(--font-display, inherit);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.services-list-simple li:hover {
  background: var(--red-bright, #CC1B1B);
}
.services-list-simple li:hover a {
  color: #fff;
}
/* ============================================
   SECURITY BOX - PAGE SECTIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO SECTION */
.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-2xl) var(--spacing-2xl) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 75% 50%, rgba(204, 27, 27, 0.1) 0%, transparent 65%),
              radial-gradient(ellipse 25% 25% at 15% 85%, rgba(204, 27, 27, 0.05) 0%, transparent 60%);
}

.hex-grid {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  aspect-ratio: 1;
  opacity: 0.055;
  pointer-events: none;
}

.hex-grid svg {
  width: 100%;
  height: 100%;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 600;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-tag::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--red-bright);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title span {
  color: var(--red-bright);
  text-shadow: 0 0 40px var(--red-glow);
}

.hero-ghost {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 34px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 42px;
  letter-spacing: 0.2px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* SERVICES SECTION */
.section {
  padding: 100px var(--spacing-2xl);
  position: relative;
}

.section-label {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 54px;
}

.section-title em {
  font-style: normal;
  color: var(--red-bright);
}

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

/* WHY SECTION */
.why-section {
  padding: 100px var(--spacing-2xl);
  background: var(--bg2);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotate-ring 20s linear infinite;
}

.why-ring:nth-child(1) {
  width: 80%;
  height: 80%;
  border-color: rgba(204, 27, 27, 0.16);
  animation-duration: 30s;
}

.why-ring:nth-child(2) {
  width: 60%;
  height: 60%;
  border-color: rgba(204, 27, 27, 0.12);
  animation-direction: reverse;
  animation-duration: 20s;
}

.why-ring:nth-child(3) {
  width: 40%;
  height: 40%;
  border-color: rgba(204, 27, 27, 0.26);
  animation-duration: 12s;
}

.why-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--red-bright);
}

.why-center {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 108px;
  height: 108px;
  background: rgba(204, 27, 27, 0.08);
  border: 1px solid rgba(204, 27, 27, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

.why-center-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--red-bright);
}

.why-center-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
}

@keyframes rotate-ring {
  to { transform: rotate(360deg); }
}

.features-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: padding-left 0.3s ease;
}

.feature-item:hover {
  padding-left: 8px;
}

.feature-item:last-child {
  border-bottom: none;
}

.feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(204, 27, 27, 0.1);
  border: 1px solid rgba(204, 27, 27, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.feat-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.feat-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  font-weight: 300;
}

/* CTA SECTION */
.cta-section {
  padding: 110px var(--spacing-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(204, 27, 27, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta-desc {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 460px;
  margin: 0 auto 42px;
  position: relative;
  z-index: 1;
  line-height: 1.75;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* SERVICE PAGE */
.svc-page {
  padding: 120px var(--spacing-2xl) 80px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-weight: 600;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.back-btn:hover {
  color: var(--red-bright);
}

.back-btn::before {
  content: '←';
}

.pg-tag {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--red-bright);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pg-tag::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--red-bright);
}

.pg-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.pg-title span {
  color: var(--red-bright);
}

.pg-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.55);
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 60px;
}

.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sp-content h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--red-bright);
  margin-top: 28px;
}

.sp-content h3:first-child {
  margin-top: 0;
}

.sp-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 4px;
}

.sp-features {
  list-style: none;
  margin-top: 8px;
}

.sp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 15px;
  color: var(--text-body);
  font-weight: 400;
}

.sp-features li::before {
  content: '▸';
  color: var(--red-bright);
  font-size: 9px;
  flex-shrink: 0;
}

.sp-visual {
  background: var(--bg2);
  border: 1px solid rgba(204, 27, 27, 0.15);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  aspect-ratio: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.sp-big-icon {
  font-size: 80px;
}

.sp-vlabel {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-align: center;
}
