/* Landing actions - professional button layout */
.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 12px 20px;
  border-radius: 12px;
  /* default: icon in normal flow to avoid overlap on desktop */
  position: static;
  padding-left: 20px;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 16px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%), linear-gradient(135deg,#0aa3a3,#008080);
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-glass i { font-size: 18px; color: #fff; position: static; margin-right: 10px; }

.btn-glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.btn-glass:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.22);
}

/* Tablet / medium screens */
@media (max-width: 900px) {
  /* switch to reserved icon space and absolute icon on narrower screens */
  .btn-glass { min-width: 160px; padding: 10px 16px; font-size: 15px; padding-left: 44px; position: relative; }
  .btn-glass i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); margin-right: 0; }
}

/* Mobile: grid 2 / 2 / 1 and compact buttons */
@media (max-width: 600px) {
  .landing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    justify-items: center;
  }
  .landing-actions .btn-glass {
    width: 100%;
    min-width: 0;
    padding: 8px 10px;
    padding-left: 40px;
    font-size: 14px;
    border-radius: 10px;
  }
  .landing-actions .full-mobile {
    grid-column: 1 / -1;
  }
}

/* Very small screens: stack icon above label to save horizontal space */
@media (max-width: 360px) {
  .landing-actions .btn-glass {
    flex-direction: column;
    gap: 6px;
    padding: 6px 8px;
    padding-left: 10px;
    font-size: 13px;
  }
  /* on very small screens, revert icon to normal flow above the text */
  .landing-actions .btn-glass i { position: static; transform: none; font-size: 18px; }
}

/* Guide link styling */
.guide-link { 
  text-align: center; 
  margin-top: 12px;
}

.guide-link__anchor { 
  color: #008080; 
  text-decoration: none; 
  display: inline-flex;
  position: relative;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.guide-link__anchor i { 
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,128,128,0.1);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.guide-link__anchor:hover i {
  background: rgba(0,128,128,0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,128,128,0.15);
}

/* Custom tooltip styling */
.guide-link__anchor:hover::before {
  content: attr(title);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
}

.guide-link__anchor:hover::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0,0,0,0.8) transparent transparent transparent;
  pointer-events: none;
}

