:root {
  --srv1-primary: #2a62fe;
  --srv1-primary-dark: #1a4bd6;
  --srv1-dark: #03063a;
  --srv1-text: #616a72;
  --srv1-light: #f9fbfd;
  --srv1-border: #e6e8ec;
  --srv1-white: #ffffff;
}

/* Base Reset & Typography */
.srv1-reseller-root-wrapper {
    font-family: "Firago", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--srv1-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.srv1-reseller-root-wrapper * {
    box-sizing: border-box;
}

.srv1-reseller-root-wrapper h1,
.srv1-reseller-root-wrapper h2,
.srv1-reseller-root-wrapper h3,
.srv1-reseller-root-wrapper h4,
.srv1-reseller-root-wrapper h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--srv1-dark);
}

.srv1-reseller-root-wrapper p {
    color: var(--srv1-text);
    margin-bottom: 1rem;
}

.srv1-reseller-root-wrapper a {
    text-decoration: none;
    color: var(--srv1-primary);
    transition: color 0.3s;
}

.srv1-reseller-root-wrapper a:hover {
    color: var(--srv1-primary-dark);
}

/* Utilities */
.srv1-reseller-bg-light { background-color: var(--srv1-light); }
.srv1-reseller-bg-dark { background-color: var(--srv1-dark); }
.text-primary { color: var(--srv1-primary) !important; }
.text-white { color: var(--srv1-white) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.6) !important; }

/* Buttons */
.srv1-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.srv1-btn-primary {
    background-color: var(--srv1-primary);
    color: var(--srv1-white) !important;
}

.srv1-btn-primary:hover {
    background-color: var(--srv1-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 98, 254, 0.3);
}

.srv1-btn-outline {
    border-color: var(--srv1-border);
    background: transparent;
    color: var(--srv1-light);
}

.srv1-btn-outline:hover {
    border-color: var(--srv1-primary);
    color: var(--srv1-primary);
}

/* Hero Section */
.srv1-reseller-hero {
	background-color: var(--srv1-dark);
    background-image: radial-gradient(circle at 70% 30%, #0f145b 0%, #03063a 70%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Add subtle gradient background to hero */
.srv1-reseller-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(42,98,254,0.15) 0%, rgba(3,6,58,0) 70%);
    z-index: 0;
}
.text-center { text-align:center;}
.srv1-reseller-hero-content {
    position: relative;
    z-index: 1;
}

.srv1-reseller-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--srv1-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.srv1-reseller-hero .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Breadcrumb */
.srv1-reseller-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
}

.srv1-reseller-breadcrumb li {
    display: flex;
    align-items: center;
}

.srv1-reseller-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.srv1-reseller-breadcrumb a:hover {
    color: var(--srv1-white);
}

.srv1-reseller-breadcrumb .active {
    color: var(--srv1-white);
}

.srv1-reseller-breadcrumb .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* Badge Pill */
.srv1-badge-pill {
    display: inline-block;
    background: rgba(42, 98, 254, 0.2);
    color: #4da3ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(42, 98, 254, 0.3);
}

/* Trust Line */
.srv1-hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.srv1-hero-trust-line span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.srv1-hero-buttons {
    display: flex;
    gap: 1rem;
}
.srv1-vps-filter-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.srv1-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--srv1-gray);
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1;
}

.srv1-filter-btn svg {
    display: block;
    flex-shrink: 0;
}

.srv1-filter-btn:hover {
    border-color: var(--srv1-primary);
    color: var(--srv1-primary);
}

.srv1-filter-btn.active {
    background: var(--srv1-primary);
    color: #ffffff;
    border-color: var(--srv1-primary);

}
/* SVG Animation Styles */
.srv1-svg-container {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.srv1-dash-anim {
    stroke-dasharray: 10;
    animation: srv1-flow 1s linear infinite;
}

.srv1-pulse-anim {
    animation: srv1-pulse 3s ease-in-out infinite;
    transform-origin: center;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes srv1-flow {
    to { stroke-dashoffset: -20; }
}

@keyframes srv1-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

/* General Sections */
.srv1-reseller-section {
    padding: 80px 0;
}

.srv1-section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.srv1-section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== WordPress-style pricing (scoped) ===== */
.srv1-wp-pricing {
  background: #f5f6f8;
  padding: 72px 0;
}

.srv1-wp-pricing-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
  font-family: "Firago", system-ui, -apple-system, Segoe UI, sans-serif;
}

.srv1-wp-pricing-head {
  text-align: center;
  margin-bottom: 36px;
}

.srv1-wp-title {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0b1220;
  font-weight: 800;
}

.srv1-wp-subtitle {
  margin: 0 auto 18px;
  max-width: 780px;
  color: #7b8794;
  font-size: 16px;
  line-height: 1.6;
}

.srv1-wp-billing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: #eef1f4;
  border: 1px solid #e3e7ee;
  box-shadow: 0 10px 22px rgba(12, 18, 33, 0.06);
}

.srv1-wp-billing-btn {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #0b1220;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.srv1-wp-billing-btn.is-active {
  background: #ffffff;
  color: var(--srv1-primary, #2a62fe);
  box-shadow: 0 10px 18px rgba(12, 18, 33, 0.10);
}

.srv1-wp-billing-label {
  display: inline-block;
}

.srv1-wp-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffe9c7;
  color: #b86400;
  font-weight: 800;
  font-size: 12px;
}

.srv1-wp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.srv1-wp-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(12, 18, 33, 0.06);
  overflow: hidden;
  border: 1px solid #eef0f4;
  display: flex;
  flex-direction: column;
  min-height: 640px;
}

.srv1-wp-card-body {
  padding: 28px 26px 18px;
  flex: 1 1 auto;
}

.srv1-wp-plan {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: #0b1220;
}

.srv1-wp-desc {
  margin: 0 0 18px;
  color: #7b8794;
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
}

.srv1-wp-price {
  margin: 8px 0 16px;
}

.srv1-wp-old {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #9aa6b2;
  font-size: 14px;
  margin-bottom: 6px;
}

.srv1-wp-old-price {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.srv1-wp-now {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.srv1-wp-now-price {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  color: #0b1220;
  letter-spacing: -0.01em;
}

.srv1-wp-now-unit {
  font-size: 14px;
  color: #7b8794;
  font-weight: 700;
}

.srv1-wp-total {
  margin-top: 6px;
  font-size: 13px;
  color: #7b8794;
  font-weight: 700;
}

.srv1-wp-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.srv1-wp-features li {
  position: relative;
  padding-left: 16px;
  margin: 12px 0;
  color: #0b1220;
  font-size: 14px;
  line-height: 1.45;
}

.srv1-wp-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--srv1-primary, #2a62fe);
  transform: translateY(-50%);
}

.srv1-wp-features-tight li {
  margin: 11px 0;
}

  /* --- 2. MIGRATION STRIP --- */
    .srv1-home-migration-strip {
        background-color: var(--srv1-primary);
        color: var(--srv1-white);
        padding: 20px 0;
        position: relative;
        z-index: 3;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .srv1-mig-text { font-size: 1.05rem; font-weight: 600; }
    .srv1-mig-sub { font-size: 0.9rem; opacity: 0.9; font-weight: 400; display: inline-block; margin-left: 10px;}

    /* --- 3. COMPACT WHY --- */
    .srv1-home-why-compact {
        padding: 40px 0;
        background: var(--srv1-white);
        border-bottom: 1px solid var(--srv1-border);
    }
    .srv1-why-pill {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
    }
    .srv1-why-icon {
        width: 40px;
        height: 40px;
        background: rgba(42, 98, 254, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--srv1-primary);
        flex-shrink: 0;
    }
    .srv1-why-text { font-size: 0.95rem; font-weight: 600; color: var(--srv1-dark); line-height: 1.3;}

/* Footer / Buttons */
.srv1-wp-card-footer {
  padding: 18px 26px 26px;
}

.srv1-wp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.srv1-wp-btn-outline {
  border: 2px solid var(--srv1-primary, #2a62fe);
  color: var(--srv1-primary, #2a62fe);
  background: transparent;
}

.srv1-wp-btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(42, 98, 254, 0.18);
}

.srv1-wp-btn-primary {
  border: 2px solid var(--srv1-primary, #2a62fe);
  background: var(--srv1-primary, #2a62fe);
  color: #ffffff !important;
  box-shadow: 0 14px 26px rgba(42, 98, 254, 0.28);
}

.srv1-wp-btn-primary:hover {
  transform: translateY(-1px);
  background: var(--srv1-primary-dark, #1a4bd6);
  border-color: var(--srv1-primary-dark, #1a4bd6);
}

/* Featured card styling */
.srv1-wp-card-featured {
  border: 2px solid var(--srv1-primary, #2a62fe);
}

.srv1-wp-topbar {
  height: 28px;
  background: var(--srv1-primary, #2a62fe);
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  font-size: 14px;
}

/* Helpers */
.srv1-wp-hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .srv1-wp-title { font-size: 40px; }
  .srv1-wp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .srv1-wp-card { min-height: 0; }
}

@media (max-width: 640px) {
  .srv1-wp-title { font-size: 30px; }
  .srv1-wp-subtitle { font-size: 14px; }
  .srv1-wp-grid { grid-template-columns: 1fr; }
  .srv1-wp-billing { flex-wrap: wrap; justify-content: center; border-radius: 18px; }
  .srv1-wp-billing-btn { width: 100%; justify-content: center; }
}

/* Benefit Cards */
.srv1-benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--srv1-border);
    height: 100%;
}

.srv1-icon-box {
    margin-bottom: 1.5rem;
    background: rgba(42, 98, 254, 0.08);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features List Small */
.srv1-features-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.srv1-feat-item {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.srv1-feat-item .check-icon {
    color: var(--srv1-primary);
    font-weight: bold;
    margin-right: 10px;
}

/* Timeline */
.srv1-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.srv1-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--srv1-border);
}

.srv1-timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.srv1-timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--srv1-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px var(--srv1-border);
}

/* Tech Cards */
.srv1-tech-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

.srv1-tech-card h4 {
    color: var(--srv1-white);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
	font-size:1.2rem;
}

.srv1-tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.srv1-tech-list li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.srv1-tech-list li::before {
    content: '•';
    color: var(--srv1-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Use Cases */
.srv1-use-case {
    background: var(--srv1-light);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
    border-left: 4px solid var(--srv1-primary);
}

/* Accordion Custom */
.srv1-accordion-lite .srv1-acc-item {
    background: #fff;
    border: 1px solid var(--srv1-border);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.srv1-accordion-lite h5 {
    color: var(--srv1-primary-dark);
    margin-bottom: 0.5rem;
	font-size:1.1rem;
}

.srv1-promo-card {
    background: var(--srv1-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.srv1-check-list-basic {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.srv1-check-list-basic li {
    margin-bottom: 8px;
}

.srv1-check-list-basic li::before {
    content: '✓';
    color: #28a745;
    margin-right: 8px;
    font-weight: bold;
}

/* Comparison Table */
.srv1-compare-table th {
    background: var(--srv1-light);
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
}

.srv1-compare-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--srv1-border);
}

.srv1-compare-table th.highlight,
.srv1-compare-table td:nth-child(3) {
    background: rgba(42, 98, 254, 0.05);
    border-left: 1px solid var(--srv1-border);
    border-right: 1px solid var(--srv1-border);
}

/* FAQ Grid */
.srv1-faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.srv1-faq-item {
    margin-bottom: 10px;
    border: 1px solid var(--srv1-border);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.srv1-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--srv1-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.srv1-faq-question:hover {
    background: var(--srv1-light);
}

.srv1-faq-question .icon {
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--srv1-primary);
    transition: transform 0.3s;
}

.srv1-faq-item.active .srv1-faq-question .icon {
    transform: rotate(45deg);
}

.srv1-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    padding: 0 1.2rem;
}

.srv1-faq-answer p {
    margin: 1rem 0;
    font-size: 0.95rem;
}

.srv1-faq-item.active .srv1-faq-answer {
    max-height: 500px; /* arbitrary large height */
    border-top: 1px solid var(--srv1-border);
}

/* CTA Section */
.srv1-cta-section {
    position: relative;
    padding: 100px 0;
}

.srv1-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3,6,58,0.95) 0%, rgba(26,75,214,0.9) 100%);
    z-index: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .srv1-reseller-hero h1 { font-size: 2.2rem; }
    .srv1-reseller-hero-visual { margin-top: 2rem; }
    .srv1-timeline::before { left: 15px; }
    .srv1-timeline-item { padding-left: 45px; }
    .srv1-timeline-marker { width: 32px; height: 32px; font-size: 1rem; }
}

@media (max-width: 768px) {
    .srv1-reseller-hero h1 { font-size: 1.8rem; }
    .srv1-hero-buttons { flex-direction: column; }
    .srv1-btn { width: 100%; text-align: center; }
}