/* ========================================================================
   UNDERHOST — HOMEPAGE / COMPARISON / FEATURE UI
   ------------------------------------------------------------------------
   TABLE OF CONTENTS (search by tag)
   [00] Variables
   [01] Section Header + Badges + Tags
   [02] Modern Feature Cards
   [03] Animations
   [04] Backgrounds + Text Gradients
   [05] Cards / Trust / Buttons
   [06] Redis / Tech UI
   [07] Misc UI (separators, planbox, logos, CTA)
   [08] Typing Cursor / Blink
   [09] Accordion + Comparison Table
   [10] Mobile Stacked Plan Cards
   [11] Info Bubble
   [12] Responsive (991 / 767 / tablet range)
   [13] UnderHost Shared Plans (Modern UI)
   [14] Support Section
======================================================================== */

/* ========================================================================
   [00] VARIABLES
======================================================================== */

:root {
  /* UNDERHOST Brand Palette */
  --uh-navy: #0D1F3C;
  --uh-blue: #176ea5;
  --uh-cyan: #0099cc;

  /* Neutral */
  --uh-bg: #f6f8fb;
  --uh-card: #ffffff;
  --uh-text: #1f2937;
  --uh-muted: #6b7280;
  --uh-border: #e5e7eb;

  /* Status */
  --uh-success: #16a34a;
  --uh-danger: #dc2626;
}

/* ========================================================================
   [01] SECTION HEADER + BADGES + TAGS
======================================================================== */

.section-header {
  position: relative;
  padding: 40px 0 30px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(
    90deg,
    rgba(23, 110, 165, 0.1),
    rgba(23, 110, 165, 0.15)
  );
  color: var(--uh-blue);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  border: 1px solid rgba(23, 110, 165, 0.2);
  box-shadow: 0 4px 12px rgba(23, 110, 165, 0.08);
}

.highlight-text {
  background: linear-gradient(90deg, var(--uh-blue), var(--uh-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--uh-blue), var(--uh-cyan));
  border-radius: 2px;
}

.feature-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.feature-tag {
  padding: 10px 22px;
  background: var(--uh-card);
  color: var(--uh-text);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--uh-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.feature-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-color: var(--uh-blue);
  color: var(--uh-blue);
}

.feature-tag::before {
  content: '✓';
  margin-right: 8px;
  color: var(--uh-success);
  font-weight: 900;
}

/* ========================================================================
   [02] MODERN FEATURE CARDS
======================================================================== */

.modern-feature-card {
  background: var(--uh-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(13, 31, 60, 0.10);
  border: 1px solid var(--uh-border);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(13, 31, 60, 0.15);
}

.card-header {
  background: linear-gradient(145deg, #b0c4de, #0091d6, #434cc5, #87a8c4);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  color: white;
  padding: 25px 30px;
  position: relative;
}

.header-icon {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 32px;
  opacity: 0.2;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 5px 0;
  color: white;
}

.card-subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.card-body {
  padding: 0;
}

.feature-list {
  padding: 0;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  border-bottom: 1px solid var(--uh-border);
  transition: background-color 0.2s ease;
}

.feature-item:hover {
  background-color: var(--uh-bg);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item.featured {
  background: rgba(22, 163, 74, 0.05);
}

.feature-item.premium {
  background: linear-gradient(
    to right,
    rgba(255, 152, 0, 0.05),
    rgba(255, 152, 0, 0.02)
  );
  border-left: 3px solid #ff9800;
}

.feature-info {
  flex: 1;
  padding-right: 20px;
}

.feature-name {
  font-weight: 700;
  color: var(--uh-text);
  font-size: 15px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.feature-description {
  font-size: 13px;
  color: var(--uh-muted);
  line-height: 1.4;
}

.feature-specs {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.spec-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(23, 110, 165, 0.08);
  color: var(--uh-blue);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(23, 110, 165, 0.1);
}

.feature-price {
  text-align: right;
  flex-shrink: 0;
}

.price-tag {
  font-size: 18px;
  font-weight: 900;
  color: var(--uh-blue);
  display: block;
}

.price-tag-free {
  font-size: 16px;
  font-weight: 900;
  color: var(--uh-success);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-period {
  font-size: 12px;
  color: var(--uh-muted);
  font-weight: 600;
}

/* ========================================================================
   [03] ANIMATIONS
======================================================================== */

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ========================================================================
   [04] BACKGROUNDS + TEXT GRADIENTS
======================================================================== */

.bluebg3 {
  background: linear-gradient(145deg, #b0c4de, #0091d6, #434cc5, #87a8c4);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

.text-gradient {
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

/* Redis gradient variant */
.redis-logo-container .text-gradient,
.redis-section .text-gradient {
  background: linear-gradient(90deg, #ff5e62, #ff9966);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 94, 98, 0.3);
  font-weight: 900;
}

/* ========================================================================
   [05] CARDS / TRUST / BUTTONS
======================================================================== */

.feature-card {
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.feature-card:hover .icon-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3)) !important;
  transform: scale(1.1);
}

.icon-box {
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-item:hover div:first-child {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-blue3 {
  background: #0073aa;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  border: none;
}

.btn-blue3:hover {
  background: #005a87;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ========================================================================
   [06] REDIS / TECH UI
======================================================================== */

.redis-logo-container {
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.redis-logo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  background: white !important;
}

.tech-logo {
  transition: all 0.3s ease;
}

.tech-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2) !important;
}

.redis-btn {
  transition: all 0.3s ease;
}

.redis-btn:hover {
  background: #c82333 !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220, 53, 69, 0.4) !important;
}

.redis-btn i {
  transition: all 0.3s ease;
}

.redis-btn:hover i:last-child {
  transform: translateX(5px);
}

.redis-btn:hover i:first-child {
  transform: scale(1.2);
}

/* ========================================================================
   [07] MISC UI
======================================================================== */

.uh-separator {
  height: 40px;
}

.wow .planbox:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(13, 31, 60, 0.1) !important;
  border-color: rgba(23, 110, 165, 0.2) !important;
}

.wow .planbox:hover img {
  transform: scale(1.05);
}

.cpanelwhm {
  display: inline-block;
  width: 240px;
  height: 70px;
  background-image: url('https://cdn.underhost.com/images/cpanelwhm.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.uh-offshore-cta .uh-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3) !important;
  background: white !important;
}

.uh-offshore-cta .uh-cta-btn:hover i:last-child {
  transform: translateX(8px);
}

/* ========================================================================
   [08] TYPING CURSOR / BLINK
======================================================================== */

#cursor {
  /* Typing cursor styles */
}

/* ========================================================================
   [09] ACCORDION + COMPARISON TABLE
======================================================================== */

.comparisontablewithcollapse {
  color: var(--uh-text);
}

.modern-accordion {
  background: var(--uh-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(13, 31, 60, 0.10);
  border: 1px solid var(--uh-border);
}

.accordion-item {
  border-bottom: 1px solid var(--uh-border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background: var(--uh-bg);
  transition: all 0.25s ease;
}

.accordion-item.active .accordion-header {
  background: linear-gradient(145deg, #b0c4de, #0091d6, #434cc5, #87a8c4);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--uh-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s ease;
}

.accordion-item.active .accordion-button {
  color: #fff;
}

.accordion-item.active .accordion-button i {
  color: #fff !important;
}

.accordion-button i {
  color: var(--uh-blue) !important;
}

.accordion-icon {
  transition: transform 0.25s ease;
  font-size: 14px;
  color: var(--uh-blue);
}

.accordion-item.active .accordion-icon {
  color: #fff;
  transform: rotate(180deg);
}

.accordion-collapse {
  background: var(--uh-card);
}

.accordion-body {
  padding: 22px;
}

.modern-comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.modern-comparison-table thead th {
  padding: 14px 12px;
  font-weight: 800;
  color: var(--uh-text);
  border-bottom: 2px solid var(--uh-border);
  background: #fff;
}

.modern-comparison-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.modern-comparison-table tbody tr:hover {
  background: #f8fafc;
}

.modern-comparison-table tbody td {
  padding: 14px 12px;
  color: var(--uh-muted);
}

.modern-comparison-table tbody td:first-child {
  font-weight: 700;
  color: var(--uh-text);
}

.plan-name {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
  color: var(--uh-blue);
}

.plan-subtitle {
  font-size: 13px;
  color: var(--uh-muted);
  font-weight: 500;
}

.badge-unlimited {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(23, 110, 165, 0.10);
  color: var(--uh-blue);
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

.badge-no {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(220, 38, 38, 0.10);
  color: var(--uh-danger);
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

.text-success {
  color: var(--uh-success) !important;
}

.price-display {
  display: inline-flex;
  align-items: baseline;
}

.price-currency,
.price-amount {
  color: var(--uh-blue);
}

.price-currency {
  font-size: 16px;
  font-weight: 800;
  margin-right: 2px;
}

.price-amount {
  font-size: 22px;
  font-weight: 900;
}

.price-period {
  font-size: 14px;
  color: var(--uh-muted);
  margin-left: 2px;
  font-weight: 600;
}

.btn-order {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background: linear-gradient(90deg, var(--uh-blue), var(--uh-cyan));
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-order:hover {
  background: #ffffff;
  color: var(--uh-blue);
  border: 2px solid var(--uh-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(13, 31, 60, 0.18);
  text-decoration: none;
}

#comparepanelOne .fas.fa-star {
  color: var(--uh-blue) !important;
}

.accordion-item.active #comparepanelOne .fas.fa-star {
  color: #fff !important;
}

/* ========================================================================
   [10] MOBILE STACKED PLAN CARDS
======================================================================== */

@media (max-width: 767px) {
  .table-responsive {
    overflow-x: visible !important;
  }

  .modern-comparison-table {
    display: none;
  }

  .mobile-plan-cards {
    display: block !important;
  }

  .plan-card {
    margin-bottom: 25px;
    border: 1px solid var(--uh-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--uh-card);
    box-shadow: 0 4px 12px rgba(13, 31, 60, 0.08);
  }

  .plan-card-header {
    background: linear-gradient(145deg, #b0c4de, #0091d6, #434cc5, #87a8c4);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: white;
    text-align: center;
    padding: 18px 15px;
  }

  .plan-card-name {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
    color: white;
  }

  .plan-card-subtitle {
    font-size: 14px;
    opacity: 0.9;
    color: white;
    font-weight: 500;
  }

  .plan-features {
    padding: 0;
  }

  .plan-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 15px;
    border-bottom: 1px solid var(--uh-border);
  }

  .plan-feature:last-child {
    border-bottom: none;
  }

  .feature-label {
    font-weight: 600;
    color: var(--uh-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    flex: 1;
  }

  .feature-label i {
    margin-right: 8px;
    color: var(--uh-blue);
    width: 20px;
    text-align: center;
    font-size: 14px;
  }

  .feature-value {
    font-weight: 700;
    color: var(--uh-muted);
    font-size: 14px;
    text-align: right;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .plan-card .btn-order {
    width: calc(100% - 30px);
    margin: 15px auto;
    display: block;
    text-align: center;
    padding: 12px;
  }
}

@media (min-width: 768px) {
  .mobile-plan-cards {
    display: none !important;
  }
}

/* ========================================================================
   [11] INFO BUBBLE
======================================================================== */

.info-bubble {
  margin-left: 8px;
  font-size: 12px;
  background: #eef3ff;
  border-radius: 12px;
  padding: 2px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.info-bubble i {
  color: #3b82f6;
}

.info-bubble .info-link {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

/* ========================================================================
   [12] RESPONSIVE (GENERAL)
======================================================================== */

@media (max-width: 991px) {
  .accordion-button {
    padding: 16px 18px;
    font-size: 16px;
  }

  .accordion-body {
    padding: 18px 14px;
  }

  .plan-name {
    font-size: 16px;
  }

  .price-amount {
    font-size: 20px;
  }

  .card-title {
    font-size: 20px;
  }

  .feature-name {
    font-size: 14px;
  }

  .price-tag {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .section-header {
    padding: 30px 0 20px;
  }

  .text50 {
    font-size: 36px;
  }

  .text32 {
    font-size: 24px;
  }

  .section-badge {
    font-size: 11px;
    padding: 6px 16px;
  }

  .feature-tag {
    padding: 8px 16px;
    font-size: 13px;
  }

  .modern-feature-card {
    margin-bottom: 20px;
  }

  .card-header {
    padding: 20px;
  }

  .header-icon {
    top: 20px;
    right: 20px;
    font-size: 26px;
  }

  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .feature-info {
    padding-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .feature-price {
    text-align: left;
    width: 100%;
  }

  .feature-specs {
    flex-wrap: wrap;
  }

  h2 {
    font-size: 32px !important;
  }

  #cursor {
    height: 32px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .trust-logos-wrapper {
    padding: 18px 25px !important;
    gap: 30px !important;
  }

  .text50 {
    font-size: 42px !important;
  }
}

/* ========================================================================
   [13] UNDERHOST SHARED PLANS (Modern UI)
   ======================================================================== */

.sectionshared {
  --card: rgba(255,255,255,.92);
  --cardBorder: rgba(16, 24, 40, .12);
  --muted: rgba(17, 24, 39, .65);
  --text: #0f172a;
  --brand: #2ecc71;
  --brand2: #27ae60;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(16, 24, 40, .12);
  --shadowHover: 0 18px 50px rgba(46, 204, 113, .18);
}

.sectionshared .plan-features-list li + li {
  position: relative;
}

.sectionshared .plan-features-list li + li::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 0;
  top: -6px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(46,204,113,.0),
    rgba(46,204,113,.22),
    rgba(15,23,42,.06),
    rgba(46,204,113,.0)
  );
}

.sectionshared .section-header {
  text-align: center;
  margin: 10px 0 26px;
}

.sectionshared .section-header h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 900;
  color: #fff;
  letter-spacing: .2px;
}

.sectionshared .section-header p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
}

.sectionshared .row.topmargin10 {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.sectionshared .row.topmargin10 > [class*="col-"] {
  display: flex;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 24px;
}

.sectionshared .planbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--cardBorder);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sectionshared .planbox:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadowHover);
  border-color: rgba(46,204,113,.45);
}

.sectionshared .bluetop.top2 {
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}

.sectionshared .planbody {
  padding: 18px 20px !important;
}

.sectionshared .planbody.text-center {
  text-align: center;
}

.sectionshared .planbox hr {
  display: none;
}

.sectionshared .planbody h2.text22 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .2px;
  margin: 0 0 8px 0;
}

.sectionshared .plan-level {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(46,204,113,.12);
  color: #166534;
  border: 1px solid rgba(46,204,113,.25);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.sectionshared .planprice {
  color: var(--brand2);
  line-height: 1.05;
  font-weight: 950;
  font-size: clamp(34px, 3.2vw, 44px);
  margin: 6px 0 6px;
}

.sectionshared .price-meta,
.sectionshared .price-kicker {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.annual-highlight {
  background: linear-gradient(90deg, rgba(46,204,113,.06), rgba(46,204,113,.02));
  font-weight: 700;
}

.free-domain-note {
  font-size: 12px;
  color: #2ecc71;
  font-weight: 800;
  margin-top: 4px;
}

.save-note {
  font-size: 11px;
  font-weight: 900;
  color: #2ecc71;
  margin-top: 4px;
  letter-spacing: .3px;
}

.domain-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 900;
  background: #2ecc71;
  color: #fff;
  border-radius: 999px;
}

.sectionshared .plan-description {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sectionshared .plan-description li {
  color: rgba(15, 23, 42, .70);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  margin: 0;
}

.sectionshared .plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sectionshared .plan-features-list li {
  position: relative;
  padding-left: 26px;
  font-size: 13px;
  color: rgba(15, 23, 42, .78);
  line-height: 1.35;
}

.sectionshared .plan-features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: rgba(46,204,113,.15);
  border: 1px solid rgba(46,204,113,.35);
  box-shadow: inset 0 0 0 2px rgba(46,204,113,.08);
}

.sectionshared .plan-features-list li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 0px;
  font-size: 12px;
  color: var(--brand2);
  font-weight: 950;
}

.sectionshared .plan-features-list li strong {
  color: rgba(15, 23, 42, .92);
  font-weight: 950;
  margin-right: 6px;
}

.sectionshared .plan-features-list li strong.green {
  color: var(--brand2);
}

.sectionshared .btn-green {
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border: none;
  border-radius: 12px;
  color: #fff;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-decoration: none;
  font-weight: 950;
  font-size: 13px;
  letter-spacing: .6px;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 10px 20px rgba(46,204,113,.18);
}

.sectionshared .btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(46,204,113,.28);
  filter: brightness(1.03);
  color: #fff;
  text-decoration: none;
}

.sectionshared .planbox.is-featured {
  border-color: rgba(46,204,113,.65);
  box-shadow: 0 22px 65px rgba(46,204,113,.22);
}

.sectionshared .planbox.is-featured::after {
  content: "Most Popular";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .92);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .6px;
}

.sectionshared .benefits-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 26px 0 10px;
}

.sectionshared .benefits-divider .divider-line {
  flex: 1;
  max-width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2ecc71, #27ae60, transparent);
}

.sectionshared .benefits-divider .divider-custom-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  position: relative;
}

.sectionshared .benefits-divider .divider-custom-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  -webkit-mask: url('https://cdn.underhost.com/android-chrome-192x192.webp') center/contain no-repeat;
  mask: url('https://cdn.underhost.com/android-chrome-192x192.webp') center/contain no-repeat;
}

.sectionshared .btn-red {
  background: linear-gradient(90deg, #ef4444, #dc2626);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 14px;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 14px 28px rgba(220, 38, 38, .22);
}

.sectionshared .btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(220, 38, 38, .28);
  filter: brightness(1.03);
  color: #fff;
}

.sectionshared .planbody:has(.plan-description) {
  position: relative;
  padding-top: 18px !important;
}

.sectionshared .planbody:has(.plan-description)::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin: 0 0 14px 0;
  background: linear-gradient(
    90deg,
    rgba(46,204,113,0),
    rgba(46,204,113,.25),
    rgba(15,23,42,.10),
    rgba(46,204,113,0)
  );
}

.free-domain-row {
  background: linear-gradient(
    90deg,
    rgba(46,204,113,.08),
    rgba(46,204,113,.03)
  );
  font-weight: 700;
}

.free-domain-row td {
  padding-top: 16px;
  padding-bottom: 16px;
}

.domain-note {
  font-size: 12px;
  font-weight: 600;
  color: #2ecc71;
  margin-top: 4px;
}

.domain-ext-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .4px;
  color: #166534;
  background: rgba(46,204,113,.12);
  border: 1px solid rgba(46,204,113,.25);
  border-radius: 6px;
}

@media (max-width: 767px) {
  .sectionshared .planbody {
    padding: 16px 16px !important;
  }

  .sectionshared .plan-features-list li {
    font-size: 18px;
    line-height: 1.45;
  }

  .sectionshared .plan-features-list li strong {
    font-size: 18px;
  }
}

/* ========================================================================
   [14] SUPPORT SECTION
======================================================================== */

.btn-cta-support:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px rgba(0,212,255,0.4) !important;
  background: linear-gradient(135deg, #1ad8ff, #1a88ff) !important;
}


.btn-cta-support:hover i:last-child {
  transform: translateX(5px);
}

.btn-cta-support i:last-child {
  transition: transform 0.3s ease;
}

.supporttextholder {
  transition: transform 0.4s ease;
}

.supporttextholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 60px rgba(0,0,0,0.4) !important;
}

@media (max-width: 768px) {
  .supporttextholder {
    padding: 30px 20px !important;
  }
  
  .text40 {
    font-size: 32px !important;
  }
  
  .btn-cta-support {
    width: 100%;
    justify-content: center;
    padding: 14px 25px !important;
    font-size: 16px !important;
  }
}