/* ============================
   Services / Pricing Board Section
   ============================ */

.services-section .container {
  max-width: 1150px;
}

/* The Main Glass Board Container */
.pricing-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(10, 15, 30, 0.35);
  /* Base glass tint */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-md) + 8px);
  /* Gently rounded corners */
  margin-top: 3rem;
  /* Extra top margin for badge popping out */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-board:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
}

/* Interactive Hover Mouse Glow */
.pricing-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  /* Let clicks pass to buttons */
  background: radial-gradient(circle 350px at var(--mouse-x, -500px) var(--mouse-y, -500px),
      rgba(59, 130, 246, 0.18),
      transparent 80%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.pricing-board:hover::before {
  opacity: 1;
}

/* Individual Columns inside the Board */
.pricing-col {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px dashed rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.pricing-col:first-child {
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}

.pricing-col:last-child {
  border-right: none;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}

/* Highlight the Recommended Tier */
.pricing-col.recommended {
  background: rgba(59, 130, 246, 0.04);
  /* Faint highlight background */
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.05) inset;
  /* Slight inner light */
}

/* The "Best Value" Badge for Recommended Option */
.recommended-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  color: #fff;
  padding: 0.4rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
  z-index: 2;
  white-space: nowrap;
}

/* Graphic/Icon at the top */
.pricing-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-normal);
}

.pricing-col:hover .pricing-icon {
  transform: scale(1.1) translateY(-5px);
  color: var(--primary-glow);
}

.pricing-col.recommended .pricing-icon {
  color: var(--primary);
}

/* Sub-heading / Title (like "PERSONAL" in ref) */
.pricing-title {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* Single separator line below title */
}

.pricing-features {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2.5rem;
  flex: 1;
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  padding: 0;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
  border: none;
  line-height: 1.5;
}

/* Emphasize text a bit more on hover */
.pricing-col:hover .pricing-feature-item {
  color: #fff;
}

/* The Big Price at Bottom */
.pricing-price {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-glow);
  margin-top: auto;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pricing-price small {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* CTA Buttons */
.pricing-btn {
  width: 100%;
  text-align: center;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.pricing-btn.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.pricing-btn.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.pricing-btn.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* --- Responsive Settings --- */
@media (max-width: 950px) {
  .pricing-col {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-board {
    grid-template-columns: 1fr;
    /* Stack vertically */
  }

  .pricing-col {
    border-right: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    /* Horizontal line instead */
  }

  .pricing-col:last-child {
    border-bottom: none;
  }

  /* Fix badge overlap issue on mobile stack */
  .pricing-col.recommended {
    padding-top: 4rem;
    /* Give space for badge */
  }

  /* Reset inherited desktop corner rounding for vertical stack */
  .pricing-col:first-child {
    border-radius: 0;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
  }

  .pricing-col:last-child {
    border-radius: 0;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
  }
}

/* ============================
   Service Info Links (ToS etc)
   ============================ */
.service-info-links {
  margin-top: 1.5rem;
  /* Reduced to bring it closer to the board */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.service-info-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-normal);
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  /* Makes it feel like a button/modal trigger */
}

.service-info-link:hover {
  color: var(--primary-glow);
}

.service-info-link:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -1rem;
  color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
  .service-info-links {
    flex-direction: column;
    gap: 1rem;
  }

  .service-info-link:not(:last-child)::after {
    display: none;
  }
}

/* ============================
   Split-Panel Info Modal
   ============================ */
.info-modal-panel {
  width: 90%;
  max-width: 920px;
  height: 85vh;
  /* Explicit fixed height anchors internal scroll areas */
  max-height: 800px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-modal-overlay.open .info-modal-panel {
  transform: scale(1) translateY(0);
}

.info-modal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  flex: 1;
  /* Takes the full height of the flex-panel */
  min-height: 0;
  /* Prevents children from breaking flex constraint */
}

/* --- Left Sidebar --- */
.info-modal-sidebar {
  background: rgba(5, 8, 18, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* Scrollable horizontally */
  min-height: 0;
}

.info-modal-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Sidebar Navigation Item */
.info-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  transition: all 0.2s ease;
  position: relative;
  border-left: 3px solid transparent;
}

.info-nav-item i {
  font-size: 0.85rem;
  width: 20px;
  text-align: center;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.info-nav-item:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.info-nav-item:hover i {
  opacity: 1;
}

/* Active State — Highlighted sidebar item */
.info-nav-item.active {
  color: var(--primary-glow);
  background: rgba(59, 130, 246, 0.08);
  border-left-color: var(--primary);
  font-weight: 600;
}

.info-nav-item.active i {
  opacity: 1;
  color: var(--primary-glow);
}

/* Active indicator dot */
.info-nav-item.active::after {
  content: "";
  position: absolute;
  right: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

/* --- Sidebar Search Bar (FAQ only) --- */
.info-modal-search {
  padding: 0 1rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
  position: relative;
}

.info-modal-search input {
  width: 100%;
  padding: 0.65rem 0.75rem 0.65rem 2.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.82rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.info-modal-search input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.06);
}

.info-modal-search input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.info-modal-search i {
  position: absolute;
  left: 1.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  pointer-events: none;
}

/* --- Nav Item Text: Default (ToS, Payments) --- */
.info-nav-item span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 180px;
  position: relative;
}

/* --- Nav Item Text: FAQ Mode --- */
.faq-mode .info-nav-item span {
  mask-image: linear-gradient(to right, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, #000 78%, transparent 100%);
  max-width: 160px;
}

/* No gradient if text fits without overflow */
.faq-mode .info-nav-item span.no-overflow {
  mask-image: none;
  -webkit-mask-image: none;
}

/* When active in FAQ, remove the mask and enable scrolling marquee */
.faq-mode .info-nav-item.active span {
  mask-image: none;
  -webkit-mask-image: none;
  animation: marquee-scroll 4s linear infinite;
  animation-delay: 0.5s;
}

/* No marquee if text doesn't overflow */
.faq-mode .info-nav-item.active span.no-overflow {
  animation: none;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(calc(-100% + 160px));
  }

  60% {
    transform: translateX(calc(-100% + 160px));
  }

  90% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

/* Hidden state for search-filtered items */
.info-nav-item.search-hidden {
  display: none;
}

/* --- FAQ Article View (no card wrapper) --- */
.faq-article-view {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.8;
  animation: faqFadeIn 0.25s ease;
}

.faq-article-view h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-article-view h3 i {
  color: var(--primary);
  font-size: 0.95rem;
}

.faq-article-view ul,
.faq-article-view ol {
  padding-left: 0;
  margin-left: 1.2rem;
}

.faq-article-view li {
  margin-bottom: 0.75rem;
}

.faq-article-view strong {
  color: #fff;
}

.faq-article-view em {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Right Content Panel --- */
.info-modal-main {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  /* Crucial for flex scrolling inside grid */
}

.info-modal-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  /* Prevent header from squishing */
}

.info-modal-header h2 {
  color: var(--primary-glow);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.info-modal-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
}

/* Scrollable content area */
.info-modal-content-area {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Custom scrollbar for content area */
.info-modal-content-area::-webkit-scrollbar {
  width: 5px;
}

.info-modal-content-area::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.info-modal-content-area::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.3);
  border-radius: 10px;
}

.info-modal-content-area::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.5);
}

/* Individual content section card */
.info-section-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.info-section-card:hover {
  background: rgba(59, 130, 246, 0.04);
  border-color: rgba(59, 130, 246, 0.2);
}

.info-section-card.active-card {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.08);
}

.info-section-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.info-section-card-header i {
  color: var(--primary);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.info-section-card-header strong {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
}

.info-section-card-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* Styling lists inside the section content to look elegant */
.info-section-card-body ul,
.info-section-card-body ol {
  padding-left: 0;
  margin-left: 1.1rem;
}

.info-section-card-body li {
  margin-bottom: 0.8rem;
  position: relative;
}

/* Sub-titles or accents in the body */
.info-section-card-body strong {
  color: #fff;
}

/* --- Responsive / Mobile --- */
@media (max-width: 700px) {
  .info-modal-panel {
    width: 96%;
    height: 92vh;
    max-height: none;
    border-radius: 16px;
  }

  /* Hide the sidebar navigation completely on mobile (ToS, Payments) */
  .info-modal-sidebar {
    display: none;
  }

  /* Show sidebar for FAQ modal only — converted to horizontal topic bar */
  .info-modal-panel.faq-mode .info-modal-sidebar {
    display: flex;
    flex-direction: column;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 0 0;
    max-height: 140px;
    overflow: hidden;
  }

  .info-modal-panel.faq-mode .info-modal-search {
    padding: 0 3.5rem 0.5rem 0.75rem;
    /* Pushes input away from close button */
    margin-bottom: 0.5rem;
  }

  .info-modal-panel.faq-mode .info-modal-search i {
    left: 1.45rem;
    top: calc(50% - 0.25rem);
    /* Adjust centering to account for container padding */
  }

  /* FAQ Mobile Dropdown Selector Toggle */
  .faq-mobile-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    margin: 0 0.75rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .faq-mobile-selector i.chevron {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
  }

  .faq-mobile-selector.open {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
    /* Seamless connection */
  }

  .faq-mobile-selector.open i.chevron {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-glow);
  }

  .info-modal-panel.faq-mode .info-modal-sidebar-nav {
    display: none;
    /* Hidden by default in mobile dropdown mode */
    flex-direction: column;
    position: absolute;
    top: 104px;
    /* Exact flush connection below toggle */
    left: 0.75rem;
    right: 0.75rem;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    padding: 0.25rem;
    animation: dropdownSlideDown 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .info-modal-panel.faq-mode .info-modal-sidebar-nav.open {
    display: flex;
  }

  @keyframes dropdownSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .info-modal-panel.faq-mode .info-nav-item {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
  }

  .info-modal-panel.faq-mode .info-nav-item:last-child {
    border-bottom: none;
  }

  .info-modal-panel.faq-mode .info-nav-item.active {
    display: none;
    /* Hide active topic from dropdown list */
  }

  .info-modal-panel.faq-mode .info-modal-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  /* Switch to single-column stacked layout */
  .info-modal-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    flex: 1;
    min-height: 0;
  }

  .info-modal-main {
    padding: 1.25rem;
  }

  .info-modal-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .info-modal-header h2 {
    font-size: 1.3rem;
  }

  .info-modal-content-area {
    width: 100%;
    max-height: unset;
  }

  .info-section-card {
    padding: 1.25rem;
  }

  .info-section-card-header strong {
    font-size: 0.88rem;
  }

  .info-section-card-body {
    font-size: 0.85rem;
  }

  /* Ensure close button is always easily reachable */
  .info-modal-panel>.modal-close-btn {
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
  }

  /* ToS acceptance module mobile tweaks */
  .tos-acceptance-module {
    padding-top: 1rem;
  }

  #tos-accept-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================
   ToS Acceptance Module
   ============================ */
.tos-acceptance-module {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tos-input-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .tos-input-group {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.tos-input-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.tos-input-group input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.tos-input-group input:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.tos-input-group input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.05);
}

.tos-check-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.tos-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-normal);
  margin-top: 2px;
}

.tos-checkbox:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.tos-checkbox:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 11px;
}

.tos-checkbox:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.tos-check-group label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.tos-checkbox:disabled+label {
  cursor: default;
}

#tos-accept-btn {
  align-self: flex-start;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
}

#tos-accept-btn:disabled {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  border-color: transparent;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

#tos-accept-btn.btn-success {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  opacity: 1;
  cursor: pointer;
}

#tos-accept-btn.btn-success:hover {
  background: #059669;
  border-color: #059669;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}