/* SERVER1.GE VPS STYLE SCOPE 
  Variables & Custom Components 
*/
:root {
  --srv1-primary: #2a62fe;
  --srv1-primary-dark: #1a4bd6;
  --srv1-dark: #03063a;
  --srv1-dark-overlay: rgba(3, 6, 58, 0.9);
  --srv1-text: #616a72;
  --srv1-light: #f9fbfd;
  --srv1-border: #e6e8ec;
  --srv1-white: #ffffff;
  --srv1-font: "Firago", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.srv1-vps-root-wrapper {
  font-family: var(--srv1-font);
  color: var(--srv1-dark);
  line-height: 1.6;
  background-color: var(--srv1-white);
}

.srv1-vps-root-wrapper a {
  text-decoration: none;
  transition: all 0.2s ease;
}

/* SECTION UTILS */
.srv1-vps-section {
  padding: 80px 0;
}
.srv1-vps-bg-light { background-color: var(--srv1-light); }
.srv1-vps-bg-dark { background-color: var(--srv1-dark); color: white; }
.srv1-bg-soft-blue { background-color: rgba(42, 98, 254, 0.05); }

/* TYPOGRAPHY */
.srv1-vps-h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.srv1-vps-h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--srv1-dark);
  margin-bottom: 1rem;
}
.srv1-text-gradient {
  background: linear-gradient(90deg, #2a62fe 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.srv1-vps-lead {
  font-size: 1.15rem;
  color: #b0b8c1;
  max-width: 600px;
}
.srv1-vps-section .text-white-50 { color: rgba(255,255,255,0.6) !important; }

/* HERO SECTION */
.srv1-vps-hero {
  position: relative;
  background-color: var(--srv1-dark);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}
.srv1-vps-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 70% 50%, #1a4bd6 0%, #03063a 60%);
  opacity: 0.3;
}
.srv1-vps-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  font-size: 0.9rem;
}
.srv1-vps-breadcrumb li a { color: rgba(255,255,255,0.6); }
.srv1-vps-breadcrumb li.active { color: white; margin-left: 0.5rem; }
.srv1-vps-breadcrumb li.active::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(255,255,255,0.4);
}
.srv1-vps-badge span {
  background: rgba(42, 98, 254, 0.2);
  color: #4facfe;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.srv1-vps-trust-line {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1.5rem;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTONS */
.srv1-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}
.srv1-btn-lg { padding: 15px 35px; font-size: 1.1rem; }
.srv1-btn-primary {
  background-color: var(--srv1-primary);
  color: white;
}
.srv1-btn-primary:hover {
  background-color: var(--srv1-primary-dark);
  transform: translateY(-2px);
  color: white;
}
.srv1-btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: white;
}
.srv1-btn-outline:hover {
  border-color: white;
  background-color: rgba(255,255,255,0.05);
  color: white;
}
.srv1-btn-outline-light {
  border-color: white;
  color: white;
}
.srv1-btn-outline-light:hover {
  background-color: white;
  color: var(--srv1-dark);
}

/* CARDS */
.srv1-vps-card {
  background: white;
  border: 1px solid var(--srv1-border);
  border-radius: 12px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.srv1-vps-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.srv1-card-managed { border-top: 5px solid var(--srv1-primary); }
.srv1-card-unmanaged { border-top: 5px solid var(--srv1-dark); }

.srv1-card-header h3 { font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--srv1-dark); }
.srv1-badge-pill { 
  background-color: rgba(42, 98, 254, 0.1); color: var(--srv1-primary); 
  padding: 4px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: bold;
}
.srv1-badge-pill-outline { 
  border: 1px solid var(--srv1-dark); color: var(--srv1-dark); 
  padding: 3px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: bold;
}
.srv1-card-body { flex-grow: 1; margin: 25px 0; }
.srv1-card-desc { color: var(--srv1-text); margin-bottom: 20px; font-size: 0.95rem; }
.srv1-feature-list { list-style: none; padding: 0; margin: 0; }
.srv1-feature-list li { margin-bottom: 12px; font-size: 0.95rem; color: var(--srv1-dark); }
.srv1-feature-list li i { color: var(--srv1-primary); margin-right: 8px; }
.srv1-ideal-for { font-size: 0.85rem; color: var(--srv1-text); font-style: italic; margin-bottom: 15px; }

/* QUIZ */
.srv1-quiz-container { min-height: 250px; }
.srv1-quiz-step h4 { color: var(--srv1-dark); font-weight: 600; }
.quiz-btn { border-color: var(--srv1-border); color: var(--srv1-dark); min-width: 150px; }
.quiz-btn:hover { background-color: var(--srv1-primary); color: white; border-color: var(--srv1-primary); }

/* TABLE */
.srv1-compare-table-wrapper { border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.srv1-compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: white; margin-bottom: 0; }
.srv1-compare-table th, .srv1-compare-table td { padding: 18px 25px; border-bottom: 1px solid var(--srv1-border); text-align: center; vertical-align: middle; }
.srv1-compare-table th { background: #f4f6f8; color: var(--srv1-dark); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; }
.srv1-compare-table th.text-start { text-align: left; }
.srv1-compare-table td:first-child { text-align: left; font-weight: 500; color: var(--srv1-dark); width: 40%; }
.col-highlight-managed { background-color: rgba(42, 98, 254, 0.03); border-left: 1px solid var(--srv1-border); border-right: 1px solid var(--srv1-border); }
.srv1-icon-check { color: #00b894; font-weight: bold; }
.srv1-icon-user { color: #616a72; }

/* BENEFITS & LOCATIONS */
.srv1-benefit-card { padding: 30px; border-radius: 10px; border: 1px solid var(--srv1-border); height: 100%; transition: 0.3s; }
.srv1-benefit-card:hover { border-color: var(--srv1-primary); box-shadow: 0 5px 15px rgba(42, 98, 254, 0.1); }
.srv1-icon-box { color: var(--srv1-primary); margin-bottom: 15px; }
.srv1-benefit-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--srv1-dark); }
.srv1-benefit-card p { font-size: 0.9rem; color: var(--srv1-text); margin: 0; }

.srv1-loc-card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.srv1-flag-icon { font-size: 2rem; }

/* ACCORDION (FAQ & Security) */
.srv1-accordion { border: 1px solid var(--srv1-border); border-radius: 8px; overflow: hidden; }
.srv1-acc-item { border-bottom: 1px solid var(--srv1-border); background: white; }
.srv1-acc-item:last-child { border-bottom: none; }
.srv1-acc-header { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--srv1-dark); transition: background 0.2s; }
.srv1-acc-header:hover { background: #f9fbfd; }
.srv1-acc-body { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: var(--srv1-text); font-size: 0.95rem; }
.srv1-acc-item.active .srv1-acc-body { padding-bottom: 20px; }
.srv1-acc-item.active .srv1-icon-plus { transform: rotate(45deg); }
.srv1-icon-plus { font-style: normal; font-size: 1.2rem; transition: transform 0.3s; color: var(--srv1-primary); }

/* FAQ GRID SPECIFIC */
.srv1-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.srv1-faq-item { background: white; border: 1px solid var(--srv1-border); border-radius: 8px; overflow: hidden; }
.srv1-faq-q { padding: 20px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.srv1-faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--srv1-text); font-size: 0.9rem; border-top: 1px solid transparent; }
.srv1-faq-item.active .srv1-faq-a { padding-bottom: 20px; border-top-color: var(--srv1-border); max-height: 150px; }
.srv1-faq-item.active .toggle-icon { transform: rotate(180deg); }
.toggle-icon { font-size: 0.8rem; color: var(--srv1-primary); transition: transform 0.3s; }

@media (max-width: 991px) {
  .srv1-vps-hero { text-align: center; padding: 60px 0; }
  .srv1-vps-hero-content { margin-bottom: 40px; }
  .srv1-vps-breadcrumb { justify-content: center; }
  .srv1-vps-trust-line { justify-content: center; }
  .d-flex.flex-wrap { justify-content: center; }
  .srv1-faq-grid { grid-template-columns: 1fr; }
}

/* SVG ANIMATION */
.srv1-svg-blink { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.srv1-svg-connector-pulse { animation: dash 3s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -210; } }
.srv1-hero-svg { width: 100%; height: auto; max-width: 500px; }
.srv1-svg-node { transition: transform 0.3s ease; cursor: default; }
.srv1-svg-node:hover { transform: translate(100px, 150px) scale(1.1); } 
/* Note: inline transform logic in CSS is tricky for translated SVG groups, handled by JS roughly or just simple pulse here */

.srv1-cta-gradient-overlay {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: linear-gradient(135deg, rgba(42,98,254,0.8) 0%, rgba(3,6,58,0.9) 100%);
}