/* ========================================================================
   UNDERHOST — COMPARISON / ACCORDION / FEATURE UI (CLEANED + DEDUPED)
   ------------------------------------------------------------------------
   TABLE OF CONTENTS (search by tag)
   [00] Variables
   [01] Animations (blink / gradientShift / pulse / float)
   [02] Cursor / Mobile heading tweak
   [03] Comparison + Accordion
   [04] Comparison Table + Pricing + Badges
   [05] Mobile Stacked Plan Cards
   [06] Info Bubble
   [07] Section Header + Tags
   [08] Modern Feature Cards
   [09] Feature Cards / Trust / Buttons
   [10] Background helper (.bluebg3)
   [11] Logos / Misc (cpanelwhm, separator, planbox)
   [12] Responsive (991 / 767 / tablet range)
======================================================================== */

/* ========================================================================
   [00] VARIABLES
======================================================================== */
:root {
  /* UNDERHOST Brand Palette (edit if needed) */
  --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] ANIMATIONS
======================================================================== */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@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); }
}

/* ========================================================================
   [02] CURSOR / MOBILE HEADING TWEAK
======================================================================== */
@media (max-width: 767px) {
  h2 {
    font-size: 32px !important;
  }
  #cursor {
    height: 32px !important;
  }
}

/* ========================================================================
   [03] COMPARISON + ACCORDION
======================================================================== */

/* Container bg harmony */
.comparisontablewithcollapse {
  color: var(--uh-text);
}

/* Modern Accordion Styles */
.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;
}

/* Active accordion header uses the same animated gradient as .bluebg3 */
.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;
}

/* Header icon + text color when active */
.accordion-item.active .accordion-button { color: #fff; }
.accordion-item.active .accordion-button i { color: #fff !important; }

/* Default header icons use brand blue */
.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; }

/* Optional: keep star icon consistent */
#comparepanelOne .fas.fa-star { color: var(--uh-blue) !important; }
.accordion-item.active #comparepanelOne .fas.fa-star { color: #fff !important; }

/* ========================================================================
   [04] COMPARISON TABLE + PRICING + BADGES
======================================================================== */

.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 Names */
.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;
}

/* Badges */
.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 */
.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;
}

/* Order Button */
.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: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  border: none;
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(13, 31, 60, 0.18);
  filter: brightness(1.02);
  color: #fff;
  text-decoration: none;
}

/* ========================================================================
   [05] 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 {
    /* Replace the existing gradient with your animated gradient */
    background: linear-gradient(145deg, #b0c4de, #0091d6, #434cc5, #87a8c4);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: #fff;
    text-align: center;
    padding: 18px 15px;
  }

  .plan-card-name {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #fff; /* Keep text white */
  }

  .plan-card-subtitle {
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
    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; }
}

/* Add the keyframes animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ========================================================================
   [06] 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;
}

/* ========================================================================
   [07] SECTION HEADER + 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;
}

/* ========================================================================
   [08] 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: #fff;
  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: #fff;
}

.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; }

/* ========================================================================
   [09] FEATURE CARDS / TRUST / BUTTONS
======================================================================== */

/* Gradient text (base) */
.text-gradient {
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

/* Feature card hover */
.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); }

/* Button */
.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);
}

/* Redis logo container (kept; uses float animation) */
.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: #fff !important;
}

/* Redis gradient text (SCOPED so it doesn't overwrite global .text-gradient everywhere) */
.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;
}

/* Tech logos */
.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 button */
.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); }

/* ========================================================================
   [10] BACKGROUND HELPER
======================================================================== */
.bluebg3 {
  background: linear-gradient(145deg, #b0c4de, #0091d6, #434cc5, #87a8c4);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

/* ========================================================================
   [11] LOGOS / MISC
======================================================================== */
.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); }

/* cPanel/WHM logo (deduped; keep one final version) */
.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;
}

/* ========================================================================
   [12] RESPONSIVE
======================================================================== */

/* Tablet and down */
@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; }
}

/* Mobile */
@media (max-width: 767px) {
  .section-header { padding: 30px 0 20px; }

  .text50 { font-size: 32px !important; }
  .text18 { font-size: 16px !important; }
  .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; }

  /* Trust / feature UI */
  .trust-logos-wrapper {
    padding: 15px 20px !important;
    gap: 25px !important;
    border-radius: 30px !important;
  }

  .trust-item div:first-child {
    width: 50px !important;
    height: 50px !important;
  }

  .trust-label {
    font-size: 11px !important;
    padding: 3px 10px !important;
    white-space: nowrap;
  }

  .feature-card { padding: 25px 20px !important; }

  .icon-box {
    width: 70px !important;
    height: 70px !important;
  }

  .fa-3x { font-size: 2.5em !important; }

  /* Redis mobile */
  .redis-logo-container { padding: 12px 20px !important; }
  .redis-logo-container img { height: 55px !important; }

  .tech-stack { padding: 15px 20px !important; border-radius: 30px !important; }
  .tech-logo { padding: 6px 16px !important; font-size: 14px !important; }

  .redis-btn {
    padding: 12px 28px !important;
    font-size: 15px !important;
    width: 90% !important;
  }

  /* cPanel/WHM logo */
  .cpanelwhm { width: 180px; height: 50px; }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 991px) {
  .trust-logos-wrapper {
    padding: 18px 25px !important;
    gap: 30px !important;
  }

  .text50 { font-size: 42px !important; }
}

/* ========================================================================
   [01] OFFSHORE UPDATE
======================================================================== */

.btn-cta-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(255,193,7,0.35) !important;
    background: linear-gradient(135deg, #ffd24d, #ff9f2e) !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;
}
/* FAQ paragraph base */
.faq-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--uh-muted);
    margin-left: 20px;
}

/* Links inside FAQ */
.faq-text a {
    color: var(--uh-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(23,110,165,0.4);
    transition: all 0.3s ease;
}

/* Hover state */
.faq-text a:hover {
    color: var(--uh-cyan);
    border-bottom: 1px solid var(--uh-cyan);
}
@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; }
}
/* ========================================================================
   UnderHost Offshore (Modern UI) - SCOPED (sectionshared)  YELLOW EDITION
   ======================================================================== */
.sectionshared {
  --card: rgba(255,255,255,.92);
  --cardBorder: rgba(16, 24, 40, .12);
  --muted: rgba(17, 24, 39, .65);
  --text: #0f172a;

  --brand: #ffc107;        /* main yellow */
  --brand2: #e0a800;       /* darker yellow/gold for gradient */

  --radius: 18px;
  --shadow: 0 10px 30px rgba(16, 24, 40, .12);
  --shadowHover: 0 18px 50px rgba(255, 193, 7, .18);
}

.sectionshared .plan-features-list li + li {
  position: relative;
}

.sectionshared .plan-features-list li + li::before {
  content: "";
  position: absolute;
  left: 26px;           /* aligns after the check icon */
  right: 0;
  top: -6px;            /* sits between items */
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,193,7,.0),
    rgba(255,193,7,.22),
    rgba(15,23,42,.06),
    rgba(255,193,7,.0)
  );
}

/* Optional: top section header (if needed) */
.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;
}

/* Layout */
.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;
}

/* Card */
.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(255,193,7,.45);
}

/* Accent strip - yellowtop now uses brand colors */
.sectionshared .yellowtop.top2 {
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}

/* IMPORTANT: override any inline padding */
.sectionshared .planbody { padding: 18px 20px !important; }
.sectionshared .planbody.text-center { text-align:center; }

.sectionshared .planbox hr { display:none; }

/* Title */
.sectionshared .planbody h2.text22 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .2px;
  margin: 0 0 8px 0;
}

/* Badge (plan-level) - uses yellow tint */
.sectionshared .plan-level {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,193,7,.12);
  color: #8e6100;               /* deep brown/gold for contrast */
  border: 1px solid rgba(255,193,7,.35);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* Price block */
.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(255,193,7,.06), rgba(255,193,7,.02));
    font-weight: 700;
}

.free-domain-note {
    font-size: 12px;
    color: #ffc107;
    font-weight: 800;
    margin-top: 4px;
}

.save-note {
    font-size: 11px;
    font-weight: 900;
    color: #ffc107;
    margin-top: 4px;
    letter-spacing: .3px;
}

.domain-badge {
    display:inline-block;
    margin-top:6px;
    padding:3px 8px;
    font-size:10px;
    font-weight:900;
    background:#ffc107;
    color:#0f172a;
    border-radius:999px;
}

/* Description (short text) */
.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;
}

/* Features */
.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;
}

/* Checkmark (yellow) */
.sectionshared .plan-features-list li::before {
  content:"";
  position:absolute;
  left:0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: rgba(255,193,7,.15);
  border: 1px solid rgba(255,193,7,.35);
  box-shadow: inset 0 0 0 2px rgba(255,193,7,.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;
}
/* highlight FREE etc in yellow */
.sectionshared .plan-features-list li strong.green {
  color: var(--brand2);
}

/* Button – yellow gradient */
.sectionshared .btn-green {               /* renamed only for style reuse, but we keep .btn-green as yellow */
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border: none;
  border-radius: 12px;
  color: #0f172a;            /* dark text for contrast on yellow */
  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(255,193,7,.18);
}
.sectionshared .btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255,193,7,.28);
  filter: brightness(1.03);
  color:#0f172a;
  text-decoration:none;
}

/* Featured (if any) */
.sectionshared .planbox.is-featured {
  border-color: rgba(255,193,7,.65);
  box-shadow: 0 22px 65px rgba(255,193,7,.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;
}

/* Divider with custom icon (yellow tint) */
.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, #ffc107, #e0a800, 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, #ffc107, #e0a800);
  -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;
}

/* Bottom red button – but changed to yellow/amber? we keep style name .btn-red but make it yellow? 
   they might want a contrasting CTA, but spec said "use the same format, just yellow" – keep it yellow/amber */
.sectionshared .btn-red {
  background: linear-gradient(90deg, #ffc107, #e0a800);
  color:#0f172a;
  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(224, 168, 0, .22);
}
.sectionshared .btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255,193,7,.28);
  filter: brightness(1.03);
  color:#0f172a;
}

/* Divider between price block and description */
.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(255,193,7,0),
    rgba(255,193,7,.25),
    rgba(15,23,42,.10),
    rgba(255,193,7,0)
  );
}

.free-domain-row {
    background: linear-gradient(
        90deg,
        rgba(255,193,7,.08),
        rgba(255,193,7,.03)
    );
    font-weight: 700;
}

.free-domain-row td {
    padding-top: 16px;
    padding-bottom: 16px;
}

.domain-note {
    font-size: 12px;
    font-weight: 600;
    color: #ffc107;
    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:#8e6100;
    background:rgba(255,193,7,.12);
    border:1px solid rgba(255,193,7,.25);
    border-radius:6px;
}

/* Mobile */
@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;
  }
}
